@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #311a56;
  --primary-dark: #311a56;
  --dark: #111111;
  --grey: #444444;
  --light: #f5f5f5;
  --red: #fa5036;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-dark);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", serif;
  /* font-family: "Jost", sans-serif; */
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  color: #666;
}

.full-img {
  width: 100%;
}

.f30 {
  font-size: 30px !important;
}

.f28 {
  font-size: 28px !important;
}

.f26 {
  font-size: 26px !important;
}

.f24 {
  font-size: 24px !important;
}

.f22 {
  font-size: 22px !important;
}

.f20 {
  font-size: 20px !important;
}

.f18 {
  font-size: 18px !important;
}

.f16 {
  font-size: 16px !important;
}

.f14 {
  font-size: 14px !important;
}

.f12 {
  font-size: 12px !important;
}

.light-bg {
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1400px;
}

.top-bar {
  width: 100%;
  padding: 10px;
  background-color: var(--primary);
}

.top-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-menu li a {
  color: #fff;
}

.top-menu-social {
  width: 100%;
  text-align: right;
}

.top-menu-social li {
  display: inline;
  margin-left: 15px;
}

.top-menu-social li a {
  color: #fff;
  font-size: 20px;
}

header {
  padding: 10px 0;
  position: relative;
  z-index: 100;
  background-color: #fff;
}

.header-bg-color {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
  padding: 5px 0;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.logo {
  position: relative;
}

.logo img {
  width: 100%;
  max-width: 125px;
  position: absolute;
  top: -60px;
}

.menu {
  width: 100%;
  /* text-align: left; */
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* .menu li {
  display: inline;
  margin: 0 10px;
} */

.menu li a {
  color: var(--dark);
  transition: all 0.4s;
  font-weight: 500;
  font-size: 16px;
  padding: 5px;
  text-transform: uppercase;
}

.menu li a:hover {
  color: var(--primary);
}

.book-now-btn {
  padding: 8px 17px !important;
  border-radius: 6px;
  display: block;
  background-color: var(--primary);
  color: #fff !important;
  transition: all 0.4s;
}

.book-now-btn:hover {
  background-color: var(--dark) !important;
}

.header-right {
  display: none;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.bar-content-sec {
  width: 100%;
  min-height: 40px;
  background-color: var(--red);
  height: max-content;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}

.marquee {
  margin: 0;
  padding: 0;
  padding-top: 8px;
}

/* .bar-content  {
  animation: move 30s linear infinite 
} */

@keyframes move {
  100% {
    transform: translateX(-100%);
  }
}

.banner {
  width: 100%;
  height: 650px;
}

.banner-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

.banner-cont-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 650px;
}

.banner .carousel-item img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.banner-cont h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}

.banner-cont h2 {
  color: var(--red);
  font-size: 60px;
  font-weight: 600;
}

.banner-cont h2 span {
  color: #fff;
}

.banner-cont h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}

.banner-cont p {
  color: #fff;
  font-size: 20px;
}

.slider-link {
  padding: 10px 25px;
  color: var(--dark);
  background-color: #fff;
  border-radius: 5px;
  font-size: 22px;
  transition: all 0.4s;
}

.slider-link:hover {
  background-color: var(--dark);
  color: #fff;
}

.inner-sec {
  padding: 50px 0;
}

.title {
  font-size: 30px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.title::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: var(--primary);
  left: 0;
  bottom: -3px;
}

.title.text-white::before {
  background-color: #fff;
}

