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

:root {
  --baseFont: "Poppins", sans-serif;
  --primary: #FFB607;
  --primaryLight:#FFF1CF;
  --secondary: #0F232E;
  --bodyBg: #FFFAEF;
  --white: #FFFFFF;
  --black: #000000;
  --lightBg: #F3F3F3;
  --darkBg: #0F232E;
  --borderColor: #BFBFBF;
  --error: #ff5151;
  --fbColor: #3F5895;
  --googleColor: #5F6368;
  --gradientBg: linear-gradient(135deg, #F3D99B 0%,#FFF7E5 50%,#F3D99B 100%);
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black); 
  font-family: var(--baseFont);
  background-color: var(--bodyBg);
  font-weight: 400;
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
.form-select:focus, .form-control:focus {
  box-shadow: none;
}

/* btn */
.btn_anim {
  padding: 2px 0 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  border: 0;
  position: relative;
  transition: var(--transition);
}
.btn_anim::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background-color: var(--black);
  height: 1px;
  transform: translate(0, -100%);
  transition: var(--transition);
}
.btn_anim span {
  display: inline-block;
  vertical-align: middle;
}
.btn_anim:hover::before {
  bottom: 0;
  transform: translate(0);
}
.btn_animText {
  transition: var(--transition);
  transform: translate(0, 8px);
}
.btn_anim:hover .btn_animText {
  transform: translate(0);
}
.btn_light {
  color: var(--white);
}
.btn_anim.btn_light::before {
  background-color: var(--white);
}
/* btn */

/* custom */
.sectionSpace {
  padding: 120px 0;
}
.primaryBg {
  background-color: var(--primary);
}
.lightBg {
  background-color: var(--lightBg);
}
.darkBg {
  background-color: var(--darkBg);
}
.gradientBg {
  background: var(--gradientBg);
}
.lgTitle {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.mdTitle {
	font-size: 44px;
	line-height: 1.2;
  font-weight: 600;
}
.smTitle {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}
.modalTitle {
	font-size: 30px;
	line-height: 1.2;
}
.pText {
  font-size: 18px;
}
.subTitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.textPrimary {
  color: var(--primary);
}
.centerTitle {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}
.mdContainer {
  max-width: 820px;
  margin: 0 auto;
}
.mainCol {
  --pd: 50px;
  padding-left: var(--pd);
  padding-right: var(--pd);
}
/* custom */

/* Header */
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 10px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: var(--white);
  padding: 20px 0;
}
.navItems {
  display: flex;
  column-gap: 30px;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
}
.navItems a.navItem {
  font-weight: 500;
  --pVal: 5px 0;
  padding: var(--pVal);
  position: relative;
  display: block;
  text-transform: uppercase;
}
.navItems a.navItem:before {
	position: absolute;
  inset: 0;
	overflow: hidden;
	padding: var(--pVal);
	max-width: 0;
	border-bottom: 2px solid var(--primary);
	color: var(--primary);
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}
.navItems a.navItem:hover:before, .navItems a.navItem:focus:before, .navItems a.navItem.active:before {
	max-width: 100%;
}
.navItems a.navItem.active {
  color: var(--primary);
}
.headerRightOption {
	display: flex;
	align-items: center;
	column-gap: 15px;
	padding-left: 20px;
}
.hrLinksCol {
  width: 40px;
  height: 40px;
  position: relative;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: var(--transition);
}
.hrLinksCol:hover {
  border-color: var(--primary);
}
.hrLinksCol::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}
.hrLinksCol:hover::before {
  transform: scale(1);
}
.hrLinksCol svg {
  display: block;
  position: relative;
  color: var(--black);
  transition: var(--transition);
}
.hrLinksCol:hover svg {
  color: var(--white);
}
.navItemIcon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--black);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(19, 15, 38, 0.7);
}
/* Header */

