@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
:root {
  --brand: #012B4F;
  --yellow: #F49B36;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --bg-gray: rgb(245 245 245);
  --link-color: #1D242E;
  --heading-color: #454545;
  --black: rgb(33 33 41);
  --dark: #1B1918;
  --grey: #7B7B7B;
  --border-color: rgb(236 236 236);
  --br: .937rem;
  --body-text-color: #696969;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Figtree", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
} 
.bg-light {
  background-color: rgba(234, 234, 234, 0.2431372549) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-primary-light {
  background-color: rgba(1, 43, 79, 0.1) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-orange {
  background-color: var(--yellow) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.btn-bg {
  background-color: #0882DD !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}
.text-black { color: rgb(33 33 41); }
.text-40 {
  color: #404040 !important;
}

.text-4d {
  color: #4D4D4D !important;
}

.text-orange {
  color: var(--yellow) !important;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link svg {
  transition: all 0.3s ease-in-out;
}
.link svg path {
  fill: var(--brand);
}
.link:hover {
  color: var(--dark);
}
.link:hover svg {
  transform: translateX(0.5rem);
}
.link:hover svg path {
  fill: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  border-radius: var(--border-radius);
  padding: 0.875rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn-sm { padding: .45rem 1rem; }
.btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary svg path {
  fill: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-primary.orange {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}
.btn-primary.orange:hover, .btn-primary.orange:focus, .btn-primary.orange:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}
.btn-outline-white:hover svg path, .btn-outline-white:focus svg path, .btn-outline-white:active svg path {
  fill: var(--brand);
  transition: all 0.3s ease;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}


.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
/*====================== Navigation Styles ===================*/
.smart-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  background-color: var(--brand);
}
.scrolled-up .navbar-brand img {
  max-height: 3rem;
}

.top__nav {
  border-color: rgba(255, 255, 255, 0.3215686275) !important;
} 
.top__nav .action__btn { padding: 1rem;border-left: 1px solid #ffffff4f;color: var(--white); }
.top__nav .action__btn.call { border-right: 1px solid #ffffff4f; }
.top__nav .link__list li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--white);
  margin-left: 0.5rem;
}

.navbar .navbar-brand img {
  max-height: 3rem;
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--yellow);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--yellow);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: 26.4rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu.houseboat {
  min-width: 21rem;
}
.navbar .dropdown .dropdown-menu.india__tour {
  min-width: 12rem;
  max-width: 12rem;
}
.navbar .dropdown .dropdown-menu.india__tour_2 {
  min-width: 14rem;
  max-width: 14rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 0.55rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--yellow);
}
.navbar .dropdown:hover > .nav-link .caret {
  transform: rotate(-180deg);
}

.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

.navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
  background-color: var(--yellow);
  color: #fff;
  margin-left: 1rem;
}
.navbar-toggler span {
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--white);
  display: block;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler span:nth-child(2) {
  margin: 7px 0;
  width: 70%;
}
.navbar-toggler:hover span:nth-child(1) {
  width: 100%;
}
.navbar-toggler:hover span:nth-child(3) {
  width: 100%;
}
.navbar-toggler:hover span:nth-child(2) {
  width: 100%;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.sideNav ul.links__list li {
  border-bottom: 1px solid #eee;
}
.sideNav ul.links__list li a {
  display: flex;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--link-color);
  text-transform: uppercase;
  justify-content: space-between;
  align-self: center;
  font-size: 1rem;
}
.sideNav ul.links__list li a.btn__link::after {
  content: "+";
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--link-color);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed) {
  color: var(--brand);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed)::after {
  content: "−";
  color: var(--brand);
}
.sideNav ul.links__list li a.collapse__btn {
  border-left: 1px solid #eee;
}
.sideNav ul.links__list li a:hover, .sideNav ul.links__list li a:focus, .sideNav ul.links__list li a:active {
  color: var(--brand);
}
.sideNav ul.links__list li .collapse li:first-child {
  border-top: 1px solid #eee;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1400px) {
  .top__nav a {
    font-size: 0.875rem;
  }
  .top__nav .link__list li:not(:last-child)::after {
    font-size: 0.9rem;
  }
  .navbar .nav-item .nav-link {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 2.5rem;
  }
  .user__action__menu { position: fixed;bottom: 0%;left: 0%;width: 100%; background-color: #fff;z-index: 999;border-radius: 1rem 1rem 0 0;box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);  }
}
.shopping__cart__btn {
  border: 1px solid #ffffff4f;
  width: 2.75rem;
  height: 2.75rem;background: transparent;
  color: var(--white);
}

.shopping__cart__btn:hover, .shopping__cart__btn:focus, .shopping__cart__btn:active {
  background-color: rgba(255, 255, 255, 0.12);
} 

.login__btn {
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  background-color: transparent;
  color: var(--white);
  gap: 0.25rem;
  height: 2.75rem;
}


.login__btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.login__btn:hover, .login__btn:focus, .login__btn:active {
  border-color: var(--white);
  color: var(--white);
}

.auth__dropdown.dropdown .dropdown-menu {
  min-width: min-content;
  left: -70%;
}
footer { background-color: var(--brand); }
footer .logo {
  max-height: 5rem;
}
footer .icon__box {
  width: 2.5rem;
  height: 2.5rem;
}
footer .icon__box svg {
  width: 1.5rem;
}
footer .icon__box svg path {
  fill: var(--white);
}
footer .icon__box.pin svg {
  width: 1.25rem;
  height: 1.25rem;
}
footer .action__btn {
  width: 15rem;
}
footer .links a {
  color: var(--white);font-size: .937rem;
  text-transform: capitalize;
}
footer .links a:hover {
  text-decoration: underline;
  color: var(--white);
}
footer .copyright__wrapp {
  border-top: 1px solid #dddddd42;
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background-color: var(--white);
}
.social__links li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.social__links li a svg path {
  fill: var(--brand);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--yellow);
}
.social__links li a:hover svg path, .social__links li a:focus svg path {
  fill: var(--white);
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}
.social__links.header__links li a {
  width: 2rem;
  height: 2rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .action__btn {
    width: 100%;
  }
  footer { padding-bottom: 3rem !important; }
}
.fixed__btn {
  width: 4rem;
  height: 4rem;
  z-index: 9999;
}

.call__btn {
  background-color: #0568A8;
  bottom: 8rem;
  left: 2rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse1 1.5s infinite;
}
.call__btn svg {
  width: 2rem;
  height: 2rem;
}
.call__btn svg path {
  fill: var(--white);
}

@-webkit-keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #0568A8;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse1 {
  0% {
    -moz-box-shadow: 0 0 0 0 #0568A8;
    box-shadow: 0 0 0 0 #0568A8;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
.whatsapp__btn {
  background-color: #4fce5d;
  bottom: 2rem;
  left: 2rem;
  -webkit-box-shadow: 0 0 0 #0568A8;
  box-shadow: 0 0 0 #0568A8;
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}
.whatsapp__btn svg {
  width: 2rem;
  height: 2rem;
}
.whatsapp__btn svg path {
  fill: var(--white);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #4fce5d;
  }
  70% {
    -webkit-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #4fce5d;
    box-shadow: 0 0 0 0 #4fce5d;
  }
  70% {
    -moz-box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}
.form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
} 
@media (max-width: 767px) {
  .fixed__btn { width: 3.5rem;height: 3.5rem; }
  .fixed__btn svg { width: 2rem;height: 2rem; }
  .whatsapp__btn { bottom: 5rem;left: .5rem; }
  .call__btn { bottom: 5rem;right: .5rem;left: auto; }
  .backTop { bottom: 10rem;right: .5rem; }
}

.total__count { width: 1.5rem;height: 1.5rem;top: -.25rem;right: -.25rem; }
.total__count.bottom { right: 2rem; }