/*-- MEDIA QUERIES --*/
/*-- 1. VARIABLES --*/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #4D4B4B;
  --theme-color: #D40D10;
  --light-color: #C6CCD4;
  --color-gray: #3E3E3E;
  --text-color-rgb: 30, 45, 125;
  --header-border-color: rgba(182, 182, 182, 0.7);
  --base-text-font-size: 15px;
  --default-text-font-size: 15px;
  --text-font-weight: 400;
  --text-font-style: normal;
  --text-font-bolder-weight: bolder;
  --border-color-rgb: 225, 227, 228;
  --border-color: #e1e3e4;
}

header .main-menu .menu-bg {
  position: absolute;
  content: "";
}

header {
  padding: 10px 100px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1699px) {
  header {
    padding: 10px 50px 0;
  }
}
@media (max-width: 1199px) {
  header {
    padding: 10px 30px 0;
  }
}
@media (max-width: 575px) {
  header {
    padding: 10px 15px 0;
  }
}
header .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
header .main-menu .left-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
}
@media (max-width: 1199px) {
  header .main-menu .left-menu {
    width: 42%;
  }
}
@media (max-width: 991px) {
  header .main-menu .left-menu {
    display: none;
  }
}
header .main-menu .left-menu li a {
  color: #fff;
  font-size: 13px;
  padding: 0 30px !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1449px) {
  header .main-menu .left-menu li a {
    padding: 0 15px !important;
  }
}
@media (max-width: 1199px) {
  header .main-menu .left-menu li a {
    padding: 0 10px !important;
  }
}
header .main-menu .left-menu li a:hover {
  color: var(--theme-color);
}
header .main-menu .left-menu li a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  bottom: 5px;
  background: rgba(255, 255, 255, 0.3294117647);
  width: 1px;
}
header .main-menu .left-menu li:first-child a {
  padding-left: 0 !important;
}
header .main-menu .left-menu li:last-child a:after {
  display: none;
}
header .main-menu ul.right-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 1199px) {
  header .main-menu ul.right-menu {
    width: 42%;
  }
}
@media (max-width: 991px) {
  header .main-menu ul.right-menu {
    display: none;
  }
}
header .main-menu ul.right-menu li a {
  color: #fff;
  font-size: 13px;
  padding: 0 30px !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1449px) {
  header .main-menu ul.right-menu li a {
    padding: 0 15px !important;
  }
}
@media (max-width: 1199px) {
  header .main-menu ul.right-menu li a {
    padding: 0 10px !important;
  }
}
header .main-menu ul.right-menu li a:hover {
  color: var(--theme-color);
}
header .main-menu ul.right-menu li a svg {
  margin-right: 6px;
}
@media (max-width: 1199px) {
  header .main-menu ul.right-menu li a svg {
    display: none;
  }
}
header .main-menu ul.right-menu li a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 3px;
  bottom: 5px;
  background: rgba(255, 255, 255, 0.3294117647);
  width: 1px;
}
header .main-menu ul.right-menu li:last-child a {
  padding-right: 0 !important;
}
header .main-menu ul.right-menu li:last-child a:after {
  display: none;
}
header .main-menu a.head-logo {
  width: 20%;
  text-align: center;
}
@media (max-width: 1199px) {
  header .main-menu a.head-logo {
    width: 16%;
  }
}
@media (max-width: 991px) {
  header .main-menu a.head-logo {
    width: auto;
  }
}
header .main-menu a.head-logo .affix {
  display: none;
}
header .main-menu a.head-logo img {
  width: auto;
}
@media (max-width: 1449px) {
  header .main-menu a.head-logo img {
    max-width: 130px;
  }
}
@media (max-width: 991px) {
  header .main-menu a.head-logo img {
    width: 130px;
  }
}
@media (max-width: 767px) {
  header .main-menu a.head-logo img {
    max-width: 200px;
  }
}
header .main-menu .hum-burger {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  display: none;
  padding-top: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  header .main-menu .hum-burger {
    display: block;
  }
}
header .main-menu .hum-burger span {
  height: 2px;
  background: #fff;
  display: block;
  margin: 7px 0;
}
header .main-menu .mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  background: var(--theme-color);
  padding: 25px;
  height: 100vh;
  width: 300px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
  visibility: hidden;
}
header .main-menu .mobile-menu .menu-icon {
  text-align: right;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
header .main-menu .mobile-menu .menu-icon svg {
  width: 30px;
  height: 30px;
}
header .main-menu .mobile-menu ul {
  padding-top: 100px;
}
header .main-menu .mobile-menu ul li a {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  border-bottom: 1px solid #e33434;
  width: 100%;
  display: block;
  padding: 10px 0;
  font-weight: 500;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
header .main-menu .mobile-menu ul li a:hover {
  padding-left: 15px;
  border-bottom: 1px solid #fb241a;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
header .main-menu .mobile-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 99;
}
header .main-menu .menu-bg {
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
}
header .main-menu .menu-bg.open {
  opacity: 1;
  visibility: visible;
}
header.is-sticky {
  position: fixed;
  background-color: #fff;
  -webkit-animation: slideDown 0.35s ease-out;
          animation: slideDown 0.35s ease-out;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  z-index: 99 !important;
}
header.is-sticky .main-menu .left-menu li a {
  color: #000;
}
header.is-sticky .main-menu .left-menu li a:after {
  background: rgba(0, 0, 0, 0.33);
}
header.is-sticky .main-menu ul.right-menu li a {
  color: #000;
}
header.is-sticky .main-menu ul.right-menu li a:after {
  background: rgba(0, 0, 0, 0.33);
}
header.is-sticky .main-menu .hum-burger {
  padding-top: 20px;
}
header.is-sticky .main-menu .hum-burger span {
  background: var(--theme-color);
}
header.is-sticky a.head-logo img {
  display: none;
}
header.is-sticky a.head-logo img.affix {
  display: block;
  margin: 0 auto;
  width: 150px;
}
@media (max-width: 575px) {
  header.is-sticky a.head-logo img.affix {
    width: 110px;
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.load-complete {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.load-complete img {
  width: auto;
}
.load-complete.hides {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  visibility: hidden;
}

footer {
  padding-top: 100px;
  background-size: cover !important;
}
@media (max-width: 1449px) {
  footer {
    padding-top: 50px;
  }
}
footer:before {
  display: none;
}
footer .foot-top .container {
  max-width: 100%;
}
footer h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 1449px) {
  footer h4 {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
footer .foot-awards {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  footer .foot-awards {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  footer .foot-awards .foot-logo {
    text-align: center;
  }
}
footer .foot-awards .foot-logo img {
  width: auto;
}
@media (max-width: 1449px) {
  footer .foot-awards .foot-logo img {
    width: 150px;
  }
}
footer .foot-awards .awards-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 45px;
  margin-bottom: 50px;
}
@media (max-width: 1449px) {
  footer .foot-awards .awards-list {
    gap: 5px;
    margin-top: 30px;
    width: 200px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  footer .foot-awards .awards-list {
    gap: 15px;
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .foot-awards .awards-list figure {
  margin: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
@media (max-width: 1449px) {
  footer .foot-awards .awards-list figure {
    width: 18%;
  }
}
@media (max-width: 767px) {
  footer .foot-awards .awards-list figure {
    width: auto;
  }
}
@media (max-width: 575px) {
  footer .foot-awards .awards-list figure {
    width: 50px;
  }
}
footer .foot-awards .awards-list figure:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
footer .foot-awards .social-icons {
  margin-top: 60px;
}
@media (max-width: 767px) {
  footer .foot-awards .social-icons {
    border-bottom: 1px solid #8c1f20;
    padding-bottom: 20px;
    margin-top: 30px;
    text-align: center;
  }
}
footer .foot-awards .social-icons h5 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}
footer .foot-awards .social-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  footer .foot-awards .social-icons ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .foot-awards .social-icons ul li a {
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  padding: 13px;
}
footer .foot-awards .social-icons ul li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
@media (max-width: 991px) {
  footer .foot-menu {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  footer .foot-menu {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  footer .foot-menu ul {
    border-bottom: 1px solid #8c1f20;
    padding-bottom: 20px;
  }
}
footer .foot-menu ul li a {
  font-size: 16px;
  color: #d4d1d1;
  font-weight: 500;
  line-height: 40px;
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1449px) {
  footer .foot-menu ul li a {
    font-size: 13px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  footer .foot-menu ul li a {
    padding-left: 0;
  }
}
footer .foot-menu ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  background: url(../images/list-arrow.svg) no-repeat;
  width: 15px;
  height: 13px;
}
@media (max-width: 767px) {
  footer .foot-menu ul li a:after {
    display: none;
  }
}
footer .foot-menu ul li a:hover {
  color: #fff;
}
footer .foot-menu p {
  font-size: 16px;
  color: #d4d1d1;
  font-weight: 500;
  line-height: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 1449px) {
  footer .foot-menu p {
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  footer .foot-menu p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .foot-menu p svg {
  width: 22px;
  height: 18px;
  position: relative;
  top: 11px;
  margin-right: 8px;
}
footer .location-map .map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
@media (max-width: 1449px) {
  footer .location-map .map iframe {
    height: 200px;
  }
}
footer .foot-btm {
  background: #741515;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  footer .foot-btm {
    padding: 15px 0 !important;
  }
}
@media (max-width: 575px) {
  footer .foot-btm {
    padding: 15px 10px !important;
  }
}
footer .foot-btm .copyright p {
  margin: 0;
  color: #CDC5C5;
  font-weight: 500;
  font-size: 15px;
  padding: 15px 0;
}
@media (max-width: 1449px) {
  footer .foot-btm .copyright p {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  footer .foot-btm .copyright p {
    text-align: center !important;
    margin: 0;
    padding: 0;
  }
}
footer .foot-btm .copyright.right {
  text-align: right;
}
@media (max-width: 767px) {
  footer .foot-btm .copyright.right p {
    text-align: center;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 991px) {
  footer .foot-btm.head-padding {
    padding: 15px 0px;
  }
}
footer .head-padding {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  footer .head-padding {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  footer .head-padding {
    padding: 0 15px;
  }
}
footer .fixed-section {
  position: fixed;
  left: 100px;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}
@media (max-width: 1449px) {
  footer .fixed-section {
    left: 50px;
    bottom: 30px;
  }
}
@media (max-width: 991px) {
  footer .fixed-section {
    right: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 991px) {
  footer .fixed-section {
    left: 15px;
    right: 15px;
  }
}
footer .promotions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .promotions a {
  background: var(--theme-color);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 18px 25px;
  border-radius: 50px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
@media (max-width: 1449px) {
  footer .promotions a {
    padding: 8px 12px;
    font-size: 12px;
  }
}
footer .promotions a svg {
  width: auto;
  margin-right: 10px;
}
footer .promotions a:hover {
  background: #fff;
  color: var(--theme-color);
}
footer .promotions a:hover svg path {
  fill: var(--theme-color);
}
footer .whatsapp-fixed a {
  position: relative;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation-name: pulsee;
          animation-name: pulsee;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 1449px) {
  footer .whatsapp-fixed a {
    width: 35px;
    height: 35px;
  }
}
footer .whatsapp-fixed a::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #49b15d;
  opacity: 0.75;
  -webkit-animation-name: pulse-border;
          animation-name: pulse-border;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
footer .whatsapp-fixed a img {
  max-width: 55px;
}
@-webkit-keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulsee {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@keyframes pulsee {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    -webkit-box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.mail svg {
  fill: rgba(255, 255, 255, 0.7215686275);
  margin-top: -3px;
}
.mail svg path {
  stroke: rgba(255, 255, 255, 0.7215686275) !important;
}

.book-now-form {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: #FF000A;
  padding: 100px;
  z-index: 9999;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 400ms;
  transition: all 400ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1449px) {
  .book-now-form {
    width: 35%;
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .book-now-form {
    width: 100%;
    padding: 50px;
  }
}
.book-now-form:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/book-now-bg.svg) no-repeat;
  background-size: cover;
  z-index: -9;
}
.book-now-form h4 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 30px;
}
@media (max-width: 1449px) {
  .book-now-form h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.book-now-form h4 span {
  display: block;
}
.book-now-form form .input-field {
  margin: 15px 0;
}
.book-now-form form .input-field input, .book-now-form form .input-field textarea {
  width: 100%;
  height: 60px;
  border: none;
  background: #95070D;
  padding-left: 30px;
  color: #fff;
}
@media (max-width: 1449px) {
  .book-now-form form .input-field input, .book-now-form form .input-field textarea {
    height: 50px;
    padding-left: 15px;
  }
}
.book-now-form form .input-field input::-webkit-input-placeholder, .book-now-form form .input-field textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.book-now-form form .input-field input::-moz-placeholder, .book-now-form form .input-field textarea::-moz-placeholder {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.book-now-form form .input-field input:-ms-input-placeholder, .book-now-form form .input-field textarea:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.book-now-form form .input-field input::-ms-input-placeholder, .book-now-form form .input-field textarea::-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.book-now-form form .input-field input::placeholder, .book-now-form form .input-field textarea::placeholder {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.book-now-form form .input-field textarea {
  height: 150px;
  padding-top: 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 1449px) {
  .book-now-form form .input-field textarea {
    height: 100px;
    padding-left: 15px;
  }
}
.book-now-form.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.book-now-form .booknow-close-btn {
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  background: var(--theme-color);
  z-index: 9;
  padding: 15px;
  border-radius: 0 10px 0 0;
  display: none;
  cursor: pointer;
}
.book-now-form .booknow-close-btn svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 991px) {
  .book-now-form .booknow-close-btn {
    display: block;
  }
}


.book-now-popup-overlay {
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  z-index: 999;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  position: fixed;
  cursor: url(../images/close-btn.svg), auto;
}
.book-now-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 767px) {
    footer .foot-menu ul li a {
        font-size: 15px;
    }
        footer .foot-menu p {
        font-size: 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    footer .foot-menu p svg {

    margin-right: 0;
}
    }