@font-face {
  font-family: "poppins-regular";
  src: url(../fonts/Poppins-Regular.otf);
}
@font-face {
  font-family: "poppins-medium";
  src: url(../fonts/Poppins-Medium.otf);
}
@font-face {
  font-family: "poppins-semibold";
  src: url(../fonts/Poppins-SemiBold.otf);
}
@font-face {
  font-family: "poppins-bold";
  src: url(../fonts/Poppins-Bold.otf);
}
@font-face {
  font-family: "satisfy-regular";
  src: url(../fonts/Satisfy-Regular.ttf);
}

:root {
  --bg-color-primary: #d5d4cd;
  --bg-color-offcanvas: #f1ede4;
  --section-bg-color: #01162e;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-85: rgba(255, 255, 255, 0.85);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow: hidden;
  margin: 0;
}

body {
  width: 100%;
  box-sizing: border-box;
  /* overflow: hidden; */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: var(--section-bg-color);
}
.foodmenu_page {
  width: 100%;
  height: 100%;
}
.foodmenu_page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  position: fixed;
  width: 100%;
  height: 75px;
  background: var(--bg-color-primary);
  top: 0;
  transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
  z-index: 1000;
  overflow: hidden;
}
/* .header.scrolled {
  background: rgba(239, 235, 225, 1);
} */
.header .navbar button {
  width: 132px;
  height: 36px;
  background: rgba(0, 38, 84, 1);
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  font-family: "poppins-semibold";
  border: none;
  outline: none;
  margin-left: 40px;
  transition: all 0.3s ease;
}
.header .navbar button:hover {
  background: transparent;
  color: rgba(0, 38, 84, 1);
  border: 2px solid rgba(0, 38, 84, 0.5);
}

