/**
* 'wght' (range from 300, 400, 500, 700, 900)
**/

@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
  url('../fonts/Satoshi-Variable.woff') format('woff'),
  url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
font-family: 'Satoshi-VariableItalic';
src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
  url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
  url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

:root {
  --baseFont: 'Satoshi-Variable';
  --black: #000;
  --text: rgba(0, 0, 0, 0.8);
  --white: #fff;
  --headingColor: #000;
  --bodyBg: #FEF6F0;
  --primary: #E27B00;
  --primaryDark: #c4360b;
  --lightBg: #F6D7B3;
  --darkBg: #000;
  --borderPrimary: #F9E5CC;
  --border: #7B6C59;
  --footerBg: #F6D7B3;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
/* body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  font-family: var(--baseFont);
} */
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
.headerSection h1,.headerSection h1 h2,.headerSection h1 h3,.headerSection h1 h4,.headerSection h1 h5,.headerSection h1 h6 {
  font-weight: 900 ;
}

/*******/
.textPrimary {
  color: var(--primary);
}
.mdTitle {
	font-size: 35px;
	line-height: 1.2;
}
.text-black {
  color: var(--black);
}

/* ===== Scrollbar CSS ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--dark);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 0px;
  border: 1px solid var(--dark);
}

/* Btn */

.btn {
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  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;
}
.btn > span {
  position: relative;
  z-index: 2;
}
.btn::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;
}
.btn:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnPrimary {
  border-color: transparent;
	background-color: var(--primary);
	color: var(--black);
  background: linear-gradient(to right,  var(--primary) 0%,var(--primary) 50%,var(--primary) 100%);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position var(--transition);
}
.btnPrimary::before {
  background-color: var(--black);
}
.btnPrimary:hover, .btnPrimary:active {
  background-position: right top;
  color: var(--white) !important;
  border-color: var(--black);
}
.btnWhiteOutline {
  border-color: var(--black);
  background-color: transparent;
  color: var(--black);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnWhiteOutline:hover, .btnWhiteOutline:active {
  color: var(--white) !important;
  border-color: var(--black);
}
.btnWhiteOutline::before {
  background-color: var(--black);
}

.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);
}
.btnSvg {
	width: 20px;
	height: auto;
	display: block;
}

