@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;
  --bodyBg: #FFFAEF;
  --white: #FFFFFF;
  --black: #000000;
  --darkBg: #0F232E;
  --error: #ff5151;
  --fbColor: #3F5895;
  --googleColor: #5F6368;
  --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;
}
.darkBg {
  background-color: var(--darkBg);
}
.modalTitle {
	font-size: 30px;
	line-height: 1.2;
}
.textPrimary {
  color: var(--primary);
}
.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: none;
  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;
  border-bottom: 0px !important;
  background-color: var(--darkBg) !important;
  padding: 20px 0;
}
.navItems {
  display: flex !important;
  column-gap: 30px !important;
  font-size: 16px !important;
  justify-content: space-between !important;
  align-items: center !important;
  /* color: var(--black); */
}
.navItems a.navItem {
  font-weight: 500 !important;
  --pVal: 5px 0 !important;
  padding: var(--pVal) !important;
  position: relative !important;
  display: block !important;
  text-transform: uppercase !important;
}
.navItems a.navItem:before {
	position: absolute !important;
  inset: 0 !important;
	overflow: hidden !important;
	padding: var(--pVal) !important;
	max-width: 0 !important;
	border-bottom: 2px solid var(--primary) !important;
	color: var(--primary) !important;
	content: attr(data-hover) !important;
	-webkit-transition: max-width 0.5s !important;
	-moz-transition: max-width 0.5s !important;
	transition: max-width 0.5s !important;
}
.navItems a.navItem:hover:before, .navItems a.navItem:focus:before, .navItems a.navItem.active:before {
	max-width: 100% !important;
}
.navItems a.navItem.active {
  color: var(--primary) !important;
}
.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(--white);
  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(--white);
  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 {
  padding: 4px;
  position: absolute;
  right: 10px;
  top: 0;
  margin: 0;
  float: none;
  opacity: 0.7;
  text-shadow: none;
  color: var(--dark);
  font-weight: 300;
  display: block;
  font-size: 36px;
}
.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;
}
/* 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) !important;
}
.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) !important;
}
.btnPrimary::before {
    background-color: var(--white);
}
/* Modal */


/****** 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 {
    max-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    max-width: 650px;
  }
}
@media (max-width: 1399px) {
  .sectionSpace {
    padding: 100px 0;
  }
  .ftLogo > svg {
    max-width: 100px;
    height: auto;
  }
  .footerTitle {
    font-size: 30px;
  }
  .footerTop p, .footerTop ul li {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .sectionSpace {
    padding: 80px 0;
  }
  .navLogo img {
    max-width: 150px;
  }
  .navItems {
    column-gap: 20px;
    font-size: 14px;
  }
  .formCol {
    max-width: 400px;
  }
  .socialBtn {
    padding: 12px 20px;
    min-width: 160px;
    font-size: 16px;
  }
  .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 {
    display: flex;
    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;
  }
  .googleBtn {
    margin-top: 10px;
  }
  .socialIcons {
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: start;
  }
  header.headerSection {
    padding: 12px 0;
  }
  .mainCol {
    --pd: 0;
  }
  .footerLinks > ul > li > a {
    padding: 0 15px;
    font-size: 14px;
  }
  .formCol {
    max-width: 100%;
    padding-top: 30px;
    text-align: center;
  }
  .formBtn {
    padding-top: 50px;
  }
  .socialBtn {
    padding: 12px 15px;
    min-width: 120px;
    font-size: 14px;
  }
  .socialBtn .btnIcon {
    max-width: 16px;
  }
  .footerTitle {
    font-size: 20px;
  }
  .addressCol {
    border: 0;
  }
  .footerTop {
    margin-top: 0;
  }
  .footerCol {
    margin-top: 50px;
  }
}
@media (max-width:767px) {
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
  .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;
  }
  .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;
  }
}

/* custom css rukes for theme 17 */
/* #loginModal label,
#registerModal label {
  color: var(--white) !important;
} */

/* #loginModal .formStyle .rightIconFld,
#registerModal .formStyle .rightIconFld {
  margin-bottom: 0px;
} */
/* #loginModal  h4,
#registerModal  h4 {
  color:var(--white) !important;
} */
.headerSection  h1, .headerSection  h2, 
.headerSection  h3, .headerSection  h4{
  color:var(--white) !important;
}

 .navMain > ul > li + li {
    margin-left: 0px;
}
 .navMain > ul {
    display: block;
}
.footerSection {
    background-color: var(--bodyBg);
}
 /* .footerCol {
    text-align: left;
} */
 .footerCol ul > li {
    margin-top: 0px;
    padding-top: 0px;
}
 .footerCol h4 {
    margin-bottom:0px;
}
 ul.simpleList > p {
    margin-bottom: 10px;
}
.footerBottom .container .align-items-center {
  gap: 350px;
}
#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: 10px !important;
}
#loginModal .modal-dialog, #registerModal .modal-dialog {
  max-width: 600px;
}
.floating-alert-top {
  margin-top: -105px;
}
.topSpace {
  padding-top: 0px !important;
  margin-top: 90px !important;
}
#registerModal .modal-body .col-12 {
  margin-bottom: 20px;
}
.backToMenu {
  z-index: 3;
}
.socialMenu {
    justify-content: flex-start;
    display: flex;
}
.socialList > li {
  color: white;
}
.footerCol ul > li + li {
  border-top: 0px solid rgba(255, 255, 255, 0.5) !important;
}
.pageContent.menuPageContent {
  padding-top: 100px;
}
.pageTitle {
  margin-top: 80px;
}
@media (max-width:565px) {
.backToMenu {
  margin-top: 30px !important;
}
#loginModal .modal-content .col-sm-6 {
  margin-top: 20px !important;
}
.topSpace {
margin-top: 110px !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;
}
#otpVerifyModal .btn {
  max-width:300px !important;
}
.floating-alert-top {
  margin-top: -55px;
}
.topLinksSwiper {
  margin-bottom: 0px !important;
}
.navMain > ul > li > a {
  border-bottom: 0px solid #ddd !important;
}
footer .navItems,
footer .navItems a {
  display: inline-block;
  text-align: center !important;
}
footer ul {
  text-align: center !important;
}
ul.addressLink {
  padding-bottom: 50px;
}
.pageTitle {
  margin-top: 50px;
}
.socialMenu {
    justify-content: center;
    display: flex;
}
#otpVerifyModal #ver-code {
    width: 60% !important;
}
}
@media (min-width: 992px) {  
  .modalStyle .modal-lg {
      max-width: 800px !important;
  }
}
.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='black' 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;
}
.mBtn > a {
  margin-bottom: 2px;
}
.menuPageContent .container .row {
    margin-left: -45px;
}
@media (max-width: 576px) {
	.menuPageContent .container .row {
		margin-left: -15px;
	}
}