.header.scrolled .navbar a::after {
  background: rgba(24, 46, 73, 1);
}
.header .inner_header {
  height: 100%;
}
.logo {
  width: 137px;
  height: 45px;
}
.logo img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: fill;
  -moz-object-fit: fill;
  -o-object-fit: fill;
  object-fit: fill;
}
.navbar {
  gap: 20px;
}
.header .navbar a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(24, 46, 73, 1);
  font-family: "poppins-medium";
  position: relative;
  transition: font-family 0.5s ease;
}
.header .navbar a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: -webkit-translateX(-50%);
  transform: -ms-translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  height: 1.5px;
  background: rgba(24, 46, 73, 1);
  transition: width 0.3s ease;
}
.navbar a:not(.reserve_btn):hover::after {
  width: 18px;
  height: 3px;
}
.link.active {
  font-family: "montserrat_bold";
}
/* hamburger */
.hamburger {
  display: none;
  padding: 10px;
}
.hamburger img {
  width: 35px;
  height: 35px;
}
.offcanvasSidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10000;
  transition: left 0.4s ease-in-out;
  justify-content: center;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.offcanvas_content {
  width: 90%;
  height: 100%;
  background: var(--bg-color-offcanvas);
}
.closeOffcanvas {
  width: 10%;
  height: 100%;
}
.offcanvasSidebar.open {
  left: 0%;
}
.inner_offcanvas {
  width: 100%;
  padding-top: 120px;
}
.offcanvas_social_icons {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  padding: 35px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -5%;
}
.offcanvas_social_icons p {
  color: #465d66;
  font-size: 15px;
  font-family: "montserrat_medium";
  margin: 0;
  padding-top: 7px;
}
.offcanvas_social_icons div {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 10px;
}
.offcanvas_social_icons img {
  width: 30px;
  height: 30px;
}
.reserve_btn_offcanvas button {
  width: 286px;
  height: 48px;
  background: rgba(0, 38, 84, 1);
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  font-family: "poppins-semibold";
  border: none;
  outline: none;
  margin-bottom: 35px;
}
.inner_offcanvas .offcanvas_menu {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 50px;
  border-radius: 4px;
  box-shadow: none !important;
}
.inner_offcanvas .offcanvas_menu img {
  width: 25px;
  height: 25px;
  margin-left: 40px;
}
.inner_offcanvas .offcanvas_menu p {
  margin-bottom: 0px;
  color: #182e49;
  font-family: "poppins-regular";
}
.cross_div {
  width: 90%;
  background: var(--bg-color-offcanvas);
  height: 100px;
  position: absolute;
  top: 0;
  padding-left: 40px;
  padding-right: 20px;
  border-bottom: 1px solid #0c203633;
}
.cross_div .offcanvas_logo img {
  width: 237px;
  height: 45px;
}
.cross_div .cross img {
  width: 20px;
  height: 20px;
}
.offcanvasSidebar .link {
  display: block;
  color: #024f9e;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  font-family: "montserrat_medium";
  margin: 0;
  padding-top: 8px;
  background: transparent;
  box-shadow: none !important;
}
.offcanvasSidebar a.link:active,
.offcanvasSidebar a.link:focus {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
/* header end  */
.banner {
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  max-height: 675px;
  min-height: 675px;
  overflow: hidden;
  background: radial-gradient(
      98.77% 80.05% at 50% 19.95%,
      rgba(16, 27, 56, 0.15) 0%,
      rgba(7, 17, 44, 0.5) 47.76%,
      rgba(3, 10, 31, 0.85) 100%
    ),
    url("../images/banner_bg_latest.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 40px;
  overflow: hidden;
}
/* @keyframes bgZoom {
  0% {
    background-size: 110%;
  }
  50% {
    background-size: 115%;
  }
  100% {
    background-size: 103%;
  }
} */

.banner .banner_content h2 {
  font-size: 80px;
  line-height: 90px;
  margin: 0;
  font-family: "satisfy-regular";
  color: var(--white-90);
}
.banner .banner_content p {
  font-size: 19px;
  line-height: 33px;
  font-family: "poppins-regular";
  letter-spacing: 0.84px;
  color: var(--white-85);
}
.banner .banner_content p span {
  font-family: "poppins-semibold";
}
.banner .banner_content .service_cards {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.95);
}
.banner .banner_content .service_cards a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
}
.banner_content .service_cards .service_card {
  background: rgba(12, 32, 54, 0.39);
  padding: 46px 0px;
  border: 7px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.banner_content .service_cards .service_card .card_bg {
  position: absolute;
  width: 100%;
  height: 0%;
  object-fit: cover;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.4;
  transition: height 0.3s ease;
  cursor: pointer;
}
.banner_content .service_cards .service_card:hover .card_bg {
  height: 100%;
}
.banner_content .service_cards .service_card h5 {
  font-size: 20px;
  line-height: 28px;
  font-family: "poppins-semibold";
}

.service_cards:hover .service_card {
  filter: blur(0.7px);
}
.service_card {
  transition: filter 0.3s ease;
}
.service_card:hover {
  filter: none; /* Remove blur from the hovered card */
}
/* Ensure that the hovered card does not inherit the blur */
.service_cards:hover .service_card:hover {
  filter: none; /* Ensure hovered card stays clear */
}
.section_heading {
  font-family: "satisfy-regular";
  font-size: 65px;
  padding-top: 180px;
  margin: 0;
  color: var(--white-90);
}
.section_subheading {
  font-size: 16px;
  line-height: 28px;
  font-family: "poppins-medium";
  margin: 0;
  padding-top: 10px;
  color: var(--white-85);
}
/* updated imgmodal code  */

.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
  z-index: 999999;
  overflow: hidden;
}