/* Modal */
/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 30px;
}
.modalNewstyle .modal-body,
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 10px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--black);
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .btn-close {
	--closeIconSize: 10px;
  --closeIconPosition: 15px;
	padding: 4px;
	width: var(--closeIconSize);
	height: var(--closeIconSize);
	position: absolute;
	right: var(--closeIconPosition);
	top: var(--closeIconPosition);
	margin: 0;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c1c5d0;
  font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.recaptchaCol {
	border-radius: 8px;
	overflow: hidden;
  display: inline-flex;
  max-width: 100%;
}
/* form style */
.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
  z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
  display: block;
  opacity: 0.5;
}
.formStyle {
  font-size: 16px;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .form-select, .formStyle .form-control {
  border-radius: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-width: 2px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}

/* Target the custom container */
.customDatePicker input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.datePlaceholder {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: 0.2s;
}
/* Opening Hour */
.titleLbl {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  font-size: 14px;
}
.simpleList > li + li {
	margin-top: 8px;
}

/* btn */
.btnStyle {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 25px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1.2;
  border-width: 1px;
  position: relative;
  overflow: hidden;
  border-color: var(--black);
  background-color: var(--bodyBg);
  color: var(--black);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnStyle > span {
  position: relative;
  z-index: 2;
}
.btnStyle::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}
.btnStyle:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnStyle:hover {
  color: var(--white);
}
.btnWhiteOutline::before {
  background-color: var(--primary);
}
.btnWhiteOutline.fbBtn::before {
  background-color: var(--fbColor);
}
.btnWhiteOutline.fbBtn:hover {
	border-color: var(--fbColor);
}
.btnWhiteOutline.googleBtn::before {
  background-color: var(--googleColor);
}
.btnWhiteOutline.googleBtn:hover {
  border-color: var(--googleColor);
}
.btnPrimary {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
  transition: background-position var(--transition);
}
.btnPrimary:hover {
    color: var(--black);
}
.btnPrimary::before {
    background-color: var(--white);
}
/* Modal */


/* banner */
.bannerSection {
  position: relative;
}
.bannerSection::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  width: 50%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
}
.bannerSection.aos-animate::before {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.bannerInner {
  position: relative;
}
.bannerContent {
  position: relative;
  padding: 160px 0 130px;
  z-index: 1;
}
.bannerLeftCol {
  text-orientation: mixed;
  transform: rotate(180deg);
  writing-mode: sideways-lr;
  max-height: 260px;
  border-bottom: 16px solid;
  padding-bottom: 14px;
  margin-top: 20px;
}
.bannerLeftCol > h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.bannerLeftCol > p {
  margin: 0;
}
.bannerBtn {
  margin-top: 50px;
}
.bannerRightCol > h1 {
  font-size: 130px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeInLeft 2s ease-in-out;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}
.bannerRightCol > h3 {
  font-size: 84px;
  font-weight: 300;
  letter-spacing: 30px;
  text-transform: uppercase;
  line-height: 1;
  animation: fadeInRight 2s ease-in-out;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}
.bannerImg {
  margin-left: -40px;
}
.bannerBtn > ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bannerBtn > ul li:nth-child(2) {
  text-align: center;
}
.bannerBtn > ul li:nth-child(3) {
  text-align: end;
}
/* banner-rt */
.socialLinks, .reservationCol {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.socialLinks {
  left: -36px;
}
.reservationCol {
  right: -42px;
}
.rtStar {
  max-width: 20px;
}
.rt-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: inherit;
  animation: fadeInUp 1s;
  text-transform: uppercase;
}
.rt-text > span {
  transform: rotate(180deg);
  display: block;
}
.rt-line {
  width: 2px;
  height: 40px;
  background: var(--black);
  margin-bottom: 10px;
  animation: growLine 1.2s;
}
.socialIcons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.socialIcons > a, .socialIcons > a > svg {
  transition: var(--transition);
}
.socialIcons > a:hover > svg {
  color: var(--primary);
}
@keyframes growLine {
  0% { height: 0; }
  100% { height: 60px; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}
.reservationIcon > a {
  width: 33px;
  height: 33px;
  display: block;
  border-radius: 50%;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}
@keyframes pulse-dot {
  0% {
    transform: scale(.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.9);
  }
}
/* banner-rt */
.aboutCol {
  padding: 60px 0;
}
.uImg {
  display: flex;
}
.uImg>img {
  width: 80px;
  height: 80px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
.uImg>img+img {
  margin-left: -30px;
}
.rtCol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rtCol h6 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 20px;
  gap: 10px;
}
.jsImg {
  background-color: var(--primaryLight);
  border-radius: 50px;
  position: relative;
  box-shadow: 0 0px 14px rgba(0, 0, 0, 0.15);
  min-width: 292px;
  text-align: center;
}
.jsImg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  background-color: var(--primary);
  bottom: 0;
  border-radius: 50px;
  z-index: -1;
}
/* banner-rt */

/* chef-suggestions */
.chefTitle {
  max-width: 664px;
}
.suggestionContent {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.suggestCard {
  max-width: 354px;
}
.suggestCard img {
  width: 100%;
  aspect-ratio: 359/354;
  margin-bottom: 30px;
  object-fit: cover;
}
.suggestCard h4 {
  padding-bottom: 10px;
}
.suggestCard > p {
  margin-bottom: 30px;
}
.chefImg {
  position: relative;
  max-width: 560px;
  z-index: 1;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transition: -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
}
.aos-animate .chefImg {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.suggestCardImg {
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.suggestCardImg::before {
  content: "";
  position: absolute;
  left: 195px;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--secondary);
  opacity: 0;
  visibility: hidden;
}
.aos-animate .suggestCardImg::before {
  opacity: 1;
  visibility: visible;
}
.suggestCardImg::after {
  content: "";
  position: absolute;
  left: 195px;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url(../images/chef-suggests3.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center right;
}
/* chef-suggestions */

/* Main Course */
.specialSeclection {
  position: relative;
}
.specialSeclection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/menu-bg.webp);
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.selectionFilterTrigger {
  padding-bottom: 30px;
}
.selectionFilterOptions {
  margin-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
}
.filterTrigger {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: transparent;
  color: var(--white);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--white);
  font-size: 18px;
  line-height: normal;
  white-space: nowrap;
  transition: color 300ms ease-in-out 0s, opacity 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, border-color 300ms ease-in-out 0s;
}
.filterTrigger:not(.active):hover {
	opacity: 1;
  color: var(--black);
	background-color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
}
.filterTrigger.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.selectionCard {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
  line-height: 1.2;
  --fontSize: 20px;
}
.selectionCard > p:last-child {
	margin-bottom: 0;
}
.selectionCard .d-flex {
  align-items: center;
}
.dishName, .dishPrice {
  font-weight: 500;
  font-size: var(--fontSize);
}
.selectionCard > p {
  font-size: 16px;
  opacity: 0.8;
}
.blankLink {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dishLine {
  border-top: 1px dashed var(--white);
  opacity: 0.5;
}
.menuCard {
  max-width: 958px;
  margin: 0 auto;
  padding: 0 60px 60px;
  border: 1px solid var(--borderColor);
  border-top: 0;
}
.menuSliderTitle {
  padding-bottom: 50px;
}
.swiper-button-next.swiperBtnStyle, 
.swiper-button-prev.swiperBtnStyle {
  font-size: 14px;
  gap: 5px;
}
.menuNext, .menuPrev {
  color: var(--white);
}
.swiperBtnText {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: block;
  padding: 10px 0;
}
.swiper-button-next .swiperBtnText {
  border-left: 1px solid;
}
.swiper-button-prev .swiperBtnText {
  border-right: 1px solid;
}
.swiperBtnIcon svg.icon-btn {
  width: 18px;
}
/* Main Course */


/* Reservation */
.rsCol {
  margin-top: 70px;
}
.rsImgCol {
  height: 700px;
  width: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
}
.aos-animate .rsImgCol {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.rsImgCol > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.formCol {
  max-width: 550px;
  margin-left: auto;
}
.rsCol form.formStyle {
  padding-top: 40px;
}
.formBtn {
  padding-top: 80px;
}
.darkForm .formStyle .form-select, .darkForm .formStyle .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid var(--black);
  border-radius: 0;
  padding-left: 0;
}
.darkForm .formStyle span.inputFieldIcon {
  right: 6px;
}

/* Reservation */

/* imageAnimation */
.imageAnimation {
	position: relative;
	overflow: hidden;
	margin: 0;
}
.imageAnimation:after{
	content: "";
	position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.imageAnimation:hover:after{
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
/* imageAnimation */


/* testimonial */
.socialBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 10px;
  background-color: var(--black);
  color: var(--white);
  min-width: 200px;
  font-size: 20px;
  line-height: 1.2;
  transition: opacity 300ms ease-in-out 0s;
  font-weight: 500;
}
.socialBtn:hover {
  opacity: 0.8;
	color: var(--white);
}
.socialBtn.fbBtn {
	background-color: var(--fbColor);
}
.socialBtn.instaBtn {
	background: linear-gradient(45deg, #FD5 0%, #FF543E 50%, #C837AB 100%);
}
.reviewSliderCol {
  margin: 0 auto;
  position: relative;
  padding: 100px 160px 0;
}
.reviewCard {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.reviewCard > h3 {
  font-size: 38px;
  font-weight: 600;
  padding: 20px 0;
}
.reviewCard p {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
}
.reviewImgCol {
  --imgSize: 142px;
  padding-top: 15px;
  display: flex;
  justify-content: center;
}
.reviewImgCol .reviewImg1 {
  transform: rotate(4deg);
}
.reviewImgCol .reviewImg2 {
  transform: rotate(-10deg);
  margin-left: -40px;
  margin-top: 25px;
}
.reviewImgCol img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border: 6px solid var(--primary);
  transition: transform 0.5s ease-in-out;
  animation: animateLabel infinite ease-in-out;
}
.reviewImgCol .reviewImg1 img {
  animation-duration: 3s;
  animation-delay: 0s;
}
.reviewImgCol .reviewImg2 img{
  animation-duration: 3.5s;
  animation-delay: 0.5s;
}
@keyframes animateLabel {
	0% {
		transform: translateX(0) rotate(-5deg) scale(0.95);
	}
	25% {
		transform: translateX(5px) rotate(-3deg) scale(1);
	}
	50% {
		transform: translateX(10px) rotate(0deg) scale(1);
	}
	75% {
		transform: translateX(5px) rotate(3deg) scale(1);
	}
	100% {
		transform: translateX(0) rotate(-5deg) scale(0.95);
	}
}
.reviewSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
.reviewSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background-color: var(--primary);
}
.testimonialNext, .testimonialPrev {
  color: var(--black);
}
/* testimonial */

/* cardSection */
.cardStyle {
  text-align: center;
  padding: 50px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  box-shadow: 0 0px 16px rgba(0,0,0,0.2);
}
.cardStyleImg {
  height: 100px;
  max-width: 133px;
  margin: 0 auto;
}
.cardStyleImg > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.cardStyleContent > h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}
.cardStyleContent > p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}
.spaceTopLg {
  --hplg: 140px;
  padding-top: var(--hplg);
}
.spaceTopmd {
  --hpmd: 90px;
  padding-top: var(--hpmd);
}
.cardCol {
  position: relative;
  text-align: center;
}
.cardCol.spaceTopLg::before {
  height: var(--hplg);
}
.cardCol.spaceTopmd::before {
  height: var(--hpmd);
}
/* Step 1: Line animation */
.aos-animate .timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  background-color: var(--black);
  opacity: 0.1;
  height: 0;
  transform: translateX(-50%);
}
.spaceTopLg.aos-animate .timeline-line {
  animation: lineDownlg 2s ease-out forwards;
}
@keyframes lineDownlg {
  from {
    height: 0;
  }
  to {
    height: 140px;
  }
}
.spaceTopmd.aos-animate .timeline-line {
  animation: lineDownmd 2s ease-out forwards;
}
@keyframes lineDownmd {
  from {
    height: 0;
  }
  to {
    height: 90px;
  }
}
/* Step 2-4: Circle animations */
.aos-animate .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 24px;
  height: 24px;
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid transparent;
  animation: whiteCircle 0.6s 2s ease-out forwards;
}
.spaceTopLg.aos-animate .timeline-dot {
  top: 130px;;
}
.spaceTopmd.aos-animate .timeline-dot {
  top: 80px;;
}
@keyframes whiteCircle {
  0% {
    transform: translateX(-50%) scale(0);
    border-color: transparent;
  }
  60% {
    transform: translateX(-50%) scale(1.2);
  }
  100% {
    transform: translateX(-50%) scale(1);
    border-color: gray;
  }
}
/* Step 5: Dark center circle */
.aos-animate .timeline-dot .inner-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: darkCircle 0.5s 2.5s ease-out forwards;
}
@keyframes darkCircle {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* cardSection */

/* Blog */
.bogInner {
  padding-top: 60px;
}
.blogCard {
  border: 1px solid var(--borderColor);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}
.blogCardLg .blogCardImg > img {
  height: 280px;
}
.blogCardImg > img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blogCardContent {
  padding-top: 10px;
}
.blogUserImg {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
  display: block;
}
.blogUser {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}
.blogUserImg img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
.dateCol {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blogCardContent > h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--transition);
}
.blogCard:hover .blogCardContent > h3 {
  color: var(--primary);
}
.blogCardContent > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blogCardContent > p:last-child {
  margin-bottom: 0;
}
.blogCardmd .blogCardImg {
  --imgSize: 210px;
  width: var(--imgSize);
}
.blogCardmd .blogCardImg > img {
  height: var(--imgSize);
}
.blogCardDesc {
  padding: 20px;
}
.blogRtCard {
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.blogCardImg.imageAnimation {
  z-index: 3;
}
.blogCard:hover .blogCardImg.imageAnimation:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
/* Blog */

/*** Gallery ***/
.wAuto {
  width: auto !important;
}
.easeLinear {
  transition-timing-function: linear !important;
}
.galleryImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galleryVariable {
  --gImgSize: 314px;
}
.galleryMd {
  width: var(--gImgSize);
  height: var(--gImgSize);
}
.thumbCol {
  display: flex;
  flex-direction: column;
}
/*** Gallery ***/

/****** Footer css Start ******/
.ftLogo {
  text-align: center;
  margin-bottom: 40px;
}
.footerLinks > ul {
  display: flex;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footerLinks > ul > li {
  position: relative;
  flex: 1 1  0;
}
.footerLinks > ul > li+li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background: rgba(255,255,255,0.3);
}
.footerLinks > ul > li > a {
  font-weight: 500;
  position: relative;
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  padding: 0 30px;
  transition: var(--transition);
  text-align: center;
}
.footerLinks > ul > li > a:hover {
  color: var(--primary);
}
.footerTop {
  margin-top: 60px;
}
.footerTop p,
.footerTop ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.footerTop ul li span {
  font-weight: 500;
}
.addressCol {
  border-left: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.3);
}
.footerBtm {
  margin-top: 60px;
}
.footerLogo {
  position: relative;
}
.footerLogo:before {
  content: "";
  background-color: rgba(255,255,255,0.3);
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  transform: translate(0,-50%);
  z-index: 1;
}
.footerCopyright {
  margin-top: 50px;
}
.footerLogo span {
  padding: 0 40px;
  background-color: var(--darkBg);
  display: inline-block;
  position: relative;
  z-index: 2;
}
.footerTitle {
  font-size: 35px;
  font-weight: 700;
}
.copyrightCol {
  font-size: 16px;
  font-weight: 300;
}
.socialMenu ul li + li {
  margin-left: 20px;
}
.socialMenu a {
  transition: opacity var(--transition);
}
.socialMenu a:hover {
	opacity: 0.5;
}