.service-box {
  width: 100%;
  padding: 20px;
  /* background-color: #cfedff; */
  background-color: #fff;
  border-radius: 5px;
  min-height: 200px;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-box h1 {
  font-size: 28px;
  margin-top: 10px;
}

.service-box p {
  color: var(--grey);
  margin-top: 10px;
}

.service-box img {
  width: 100%;
  max-width: 100px;
  margin-bottom: 15px;
}

.location-sec {
  background-color: var(--primary);
}

.inner-sec.location-sec {
  padding: 20px 0 50px 0;
}

.map-frame iframe {
  border-radius: 10px;
  border: solid 1px var(--primary) !important;
}

.map-sec {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-img {
  perspective: 25em;
  margin-top: 60px;
}

.info-img img {
  width: 100%;
  border-radius: 10px;
  transform: rotateY(10deg);
  z-index: 10;
  border: solid 2px #d5d5d5;
}

.info-cont {
  perspective: 25em;
}

.info-sec {
  perspective: 25em;
  position: relative;
  margin-top: 30px;
}

.info-sec::before {
  position: absolute;
  content: "";
  width: 60%;
  border-radius: 10px;
  transform: rotateY(-10deg);
  background-color: #def2ff;
  min-height: 480px;
  z-index: -10;
  right: 8%;
  top: 20px;
}

.info-cont-inner {
  width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px;
}

.info-cont-inner h1 {
  padding-top: 50px;
  line-height: 50px;
}

.info-cont-inner h1 span {
  color: var(--red);
}

.link-btn {
  padding: 10px 25px;
  color: #fff;
  background-color: var(--primary-dark);
  border-radius: 5px;
  font-size: 22px;
  transition: all 0.4s;
}

.link-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.info-2 {
  padding-bottom: 120px;
  padding-top: 50px;
}

.info-2 .info-img img {
  transform: rotateY(-10deg);
}

.info-2 .info-sec::before {
  position: absolute;
  content: "";
  width: 60%;
  border-radius: 10px;
  transform: rotateY(10deg);
  background-color: #def2ff;
  min-height: 480px;
  z-index: -10;
  left: 8%;
  top: 20px;
}

.info-2 .info-cont-inner {
  padding-left: 50px;
}

.things-cont {
  width: 100%;
  padding: 20px;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: solid 1px #ccc;
}

.things-cont img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.object-position-top {
  object-position: top;
}

.link-btn-small {
  padding: 5px 10px;
  border: solid 1px var(--primary);
  border-radius: 5px;
  color: var(--primary);
  transition: all 0.4s;
}

.link-btn-small:hover {
  background-color: var(--primary);
  color: #fff;
}

.service-bg {
  background: url(../images/t2.jpg) no-repeat center;
  object-fit: cover;
}

.info-1-bg {
  background: url(../images/info-bg-5.jpg) no-repeat center;
  object-fit: cover;
  padding-bottom: 180px;
}

.info-2-bg {
  background: url(../images/info-bg-5.jpg) no-repeat center;
  object-fit: cover;
  /* padding-bottom: 180px; */
  margin-top: -20px;
}

.mt-m-20 {
  margin-top: -20px;
}

.lc-cont {
  width: 100%;
  position: relative;
}

.lc-cont img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center;
  opacity: 0.1;
  display: none;
}

.lc-bg {
  background: url(../images/map-bg.jpg) no-repeat center;
  background-size: cover;
  min-height: 800px;
}

/* .lc-cont-inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
} */

.book-online-cont {
  width: 100%;
  /* background-color: rgb(235, 235, 235); */
  background-color: rgba(236, 248, 255, 1);
  padding: 20px;
  border-radius: 10px;
  min-height: 650px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  /* border: solid 2px #fff; */
}

.book-online-sec {
  margin-bottom: 50px;
  margin-top: -100px;
}

.date-cont {
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: auto;
  position: relative;
}

#waitlistPopup .date-cont {
  max-width: 100%;
}

#waitlistPopup .date-cont .datepicker {
  border: solid 1px #dee2e6;
}

.datepicker {
  width: 100%;
  height: 50px;
  outline: none;
  border: solid 1px #999;
}

.datepicker:focus {
  box-shadow: none;
}

.date-icon {
  position: absolute;
  top: 5px;
  right: 7px;
}

.date-icon i {
  font-size: 28px;
  opacity: 0.5;
}

.date-cont span {
  display: block;
  color: var(--primary) !important;
}

.booking-content {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  min-height: 500px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-bottom: 30px;
}

.booking-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.booking-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.booking-share {
  position: absolute;
  z-index: 20;
  top: 10px;
  right: 10px;
}

.booking-share a i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.booking-youtube {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  left: 10px;
}

.booking-youtube a {
  position: relative;
  font-size: 10px;
  color: #111111;
  padding: 5px 10px 5px 34px;
  background-color: #fff;
  border-radius: 4px;
  display: block;
  line-height: 10px;
}

.booking-youtube a i {
  position: absolute;
  left: 5px;
  top: 3px;
  font-size: 25px;
  color: #d40000;
}

.booking-gallery {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  right: 10px;
}

.booking-gallery a {
  padding: 5px 12px;
  background-color: #fff;
  border-radius: 20px;
  color: var(--dark);
  font-size: 14px;
}

.booking-cont-inner {
  padding: 20px 25px;
}

.booking-cont-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-cont-title h1 {
  font-size: 24px;
  color: var(--primary);
}

.booking-cont-title h2 {
  color: #fff;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 300;
  display: inline;
}

.green-bg {
  background-color: rgb(34, 197, 94);
  border-radius: 20px;
}

.orange-bg {
  background-color: rgb(249, 115, 22, 0.9);
  border-radius: 20px;
}

.red-bg {
  background-color: rgb(239, 68, 68, 0.9);
  border-radius: 20px;
}

.booking-cont-price {
  margin-top: 5px;
}


.booking-cont-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
}

.booking-cont-info li {
  font-size: 14px;
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  background-color: #d1e2ec;
}

.booking-cont-list {
  margin-top: 20px;
}

.booking-cont-list li {
  position: relative;
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 28px;
  padding-top: 2px;
}

.booking-cont-list li i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--red);
}

.booking-slot-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
}

.booking-slot-btns button {
  outline: none;
  border: none;
  background-color: #e9f2f7;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 20px;
}

.booking-slot-btns button:focus {
  background-color: var(--primary);
  color: #fff;
}