.modal_img {
  position: relative;
  width: 80%;
  height: 98%;
  display: block;
  border-radius: 8px;
  margin-top: 2%;
}
.modal_img img {
  width: 100%;
  height: auto;
  object-fit: fill;
}
.custom-modal .modal_img .simplebar-scrollbar {
  background: #d5d4cd !important;
  border-radius: 10px;
}
.custom-modal .modal_img .simplebar-scrollbar:hover {
  background: #c5c4bb !important;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #070707;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: rgb(220, 216, 216);
  border: none;
  outline: none;
  transition: transform 0.5s ease;
}
.close-modal p {
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
}
.close-modal:hover {
  box-shadow: 0px 2px 2px 0px #575244;
}
.download_pdf {
  width: 120px;
  height: 35px;
  position: absolute;
  top: 20px;
  right: 60px;
  background: transparent;
  border: none;
  outline: none;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.5s ease;
  background: #d9d9d9;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.download_pdf:hover {
  box-shadow: 0px 4px 4px 0px #575244;
}
.download_pdf .download_icon {
  width: 13px;
  height: 17px;
  margin-top: 0%;
}
.download_pdf .download_text {
  font-size: 11px;
  font-family: "poppins-semibold";
  transition: display 0.5s ease;
  margin: 0;
  padding: 0;
  transition: all 1s ease;
}
/* .download_pdf:hover .download_text {
  display: block;
} */

/* about section start */
.about_section {
  position: relative;
  width: 100%;
  background: var(--section-bg-color);
  z-index: 0;
  overflow: hidden;
}
.about_wrapper {
  position: relative;
  z-index: 1;
}
.about_wrapper .about_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_left_icon {
  position: absolute;
  top: 82px;
  left: 0;
  animation: flyAndScale 10s ease-in-out infinite;
}
@keyframes flyAndScale {
  0%,
  100% {
    transform: translateY(0) scale(0.5);
  }

  50% {
    transform: translateY(-50px) scale(1);
  }
}
.about_right_icon {
  position: absolute;
  top: 386px;
  right: 340px;
  z-index: -1;
  animation: glassShake 5s infinite ease-in-out;
}

@keyframes glassShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  15% {
    transform: translate(-2px, -2px) rotate(-2deg);
  }
  30% {
    transform: translate(2px, 2px) rotate(2deg);
  }
  45% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(3px, -3px) rotate(1deg);
  }
  75% {
    transform: translate(-2px, 2px) rotate(-2deg);
  }
  90% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.modal {
  z-index: 9999 !important;
}

.modal {
  background-color: rgba(0, 0, 0, 0.7);
  padding-right: 0px !important;
}
.modal-content {
  background: rgba(238, 244, 246, 1);
  padding-top: 50px;
  padding-bottom: 62px;
  padding-left: 10px;
  border-radius: 22px;
}
.modal-header {
  border: none;
  color: rgba(1, 22, 46, 1);
}
.modal-header h1 {
  font-family: "satisfy-regular";
  font-size: 50px;
}
.modal-header p {
  font-size: 14px;
  line-height: 28px;
  font-family: "poppins-medium";
}
.modal-header div {
  width: 100%;
}
.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-content .modal-body {
  height: 350px;
}