/******* Media Quary *******/
@media (min-width:768px) {
  .modal-md {
    --bs-modal-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    --bs-modal-width: 650px;
  }
}
@media (min-width: 1699px) {
  .bannerImg > img {
    max-width: 820px;
  }
  .bannerContent {
    padding: 240px 0 180px;
  }
}
@media (max-width: 1399px) {
  .sectionSpace {
    padding: 100px 0;
  }
  .bannerContent {
    padding: 140px 0 100px;
  }
  .bannerRightCol > h1 {
    font-size: 100px;
  }
  .bannerRightCol > h3 {
    font-size: 76px;
    letter-spacing: 16px;
  }
  .bannerBtn > ul {
    gap: 30px;
  }
  .filterTrigger {
    padding: 10px 18px;
    gap: 6px;
    font-size: 16px;
  }
  .uImg>img {
    width: 60px;
    height: 60px;
  }
  .uImg>img+img {
    margin-left: -20px;
  }
  .jsImg {
    min-width: 200px;
  }
  .jsImg > img {
    max-width: 160px;
  }
  .rtStar {
    max-width: 16px;
  }
  .rtCol h6 {
    font-size: 18px;
  }
  .pText {
    font-size: 16px;
  }
  .aboutCol {
    padding: 60px 0 20px;
  }
  .chefTitle {
    max-width: 600px;
  }
  .lgTitle {
    font-size: 52px;
  }
  .mdTitle {
    font-size: 40px;
  }
  .chefImg {
    margin: 0 auto !important;
  }
  .formCol {
    max-width: 500px;
  }
  .reviewStar > img {
    max-width: 24px;
  }
  .reviewCard > h3 {
    font-size: 32px;
  }
  .reviewCard p {
    font-size: 26px;
  }
  .cardStyle {
    padding: 40px 15px;
    gap: 30px;
  }
  .reviewImgCol {
    --imgSize: 120px;
  }
  .cardStyleContent > p {
    font-size: 14px;
  }
  .blogCardLg .blogCardImg > img {
    height: 250px;
  }
  .galleryVariable {
    --gImgSize: 274px;
  }
  .ftLogo > svg {
    max-width: 100px;
    height: auto;
  }
  .footerTitle {
    font-size: 30px;
  }
  .footerTop p, .footerTop ul li {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .navLogo img {
    max-width: 150px;
  }
  .navItems {
    column-gap: 20px;
    font-size: 14px;
  }
  .bannerContent {
    padding: 100px 0 80px;
  }
  .bannerRightCol > h1 {
    font-size: 80px;
  }
  .bannerRightCol > h3 {
    font-size: 64px;
    letter-spacing: 10px;
  }
  .bannerLeftCol {
    border-bottom: 8px solid;
    padding-bottom: 12px;
  }
  .bannerLeftCol > h2 {
    font-size: 24px;
  }
  .btn_anim {
    letter-spacing: 2px;
  }
  .uImg>img {
    width: 50px;
    height: 50px;
  }
  .rtCol {
    gap: 5px;
  }
  .pText {
    font-size: 14px;
  }
  .subTitle {
    letter-spacing: 2px;
  }
  .lgTitle {
    font-size: 42px;
  }
  .mdTitle {
    font-size: 34px;
  }
  .smTitle {
    font-size: 20px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .suggestCard > p {
    margin-bottom: 20px;
  }
  .jsImg {
    min-width: 160px;
  }
  .jsImg > img {
    max-width: 130px;
  }
  .chefImg {
    max-width: 460px;
  }
  .menuCard {
    max-width: 720px;
    padding: 0 50px 50px;
  }
  .rsImgCol {
    height: 600px;
  }
  .formCol {
    max-width: 400px;
  }
  .socialBtn {
    padding: 12px 20px;
    min-width: 160px;
    font-size: 16px;
  }
  .reviewSliderCol {
    padding: 60px 100px 0;
  }
  .reviewStar > img {
    max-width: 20px;
  }
  .reviewCard > h3 {
    font-size: 26px;
  }
  .reviewCard p {
    font-size: 20px;
  }
  .reviewImgCol {
    --imgSize: 80px;
  }
  .reviewImgCol .reviewImg2 {
    transform: rotate(-8deg);
    margin-left: -20px;
    margin-top: 20px;
  }
  .cardStyleImg {
    height: 80px;
    max-width: 80px;
  }
  .cardStyle {
    padding: 35px 15px 20px;
    gap: 15px;
  }
  .blogCard.blogCardLg {
    margin-bottom: 15px;
  }
  .galleryVariable {
    --gImgSize: 240px;
  }
  .footerLinks > ul {
    padding: 15px;
  }
  .footerLinks > ul > li > a {
    padding: 0 20px;
  }
  .footerTitle {
    font-size: 26px;
  }
  .footerTop p, .footerTop ul li {
    font-size: 14px;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--black);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
    overflow: auto;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems > li {
    display: block;
    width: 100%;
  }
  .navItems a.navItem {
    --pVal: 12px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.4);
  }
  .navItems .socialLinks {
    position: static;
    transform: none;
    padding-top: 20px;
  }
  .socialIcons {
    flex-direction: row;
    justify-content: start;
    width: 100%;
  }
  header.headerSection {
    padding: 12px 0;
  }
  .bannerLeftCol {
    transform: none;
    writing-mode: inherit;
    margin: 0 0 20px;
    padding-left: 20px;
    border: 0;
    padding-bottom: 0;
  }
  .bannerSection::before {
    width: 100%;
  }
  .mainCol {
    --pd: 0;
  }
  .bannerContent {
    padding: 80px 0 60px;
    text-align: center;
  }
  .bannerBtn {
    margin-top: 30px;
  }
  .bannerBtn > ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .bannerImg {
    margin-left: 0;
    text-align: center;
  }
  .bannerImg > img {
    max-width: 480px;
    margin: 0 auto;
  }
  .aboutCol {
    padding: 40px 0 0;
  }
  .userRt, .joinCol {
    display: flex;
    justify-content: center;
  }
  .joinCol {
    padding-top: 20px;
  }
  .chefInfo {
    text-align: center;
  }
  .chefTitle {
    max-width: 100%;
  }
  .suggestCard {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .suggestionContent {
    gap: 20px;
  }
  .suggestCard img {
    margin-bottom: 20px;
  }
  .chefImg {
    margin: 0 !important;
  }
  .filterTrigger svg.ftIcon {
    max-width: 20px;
  }
  .filterTrigger {
    padding: 6px 15px;
    font-size: 14px;
  }
  .lgTitle {
    font-size: 36px;
  }
  .mdTitle {
    font-size: 28px;
  }
  .footerLinks > ul > li > a {
    padding: 0 15px;
    font-size: 14px;
  }
  .selectionCard {
    --fontSize: 16px;
  }
  .selectionCard > p {
    font-size: 14px;
  }
  .menuCard {
    max-width: 540px;
    padding: 0 30px 30px;
  }
  .rsCol {
    margin-top: 20px;
  }
  .formCol {
    max-width: 100%;
    padding-top: 30px;
    text-align: center;
  }
  .formBtn {
    padding-top: 50px;
  }
  .rsCol form.formStyle {
    padding-top: 0;
  }
  .socialBtn {
    padding: 12px 15px;
    min-width: 120px;
    font-size: 14px;
  }
  .socialBtn .btnIcon {
    max-width: 16px;
  }
  .reviewCard {
    padding-bottom: 20px;
  }
  .reviewCard p {
    font-size: 16px;
  }
  .reviewSliderCol {
    padding: 40px 80px 0;
  }
  .spaceTopLg {
    --hplg: 90px;
  }
  .spaceTopLg.aos-animate .timeline-dot {
    top: 80px;
  }
  @keyframes lineDownlg {
    from {
      height: 0;
    }
    to {
      height: 90px;
    }
  }
  .bogInner {
    padding-top: 30px;
  }
  .footerTitle {
    font-size: 20px;
  }
  .addressCol {
    border: 0;
  }
  .galleryVariable {
    --gImgSize: 220px;
  }
  .reviewImgCol img {
    border-width: 4px;
  }
  .footerTop {
    margin-top: 0;
  }
  .footerCol {
    margin-top: 50px;
  }
}
@media (max-width:767px) {
  .bannerContent {
    padding: 60px 0 40px;
  }
  .bannerRightCol > h1 {
    font-size: 60px;
  }
  .bannerRightCol > h3 {
    font-size: 52px;
    letter-spacing: 6px;
  }
  .rsImgCol {
    height: 500px;
  }
  .swiper-button-next.swiperBtnStyle, .swiper-button-prev.swiperBtnStyle {
    top: auto;
    bottom: 0;
    min-width: 40px;
  }
  .swiper-button-prev.swiperBtnStyle {
    justify-content: start;
  }
  .swiper-button-next.swiperBtnStyle {
    justify-content: end;
  }
  .swiper-button-next .swiperBtnText {
    border-left: 0;
    border-right: 1px solid;
    padding-right: 7px;
  }
  .swiper-button-prev .swiperBtnText {
    border-right: 0;
    border-left: 1px solid;
    padding-left: 7px;
  }
  .menuSlider {
    padding-bottom: 60px;
  }
  .reviewSliderCol {
    padding: 30px 0 60px;
  }
  .reviewCard > h3 {
    font-size: 20px;
    margin-bottom: 0;
    padding: 10px 0;
  }
  .reviewCard p {
    font-size: 14px;
  }
  .swiperBtnText {
    writing-mode: inherit;
    text-orientation: inherit;
    transform: none;
    display: block;
    padding: 0;
  }
  .lgTitle {
    font-size: 32px;
  }
  .mdTitle {
    font-size: 24px;
  }
  .blogCardLg .blogCardImg > img, .blogCardmd .blogCardImg > img {
    height: 250px;
  }
  .blogCardmd .blogCardImg {
    width: 100%;
  }
  .blogCardDesc {
    padding: 15px;
  }
  .blogUser {
    gap: 10px;
    font-size: 14px;
  }
   .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
  .galleryVariable {
    --gImgSize: 180px;
  }
  .ftLogo > svg {
    max-width: 70px;
  }
  .footerLinks > ul {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }
  .footerLinks > ul > li {
    flex: none;
  }
  .footerCopyright {
    margin-top: 0;
  }
  .copyrightCol {
    margin-top: 15px;
  }
  .footerLogo span {
    padding: 0 15px;
  }
  .footerLogo svg {
    max-width: 180px;
  }
  
}
@media (max-width:575px) {
  .sectionSpace {
    padding: 60px 0;
  }
  .bannerImg > img {
    max-width: 100%;
  }
  .bannerLeftCol > h2 {
    font-size: 20px;
  }
  .bannerRightCol > h1 {
    font-size: 50px;
  }
  .bannerRightCol > h3 {
    font-size: 44px;
    letter-spacing: 3px;
  }
  .bannerBtn > ul {
    gap: 15px;
  }
  .btn_anim {
    letter-spacing: 1px;
  }
  .btn_anim span svg.icon-btn {
    max-width: 14px;
  }
  .rsImgCol {
    height: 400px;
  }
  .suggestCardImg::before, .suggestCardImg::after {
    left: 60px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .suggestCardImg {
    padding: 30px 0;
  }
  .menuCard {
    max-width: 100%;
    padding: 0;
    border: 0;
  }
  .joinCol {
    padding-top: 30px;
    text-align: center;
  }
  .uImg {
    justify-content: center;
    margin-bottom: 15px;
  }
  .rtCol {
    align-items: center;
  }
  .jsImg {
    min-width: auto;
    max-width: 180px;
    margin: 0 auto 10px;
  }
  .aboutCol {
    padding: 20px 0 0;
  }
  .galleryVariable {
    --gImgSize: 120px;
  }
  .ftLogo {
    margin-bottom: 30px;
  }
  .footerLinks > ul > li+li::before {
    display: none;
  }
  .footerLinks > ul {
    gap: 10px;
    justify-content: center;
  }
  .footerLinks > ul > li > a {
    padding: 0 5px;
  }
  .footerCol {
    margin-top: 30px;
  }
  .copyrightCol {
    font-size: 14px;
  }
}
@media (max-width:360px) {
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
  .galleryVariable {
    --gImgSize: 100px;
  }
  .rsImgCol {
    height: 300px;
  }
  .suggestCardImg::before, .suggestCardImg::after {
    left: 30px;
  }
}

.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: black;
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
	width: 210px;
	text-align: left;
	right: 0;
	display: none;
	z-index: 9;
	padding: 6px 0;
	border-radius: 8px;
}
.userLogin > a {
	padding: 8px 16px 8px 0;
	display: flex;
	align-items: center;
	column-gap: 6px;
	position: relative;
}
.userLogin > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.userLogin .userName {
  font-size: 16px;
  font-weight: 500;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--white);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}

/* custom css for theme 15 */
#loginModal .modal-header button, #registerModal .modal-header button{
  margin-right: -550px;
  margin-top: -70px;
}
/* #loginModal label,
#registerModal label {
  color: var(--white) !important;
} */
#forgotPasswordModal .formStyle .rightIconFld > .fldIcon {
    position: absolute;
    right: 20px;
    top: 50%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: none;
}
#forgotPasswordModal .formStyle .labelStyle {
  text-align: center !important;
}
#otpVerifyModal .form-group {
  margin-bottom: 10px;
}
#otpVerifyModal .modal-content {
  padding-bottom: 20px;
}
/* h4#registerModalLabel, h4#loginModalLabel {
    color: var(--white);
} */
/* label .form-check-label {
  color: var(--white);
} */
/* .modalNewstyle .text-center .fw-medium {
    color: var(--white);
} */
.parsley-errors-list {
    margin: 10px 0 3px;
}
/* #openinghours .titleLbl.mb-2 {
    color: var(--white);
} */
.socialMenu {
    justify-content: flex-start;
    display: flex;
}
@media (max-width:565px) {
  #loginModal .modal-header button, #registerModal .modal-header button {
      margin-right: -300px !important;
      margin-top: -50px !important;
  }
  .socialMenu {
    justify-content: center;
    display: flex;
  }
}