.overview-cont {
  width: 100%;
  min-height: 100px;
  border-radius: 10px;
  background-color: var(--primary);
  margin-top: 20px;
  padding: 15px;
  color: #fff;
  /* box-shadow: rgba(34, 87, 119, 0.25) 0px 50px 100px -20px, rgba(34, 87, 119, 0.3) 0px 30px 60px -30px; */
  box-shadow: rgba(34, 87, 119, 0.3) 0px 7px 29px 0px;
}

.overview-cont ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.form-cont {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 100px;
  padding: 20px;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
}

.form-cont-right-top {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 70px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-cont-right-bottom {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 70px;
  padding: 20px;
}

.b-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: solid 1px #d5d5d5;
}

.b-list li {
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.clr-primary {
  color: var(--primary);
}

.overview-cont-summery {
  width: 100%;
  min-height: 100px;
  border-radius: 10px;
  background-color: var(--primary);
  margin-bottom: 20px;
  padding: 15px;
  color: #fff;
  /* box-shadow: rgba(34, 87, 119, 0.25) 0px 50px 100px -20px, rgba(34, 87, 119, 0.3) 0px 30px 60px -30px; */
  box-shadow: rgba(34, 87, 119, 0.3) 0px 7px 29px 0px;
}

.overview-cont-summery ul li {
  display: block;
  margin-top: 15px;
}

.alert-summery p {
  background-color: #fef2f2;
  color: #d40000;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 16px;
}

.checkbox-lg {
  width: 20px;
  height: 20px;
}

.list-instructions li {
  margin-bottom: 10px;
  font-size: 16px;
}

.occasion-img {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  transition: all 0.4s;
  border-radius: 10px;
  border: solid 1px #fff;
  cursor: pointer;
}

.occasion-img:hover {
  border: solid 1px #d5d5d5;
}

.occasion-img img {
  width: 100%;
  max-width: 100px;
}

.occasion-img h5 {
  margin-top: 20px;
  font-size: 16px;
}

.occasion-img.active {
  background-color: #d1e9fa;
}

.warning-alert {
  padding: 10px 15px;
  background-color: #fefce8;
  font-size: 16px;
  color: #a16207;
}

.hidecontent {
  display: none;
}

.gallery-slider-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.booknow-cont {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
}

.booknow-cont-img {
  position: relative;
}

.booknow-cont-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.booknow-map {
  position: absolute;
  bottom: -10px;
  right: -15px;
}

.map-svg {
  width: 65px !important;
  height: 65px !important;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}

.booknow-cont-text h3 {
  color: var(--primary);
}

.g-ratings img {
  display: inline-block !important;
  padding-left: 25px;
}

.g-ratings {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 6px;
}

.g-ratings p {
  margin-bottom: 0;
  padding: 0;
  font-size: 16px;
}

.food-menu a {
  padding: 5px 15px;
  border-radius: 30px;
  background-color: #dbf0fd;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}

.parking-avail span {
  padding: 8px 15px;
  border-radius: 30px;
  background-color: #dbf0fd;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
}

/* ====== Footer CSS ====== */

footer {
  width: 100%;
  padding: 40px 0px 10px 0;
  background-color: #311a56;
  font-size: 16px;
  position: relative;
  color: #eee;
}

.f-logo img {
  width: 100%;
  max-width: 200px;
}

.f-social {
  margin-left: 20px;
}

.f-social li {
  margin-right: 35px;
  display: inline;
}

.f-social li a {
  color: #fff;
  font-size: 26px;
  transition: all 0.4s;
}

.f-social li a:hover {
  color: #fff;
}

.f-links {
  margin-top: 10px;
}

footer p {
  color: #eee;
}

.f-links li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #eee;
}

.f-links li i {
  position: absolute;
  left: 0;
  top: 0px;
}

.f-links li a:hover {
  color: #fff;
}

footer a {
  color: var(--dark);
  transition: all 0.4s;
  color: #eee;
}

footer a:hover {
  color: #fff;
}

.footer-btm {
  text-align: center;
  border-top: solid 1px #fff;
}


.add-ons-content {
  padding: 10px 10px 15px 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.add-ons-content iframe {
  border-radius: 10px;
  width: 100%;
  width: 100% !important;
  height: 250px !important;
}

.add-ons-title {
  min-height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-ons-title h1 {
  font-size: 18px;
  padding-top: 5px;
  padding-left: 5px;
  color: #010066;
  font-family: 'Rubik', sans-serif;
}

.image-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.title-banner{
  width: 100%;
  min-height: 100px;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.inner-sec {
  padding: 50px 0 60px 0;
}

.page-section-cont {
width: 100%;
/* background-color: rgb(235, 235, 235); */
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
  rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
/* border: solid 2px #fff; */
}

.service-box {
  transition: all 0.3s ease;
  border-radius: 10px;
}

.service-box p {
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #311a56;
  color: #fff;
}

.service-box:hover p {
  color: #fff;
  margin-top: 10px;
}

.container-new {

}

.eggless-badge {
            background-color: #28a745;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            margin-left: 5px;
            display: none;
}