.modal-content .modal-body .modal_text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  line-height: 28px;
  color: rgba(12, 32, 54, 1);
  font-family: "poppins-regular";
}
.modal-content .modal-body .modal_text span {
  font-family: "poppins-bold";
}
.modal-content .modal-body .modal_text div {
  width: 10px;
  height: 10px;
  overflow: visible;
}
[data-simplebar] {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[data-simplebar]::-webkit-scrollbar {
  display: none;
}
.simplebar-content {
  padding-bottom: 0px !important;
}
.simplebar-track.simplebar-horizontal {
  height: 0px !important;
}

.simplebar-track {
  background: rgba(238, 244, 246, 1);
}

.simplebar-scrollbar {
  background: rgb(140, 142, 143);
  border-radius: 10px;
}

.simplebar-scrollbar:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* modal code  end  */
.about_section .about_bg_shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96%;
  z-index: -1;
}
.about_content {
  padding-top: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about_text {
  margin-bottom: 40px;
}
.about_content p {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 28px;
  font-family: "poppins-regular";
  padding-right: 30px;
  color: var(--white-80);
}
.about_content p span {
  font-family: "poppins-bold";
}
.about_content button {
  border: 3px solid rgba(255, 255, 255, 0.3);
  outline: none;
  background: #fff;
  font-size: 15px;
  color: rgba(0, 38, 84, 1);
  font-family: "poppins-semibold";
  width: 111px;
  height: 51px;
  border-radius: 8px;
  cursor: pointer;
}
.about_content button:hover {
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}
/* promotion section start */
.quote_text_section {
  position: relative;
  width: 100%;
  background: var(--section-bg-color);
  padding-bottom: 63px;
  font-size: 22px;
  line-height: 44px;
  font-family: "poppins-medium";
  font-style: italic;
  overflow: hidden;
}
.quote_text_wrapper {
  padding-top: 122px;
  position: relative;
  overflow-x: visible;
}
.quote_text_wrapper .left_icon {
  position: absolute;
  left: 209px;
  top: 35px;
  animation: bounce 6s linear infinite;
}
.quote_text_wrapper p {
  color: var(--white-90);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(0px) translateX(0);
  }
  50% {
    transform: translateY(0) translateX(-10px);
  }
  75% {
    transform: translateY(-10px) translateX(0);
  }
}
.quote_text_section .bottom_icon {
  position: absolute;
  bottom: 0px;
  right: 58px;
  animation: glassShake 5s infinite ease-in-out;
}
/* review and order form  */
.review_order_form {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 66px;
  overflow: hidden;
}
.review_order_form .review_bg_shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.carousel-container {
  width: 100%;
  height: 620px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1 !important;
}
.google_review {
  margin-bottom: 70px;
}
.google_review h3 {
  font-size: 36px;
  font-family: "satisfy-regular";
  margin-bottom: 12px;
  color: var(--white-85);
}
.google_review div {
  gap: 8px;
}
.google_review div h4 {
  font-size: 24px;
  font-family: "satisfy-regular";
  color: var(--white-85);
}

.google_review div img {
  width: 21px;
  height: 21px;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 11 !important;
  pointer-events: none;
}
.user_intro {
  gap: 30px;
  margin-bottom: 35px;
}
.user_intro h3 {
  font-size: 50px;
  font-family: "satisfy-regular";
  overflow: visible;
  color: var(--white-85);
}
.user_intro div {
  width: 101px;
  height: 101px;
  border: 5px solid #495868;
  border-radius: 50%;
}
.user_intro div img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.slide .quote_icon {
  width: 31px;
  height: 22px;
}
.slide p {
  font-size: 19px;
  line-height: 32px;
  font-family: "poppins-regular";
  margin-top: 20px;
  margin-bottom: 18px;
  color: var(--white-85);
}
.slide.active {
  opacity: 1;
  z-index: 2; /* Bring the active slide to the top */
  pointer-events: auto; /* Enable pointer events for the active slide */
}
.review_text {
  width: 100%;
  height: 200px;
  overflow: scroll;
  overflow-x: hidden;
  padding-right: 15px;
}
.review_text .simplebar-track {
  background: #0c2036;
}

.review_text .simplebar-scrollbar {
  background: #303d4f;
  border-radius: 10px;
}
.review_text .simplebar-scrollbar:hover {
  background: #303d4f !important;
}

.review_text .simplebar-scrollbar:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: #303e52 !important;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 7%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 34 !important; /* Ensure nav is on top */
  pointer-events: auto; /* Allow interaction */
  cursor: pointer;
}

.nav-button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.nav-button.active {
  width: 12px;
  height: 12px;
}
/* form start */
.review_order_form .form_wrapper {
  width: 100%;
  background: linear-gradient(180deg, #112237 0%, #162f4d 100%);
  border-radius: 26px;
  padding: 67px 46px;
}
.review_order_form .form_wrapper h2 {
  font-family: "satisfy-regular";
  margin: 0;
  margin-bottom: 22px;
  color: var(--white-90);
}
.review_order_form .form_wrapper p {
  margin: 0;
  margin-bottom: 60px;
  color: var(--white-90);
}
.review_order_form .form_wrapper input {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 1);
}
input:-webkit-autofill {
  -webkit-text-fill-color: white !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: white !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  caret-color: white;
}