/* Mobile Cart footer section CSS */
.mobile_footer_tape {
  position: relative;
  z-index: 999;
  display: none;
  color: #1B2126;
}
.mobile_footer_tape .pageContent {
  padding: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .mobile_footer_tape {
    display: block;
  }
  .mobile_footer_tape .sidebarright {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    z-index: 11;
    margin: 0;
    overflow-y: inherit;
    transition: all 300ms ease-in-out 0s;
    transform: translateY(200%);
  }
  .mobile_footer_tape .nwCartMain {
    background-color: #FFFFFF;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
    border-radius: 30px 30px 0 0;
    padding: 15px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle {
    position: relative;
    padding: 0 0 15px;
    border-bottom: 1px solid #E3E3E3;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -6px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon img {
    display: block;
  }
  .mobile_footer_tape .nwCartInner {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 70px;
  }
  .mobile_footer_tape .cartCardImg {
    width: 50px;
  }
  .mobile_footer_tape .cartCardImg img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
  }
}
.mobile_footer_tape .nwaddDetailInner {
  margin-top: 25px;
}
.mobile_footer_tape .nwaddDetail {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.mobile_footer_tape .nwaddDetail h2 {
  font-size: 14px;
  margin: 0;
}
.mobile_footer_tape .nwaddDetail p {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.2;
  color: #130F26;
}
.mobile_footer_tape .textandwordWrap span {
  font-size: 10px;
  display: inline-block;
}
.mobile_footer_tape .sizeCol > p {
  font-size: 12px;
  margin: 0;
}
.mobile_footer_tape .edRMainCol {
  padding-top: 10px;
}
.mobile_footer_tape .rEdCol ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
}
.mobile_footer_tape .rEdCol ul li + li {
  margin-left: 15px;
}
.mobile_footer_tape .rEdCol ul li span {
  display: inline-block;
  vertical-align: middle;
}
.mobile_footer_tape .rEdCol ul li span img {
  display: block;
}
.mobile_footer_tape .cart-inc-dec .quantity {
  border: 1px solid #dddddd;
  width: 84px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile_footer_tape .cart-inc-dec .quantity .minus {
  border: 0;
  background-color: transparent;
  font-size: 40px;
  line-height: 1;
  font-weight: normal;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDExIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAuNSAxSDEwLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 30px 0px 0px 30px;
  box-shadow: none;
}
.mobile_footer_tape .cart-inc-dec .quantity .qty {
  font-size: 14px;
  font-weight: 400;
  width: 25px;
  height: 100%;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #000;
  flex: 1 0 0;
  text-align: center;
}
.mobile_footer_tape .cart-inc-dec .quantity .plus {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 0px 30px 30px 0px;
  box-shadow: none;
}
.mobile_footer_tape .addchilliSelect {
  position: relative;
  transition: all 300ms ease-in-out 0s;
}
.mobile_footer_tape a.removeStyle {
  color: #d33315;
}
.mobile_footer_tape .nwaddText h3 {
  font-size: 16px;
  color: #130F26;
  font-weight: 700;
  margin: 0;
}
.floatingCart {
  padding: 15px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px 30px 0 0;
  z-index: 7;
}
.btn.payBtn {
  font-size: 14px;
  line-height: 1.3;
  display: inline-flex;
  padding: 20px;
}
.btn.payBtn> span {
  padding-left: 5px !important;  
}
@media (max-width: 575px) {
    .btn.payBtn> span {
        padding: 0px !important;
    }
}
@media (max-width: 1199px) {
  .cartSlide .mobile_footer_tape .sidebarright {
    transform: translateY(0%);
  }
  .p2pCol {
    padding: 20px 15px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    z-index: 9999;
  }
  .priceLgText {
    font-size: 22px;
    font-weight: bold;
  }
  html.cartSlide {
    position: relative;
    overflow: hidden;
  }
  html.cartSlide::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 300ms ease-in-out 0s;
    background-color: rgba(19, 15, 38, 0.8);
    z-index: 100;
  }
}
.nwCartMain .form-row.align-items-center,
.floatingCart .form-row.align-items-center {
  display: flex !important;
}
.floatingCart .cartPrice > span,
.nwCartMain .nwaddText h3 {
  font-weight: 600;
}
.nwCartMain .nwaddDetail .form-row {
  display: flex !important;
  gap: 10px;
}
.nwCartMain .payBtn,
.floatingCart .payBtn {
  background-color: var(--primary-theme-color);
  color: white !important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: none;
    right: 10px;
    left: auto;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: none;
    left: 10px;
    right: auto;
}