/* 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: 40px;
  height: var(--logo-height);
  max-width: 180px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9 !important;
  background-color: var(--footerBg) !important;
  color: var(--white) !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  transition: var(--transition) !important;
}
header.headerSection.isSticky {
  background-color: var(--footerBg) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transform: translate(0, -95px);
}
.menuColMain {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  color: var(--black);
  transition: color var(--transition);
}
.navItems a.active, .navItems a:hover {
  color: var(--primary);
}
.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.cartCol {
  position: relative;
  display: block;
  color: var(--black) !important;
}
.cartCol:hover {
  color: var(--black);
}
.cartIcon {
	display: block;
}
.cartCount {
  color: var(--black);
  background-color: var(--primary);
  font-size: 12px;
  padding: 2px 4px;
  position: absolute;
  top: -5px;
  right: 0;
  line-height: 1;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  font-weight: 700;
}
.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(0, 0, 0, 0.7);
}
.headerSection .socialMenu .socialList a {
  color: var(--black);
}

.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: var(--darkBg);
	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;
}
.headerLeftOption {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.openTym {
  background-color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 8px;
  position: relative;
}
.openTym::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0px;
  top: -14px;
  background-color: var(--black);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}
.haggingLine::before {
  content: "";
  left: calc(50% + -3px);
  top: -5px;
  background: var(--black);
  width: 20px;
  height: 1px;
  position: absolute;
  transform: rotate(45deg);
}
.haggingLine::after {
  content: "";
  right: calc(50% + -3px);
  top: -5px;
  background: var(--black);
  width: 20px;
  height: 1px;
  position: absolute;
  transform: rotate(-45deg);
}


.lineTitleAnim {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  padding: 20px 0;
}
.lineTitleAnim > .lineTitle {
  position: relative;
  display: inline-block;
}
.lineTitleAnim > .lineTitle::before, .lineTitleAnim > .lineTitle::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  height: 2px;
  width: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.6),
    transparent
  );
  transition: width 1200ms ease-in-out 100ms;
}
.lineTitleAnim > .lineTitle::before {
  top: -18px;
  left: 0;
  right: auto;
}
.aos-animate.lineTitleAnim > .lineTitle::after {
  bottom: -18px;
  left: auto;
  right: 0;
}
.aos-animate.lineTitleAnim > .lineTitle::before, .aos-animate.lineTitleAnim > .lineTitle::after {
  width: 100%;
}



/* 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(--darkBg);
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .newclose {
	--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%;
}
.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 .form-select, .formStyle .form-control {
	border-radius: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-width: 2px;
}
.formStyle textarea.form-control {
	height: 120px;
	resize: none;
	border-radius: 16px;
}
.formStyle .form-check {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 0;
	min-height: auto;
}
.formStyle .form-check .form-check-input {
	margin-top: 2px;
}
.formStyle .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.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;
}

.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%;
}
.fullImgCol {
	height: 100%;
}
.fullImgCol img.fullImg {
	height: 100%;
  width: 100%;
  object-fit: cover;
}
.infoCard {
  border: 1px solid rgba(0,0,0,.1);
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.infoCardContent {
  width: 100%;
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.simpleList > li + li {
  margin-top: 10px;
}
.icContent > p:last-child {
  margin-bottom: 0;
}



.footerSection {
  background-color: var(--footerBg);
  color: var(--black) !important;
  padding: 400px 0 50px !important;
  font-weight: 500 !important;
  position: relative !important;
  overflow: hidden !important;
}
.footerSection h1,.footerSection h2,.footerSection h3,.footerSection h4,.footerSection h5,.footerSection h6 {
  font-weight: 900 !important;
}
.footerSection .footerCol,.footerSection .footerCol ul > li, p{
  color: var(--black) !important;
}

.footerTopImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 730px;
  margin: 0 auto;
}
.footerTopRightImg {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  max-width: 200px;
}
.footerTopRightImg img {
  max-width: 100%;
  height: auto;
}
.copyrightCol {
	font-size: 16px;
}
.footerLogo {
  position: relative;
  margin: 100px 0 50px;
}
.footerLogo::before {
	content: "";
	background-color: var(--border);
	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;
}
.footerLogo span {
	padding: 0 24px;
	background-color: var(--footerBg);
	display: inline-block;
	position: relative;
	z-index: 2;
}
.footerTop .addressCol {
  border-color: var(--border);
  border-style: solid;
  border-width: 0 1px;
}
.socialList {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.socialMenu .socialList a {
  transition: color 300ms ease-in-out 0s;
}
.socialMenu .socialList a:hover {
	color: var(--primary);
}
.footerCol > p {
  margin: 0 auto;
  max-width: 250px;
}
.footerCol ul > li + li {
  border-top: 0px solid rgba(255, 255, 255, 0.5) !important;
}
#custom-links {
  text-decoration: underline;
  text-decoration-color: var(--primary) !important;
  text-underline-offset: 10px;
  color: inherit;
  transition: color 0.3s ease;
}
#custom-links:hover {
  color: var(--primary) !important;
}
@media (max-width: 576px) {
#custom-links{
  color: var(--primary) !important;
}
}
/******* 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 (max-width:1399px) {
  .mdTitle {
    font-size: 30px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
  .btn {
    letter-spacing: 0.5px;
    padding: 14px 20px;
    min-width: 100px;
  }
  .footerSection {
    padding: 320px 0 40px;
  }
  .footerLogo {
    margin: 80px 0 30px;
  }
  .footerTopImg {
    max-width: 580px;
  }
  .footerTopRightImg {
    max-width: 140px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  .logo {
    max-width: 140px;
  }
  .footerTopImg {
    max-width: 440px;
  }
  .footerTopRightImg {
    max-width: 100px;
  }
  .footerSection {
    padding: 250px 0 40px;
  }
}
@media (max-width:991px) {
  header.headerSection.isSticky {
    transform: none;
  }
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--white);
    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;
    margin-top: 0;
    border-top: 0;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    margin: 0;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems a {
    display: block;
    padding: 10px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
  .mdTitle {
    font-size: 22px;
  }
  .footerTop .addressCol {
    border-width: 1px 0;
    padding: 30px 0;
    margin: 30px 0;
  }
  .menuColMain .socialList {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .footerTopImg {
    max-width: 320px;
  }
  .footerTopRightImg {
    max-width: 80px;
  }
  .footerSection {
    padding: 180px 0 30px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .mdTitle {
    font-size: 20px;
  }
  .btn {
    letter-spacing: 0.1px;
    padding: 14px 18px;
    min-width: 100px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .footerTopRightImg {
    max-width: 80px;
    opacity: 0.2;
  }
  .footerLogo span {
    padding: 0 14px;
    background-color: var(--footerBg);
    display: inline-block;
    position: relative;
    z-index: 2;
  }
  .footerTopImg {
    max-width: 220px;
    opacity: 0.2;
  }
  .footerSection {
    padding: 60px 0 30px;
  }
}
@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;
  }
}

/* custom css for theme 15 inner pages */
#loginModal .modal-header button, #registerModal .modal-header button{
  margin-top: -70px;
}
#loginModal .modal-content .btnPrimary {
  color: var(--white);
}
#registerModal .modal-body .col-12 {
  margin-top: 0px !important;
}
.mBtn {
  position: static !important;
}
#forgotPasswordModal .formStyle .labelStyle {
  text-align: center !important;
}
#otpVerifyModal .modal-content {
  border-radius: 10px;
}
#loginModal .sideLinesDivider {
  padding: 0px !important;
}
#loginModal .col-12 {
  margin-top: 20px !important;
}
#loginModal .modal-dialog, #registerModal .modal-dialog {
  max-width: 600px;
}
.floating-alert-top {
  margin-top: -35px;
}
.backToMenu {
  margin-top: 40px !important;
}
.pageTitle{
  margin-top:40px;
}
@media (max-width:565px) {
#loginModal .modal-content .col-sm-6 {
  margin-top: 20px !important;
}
.topSpace {
margin-top: 0px !important;
}
.menuPageContent .fixedCenterScroll .menuSection {
  top: 120px !important;
}
.headerStyle2 {
  height: 0px !important;
}
.footerSection {
  padding-top: 60px !important;
}
#otpVerifyModal .formStyle .form-control {
  margin-left: 70px !important;
  width: 70% !important;
}
.floating-alert-top {
  margin-top: -55px;
}
.topLinksSwiper {
  margin-bottom: 0px !important;
}
}
@media (min-width: 992px) {  
  .modalStyle .modal-lg {
      max-width: 800px !important;
  }
}