.review_order_form .form_wrapper textarea {
  color: rgba(255, 255, 255, 1) !important;
}
.review_order_form .form_wrapper input::placeholder,
.review_order_form .form_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.review_order_form .form_wrapper input:focus {
  box-shadow: none;
}
.review_order_form .form_wrapper input,
.review_order_form .form_wrapper textarea {
  background: transparent;
}
.review_order_form .form_wrapper textarea {
  color: rgba(255, 255, 255, 0.6);
}

.review_order_form .form_wrapper button {
  height: 69px;
  font-size: 22px;
  font-family: "poppins-bold";
  margin-top: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  color: rgba(0, 38, 84, 1);
  background: #fff;
}
.review_order_form .form_wrapper button:hover {
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

/* map start */

.contact_us_section {
  width: 100%;
  background: var(--section-bg-color);
}
.map_wrapper {
  position: relative;
}
.map_wrapper .contact_icon {
  position: absolute;
  right: 40px;
  top: 160px;
  animation: bounce 8s linear infinite;
}
/* .map {
  margin-top: 85px !important;
  margin-bottom: 117px !important;
} */
.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 85px !important;
  margin-bottom: 117px !important;
}
.map {
  height: 450px;
  border-radius: 20px;
}

/* Optional: Dark overlay for additional dark theming */
/* .map-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
} */
/* footer start  */
.bg-footer {
  background-color: rgba(6, 32, 62, 1);
  padding-top: 80px;
  padding-bottom: 68px;
  overflow: hidden;
}
.footer-heading {
  font-size: 32px;
  color: var(--white-80);
  font-family: "satisfy-regular";
  padding-left: 10px;
  margin-bottom: 25px;
}

.footer_menu,
.social_address {
  padding-top: 50px;
}

.contact_address {
  display: flex;
  align-items: flex-start;
  color: var(--white-80);
  font-size: 16px;
}
.contact_address h6 {
  font-family: "poppins-bold";
  color: rgba(255, 255, 255, 0.7);
}
.contact_address p {
  font-family: "poppins-regular";
  color: var(--white-80);
}
.footer_menu li {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "poppins-regular";
  color: var(--white-80);
  cursor: pointer;
}

.footer_menu li a {
  text-decoration: none;
  font-size: 16px;
  font-family: "poppins-regular";
  color: var(--white-80);
  cursor: pointer;
  position: relative;
}
.footer_menu li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: -webkit-translateX(-50%);
  transform: -ms-translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}
.footer_menu li a:hover::after {
  width: 20px;
  height: 2px;
}

.social_address p {
  margin: 0;
  font-size: 16px;
  font-family: "poppins-regular";
  color: var(--white-80);
}
.uber {
  width: 140px;
  height: 40px;
  border: 1px solid rgba(80, 107, 138, 1);
  border-radius: 5px;
  background: rgba(18, 47, 81, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "poppins-regular";
}
.uber span {
  color: rgba(94, 140, 49, 1);
}
.social_icons h4 {
  font-size: 16px;
  font-family: "poppins-bold";
  margin-bottom: 12px;
  color: var(--white-80);
}
.social_icons .icons_wrapper {
  gap: 18px;
}
.social_icons .icons_wrapper img {
  max-width: 22px;
  max-height: 20px;
}

.bottom_footer {
  width: 100%;
  background: rgba(6, 32, 62, 1);
  overflow: hidden;
}
.bottom_footer div {
  height: 67px;
  border-top: 1px solid rgba(63, 77, 84, 1);
}
.bottom_footer div p {
  font-size: 16px;
  font-family: "poppins-regular";
  color: var(--white-80);
}
.bottom_footer div p a {
  font-family: "poppins-semibold";
}
@media screen and (max-width: 1920px) {
  .banner {
    width: 100%;
    min-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
  }
}
@media screen and (max-width: 1366px) {
  .banner {
    width: 100%;
    min-width: 100vw;
    height: 100vh;
    max-height: 675px;
    min-height: 675px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .inner_offcanvas {
    padding-top: 100px;
  }
  .cross_div .offcanvas_logo img {
    width: 160px;
    height: 40px;
  }
  .banner {
    max-height: 775px;
    min-height: 775px;
  }
  .banner .banner_content h2 {
    font-size: 70px;
    line-height: 80px;
  }
  .banner .banner_content p {
    font-size: 17px;
    line-height: 30px;
  }
  .modal_img {
    width: 90%;
    height: 90%;
  }

  .section_heading {
    font-size: 60px;
    padding-top: 100px;
  }
  .banner_content .service_cards .service_card {
    padding: 37px 0px;
  }
  .banner_content .service_cards .service_card h5 {
    font-size: 18px;
  }
  .menu p {
    display: none;
  }
  .link {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .header .navbar button {
    display: none;
  }
  .modal-dialog {
    max-width: 90%;
    margin-left: 5%;
  }
  .quote_text_section {
    font-size: 20px;
    line-height: 40px;
  }
  .about_right_icon {
    top: 300px;
    right: 55%;
  }
  .about_content .about_text {
    margin-top: 30px;
  }
  .about_content p {
    padding-right: 0px;
    margin-bottom: 35px;
  }
  .carousel-container {
    height: 575px;
  }
  .review_text {
    height: 150px;
  }
  .carousel-nav {
    left: 5%;
  }
  .user_intro h3 {
    font-size: 40px;
  }

  .modal-header h1 {
    font-size: 45px;
  }
  .modal-header p {
    line-height: 24px;
  }
  .foodmenu_page {
    width: 100%;
    height: 100vh;
  }
  /*  */
  .close-modal {
    position: absolute;
    top: 20px;
    right: 15px;
  }

  .download_pdf {
    top: 20px;
    right: 60px;
  }
  .download_pdf .download_icon {
    width: 14px;
    height: 18px;
  }
  .download_pdf .download_text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer_menu,
  .social_address {
    padding-top: 30px;
  }
  .modal_img {
    width: 95%;
    height: 95%;
  }
  .banner {
    background-position: left;
  }
}

@media screen and (max-width: 575px) {
  .inner_offcanvas {
    padding-top: 80px;
  }
  .cross_div {
    height: 75px;
  }
  .cross_div .offcanvas_logo img {
    width: 100px;
    height: 38px;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .banner .banner_content h2 {
    font-size: 55px;
    line-height: 75px;
  }
  .banner_content .service_cards .service_card {
    padding: 30px 0px;
  }
  .banner .banner_content .service_cards {
    margin-top: 15px;
  }

  .footer_menu,
  .social_address {
    padding-top: 30px;
  }
  .slide p {
    font-size: 16px;
    line-height: 28px;
  }
  .carousel-container {
    height: 555px;
  }
  .section_heading {
    font-size: 55px;
    padding-top: 90px;
  }
  .section_subheading {
    font-size: 14px;
    line-height: 24px;
  }
  .bottom_footer div p {
    font-size: 12px;
  }
  .review_order_form .form_wrapper {
    padding: 45px 12px;
  }
  .modal-header p br {
    display: none;
  }
  .map_wrapper .contact_icon {
    top: 140px;
  }
  .modal_img img {
    margin-top: 40%;
  }

  .close-modal {
    width: 30px;
    height: 30px;
    top: 34%;
    right: 10px;
  }
  .download_pdf {
    width: 80px;
    height: 30px;
    top: 34%;
    right: 50px;
    border: none;
    border-radius: 20px;
  }
  .download_pdf .download_text {
    display: none;
  }

  .google_review {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map-container {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }
  .map {
    height: 330px;
  }
  .review_order_form .form_wrapper p {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .modal-content {
    padding-top: 30px;
  }
  .section_heading {
    font-size: 50px;
  }
  .quote_text_section {
    font-size: 18px;
    line-height: 36px;
  }
  .section_subheading br {
    display: none;
  }
  .user_intro h3 {
    font-size: 34px;
  }
  .carousel-nav {
    left: 7%;
  }
  .banner {
    padding-bottom: 20px;
  }
  .banner_content .service_cards .service_card {
    padding: 20px 0px;
  }
  .banner .banner_content .service_cards {
    margin-top: 0px;
  }
  .user_intro div {
    width: 90px;
    height: 90px;
  }
  .user_intro h3 {
    font-size: 30px;
  }
  .user_intro {
    gap: 12px;
    margin-bottom: 30px;
  }
  .map {
    margin-top: 65px !important;
    margin-bottom: 70px !important;
  }

  .bg-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .modal-dialog {
    max-width: 95%;
    margin-left: 2.5%;
  }
  .modal-dialog-scrollable .modal-content {
    min-height: 90vh;
  }
  .review_order_form .form_wrapper button {
    height: 50px;
    font-size: 15px;
  }
  .footer_menu,
  .social_address {
    padding-top: 20px;
  }

  .footer-heading {
    font-size: 35px;
  }
  .contact_address_wrapper {
    text-align: center;
  }
  .contact_address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .footer_menu {
    text-align: center;
  }
  .footer_menu,
  .social_address {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .close-modal {
    top: 28%;
    right: 5px;
  }
  .download_pdf {
    top: 28%;
    right: 40px;
  }
  .quote_text_wrapper .left_icon {
    left: 25px;
    top: 35px;
  }
  .download_pdf .download_icon {
    width: 12px;
    height: 16px;
  }
}
@media screen and (max-width: 440px) {
  .close-modal {
    top: 18%;
  }
  .download_pdf {
    /* width: 90px;
    height: 42px; */
    top: 18%;
    right: 40px;
  }
}
@media screen and (max-width: 414px) {
  .banner {
    min-height: 100vh;
  }
  .banner .banner_content h2 {
    font-size: 42px;
    line-height: 75px;
  }
  .banner .banner_content p {
    font-size: 15px;
    line-height: 26px;
  }
  .banner_content .service_cards .service_card h5 {
    font-size: 14px;
  }
  .offcanvasSidebar .link {
    font-size: 17px;
  }
  .quote_text_section {
    font-size: 17px;
    line-height: 33px;
  }
  .google_review h3 {
    font-size: 32px;
  }
  .contact_address {
    font-size: 14px;
  }
  .footer_menu li {
    font-size: 14px;
  }
  .bottom_footer div p {
    font-size: 10px;
  }
  .close-modal {
    top: 19%;
    font-size: 26px;
  }
  .download_pdf {
    top: 19%;
  }
}
@media screen and (max-width: 375px) {
  .banner {
    max-height: 775px;
    min-height: 775px;
  }
  .cross_div {
    padding-left: 17px;
  }
  .inner_offcanvas .offcanvas_menu img {
    width: 20px;
    height: 20px;
    margin-left: 17px;
  }
  .offcanvas_social_icons img {
    width: 25px;
    height: 25px;
  }
  .close-modal {
    top: 23%;
    right: 5px;
  }
  .download_pdf {
    top: 23%;
  }
}
@media screen and (max-width: 360px) {
  .reserve_btn_offcanvas button {
    width: 260px;
  }
  .close-modal {
    top: 20%;
    right: 0px;
  }
  .download_pdf {
    top: 20%;
    right: 20px;
  }
}

@media screen and (max-width: 330px) {
  .reserve_btn_offcanvas button {
    margin-bottom: 20px;
  }
  .offcanvas_social_icons {
    padding: 0px 0px 12px 0px;
  }
  .close-modal {
    top: 18%;
    right: 0px;
  }

  .download_pdf {
    top: 18%;
    right: 40px;
  }
  .download_pdf {
    width: 75px;
  }
  .bottom_footer div p {
    font-size: 8px;
  }
}
