/*Variables */
:root {
  --primarycolor: #f08a27;
  --secondarycolor: #f8ac3c;
  --tertiarycolor: #2c3e50;
  --primaryoff: #dcdde1;
  --purewhite: #fff;
  --pureblack: #000;
  --graycolor: #595959;
  --graylight: #bbbbbb;
  --grayborder: #e9e9e9;
  --grayborderdark: #c3c3c3;
  --whitecolor: #f2f2f2;
  --blackcolor: #202020;
  --colorgreen: #76b852;
  --accentcolor: #f7ffdc;
  --colorblue: #0066cb;
  --colorred: #eb062c;
  --colorpink: #f3c4c9;
  --colorpurple: #977ebd;
  --sectionpadding: 60px;
  --border-radius: 12px;
  --accentdark: #e2fc88;
  --accentborder: #cae07ee7;
  --bg-langtang: #e8f5e9;
  --bg-langtang-dark: #b8efbc;
  --bg-langtang-border: #8be392;
  --bg-manaslu: #fff3e0;
  --bg-manaslu-dark: #f8e7cc;
  --bg-manaslu-border: #e7d3b2;
  --bg-farwestern: #e1f5fe;
  --bg-farwestern-dark: #ceeefd;
  --bg-farwestern-border: #bbe8fc;
  --bg-greathimalayan: #f3e5f5;
  --bg-greathimalayan-dark: #f5d2fa;
  --bg-greathimalayan-border: #f2c4f9;
  --ease-cubic: cubic-bezier(0.4, 0, 0, 1);
  --tan-primary-color: #c8dc71;
  --tan-gradient-color: linear-gradient(180deg, #d2ff00 0%, #00d2ff 100%);
  --tan-tooltip-bg: #ffffff;
  --tan-tooltip-text: #16181b;
  --infobg: #ebf8ff;
  --infoborder: #c1e4f6;
}
/* Rest */
body,
html {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  /* overflow-x: hidden !important; */
  width: 100%;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-size: 100px;
  font-weight: 900;
}
h2 {
  font-size: 50px;
  font-weight: 500;
}
h3 {
  font-size: 30px;
}

h6 {
  font-size: 12px;
}
/* General css */
.content-wrapper {
  position: relative;
  z-index: 9999;
}
.section-padding-2half {
  padding: calc(var(--sectionpadding) / 4) 0;
}
.section-padding-half {
  padding: calc(var(--sectionpadding) / 2) 0;
}
.section-padding {
  padding: var(--sectionpadding) 0;
}
.section-padding-2x {
  padding: calc(var(--sectionpadding) * 2) 0;
}
.section-padding-3x {
  padding: calc(var(--sectionpadding) * 3) 0;
}
.section-padding-2 {
  padding: calc(var(--sectionpadding) + 20px) 0;
}
.section-padding-4 {
  padding: calc(var(--sectionpadding) + 40px) 0;
}
.section-padding-n2 {
  padding: calc(var(--sectionpadding) - 20px) 0;
}
.section-padding-n4 {
  padding: calc(var(--sectionpadding) - 40px) 0;
}
.section-padding-bottom {
  padding-bottom: var(--sectionpadding);
}
.section-padding-top {
  padding-top: var(--sectionpadding);
}
.section-padding-bottom-half {
  padding-bottom: calc(var(--sectionpadding) / 2);
}
.section-padding-bottom-2 {
  padding-bottom: var(--sectionpadding);
}
.section-padding-bottom-2x {
  padding-bottom: calc(var(--sectionpadding) * 2);
}
.section-padding-bottom-3x {
  padding-bottom: calc(var(--sectionpadding) * 3);
}
.section-padding-bottom-4x {
  padding-bottom: calc(var(--sectionpadding) * 4);
}
.section-padding-bottom-4 {
  padding-bottom: calc(var(--sectionpadding) + 40px);
}
.section-padding-bottom-n2 {
  padding-bottom: calc(var(--sectionpadding) - 20px);
}
.section-padding-bottom-n4 {
  padding-bottom: calc(var(--sectionpadding) - 40px);
}
.no-padding {
  padding: 0;
}
.no-padding-left {
  padding-left: 0;
}
.no-padding-right {
  padding-right: 0;
}

.no-padding-top {
  padding-top: 0;
}
.no-padding-bottom {
  padding-bottom: 0;
}
.row-gap-1 {
  row-gap: 1rem;
}
.row-gap-3 {
  row-gap: 3rem;
}
.row-gap-2 {
  row-gap: 2rem;
}
.color-primary {
  color: var(--primarycolor);
}
.color-black {
  color: #000;
}
.color-offblack {
  color: #999;
}
.color-red {
  color: var(--colorred);
}
.color-blue {
  color: var(--colorblue);
}
.color-white {
  color: #fff !important;
}
.color-green {
  color: var(--colorgreen);
}
.bg-primary-off {
  background-color: var(--primaryoff) !important;
}
.bg-black {
  background-color: var(--pureblack) !important;
}
.bg-gray {
  background-color: var(--graycolor) !important;
}
.bg-green {
  background-color: var(--colorgreen) !important;
}
.bg-yellow {
  background-color: var(--accentcolor) !important;
}
.bg-langtang {
  background-color: #e8f5e9 !important; /* Light green */
}
.bg-manaslu {
  background-color: #fff3e0 !important; /* Light orange */
}
.bg-far {
  background-color: #e1f5fe !important; /* Light blue */
}
.bg-great {
  background-color: #f3e5f5 !important; /* Light purple */
}
.spacer-10 {
  height: 10px;
  width: 100%;
}
.spacer-20 {
  height: 20px;
  width: 100%;
}
.spacer-30 {
  height: 30px;
  width: 100%;
}
.spacer-40 {
  height: 40px;
  width: 100%;
}
.spacer-50 {
  height: 50px;
  width: 100%;
}
.spacer-60 {
  height: 60px;
  width: 100%;
}
.spacer-70 {
  height: 70px;
  width: 100%;
}
.spacer-80 {
  height: 80px;
  width: 100%;
}
.spacer-920 {
  height: 900px;
  width: 100%;
}
.spacer-100 {
  height: 100px;
  width: 100%;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-10 {
  padding-top: 10px;
}
.pb-20 {
  padding-top: 20px;
}
.pb-30 {
  padding-top: 30px;
}
.pb-40 {
  padding-top: 40px;
}
.pb-50 {
  padding-top: 50px;
}
.pb-60 {
  padding-top: 60px;
}
.pb-70 {
  padding-top: 70px;
}
.pb-80 {
  padding-top: 80px;
}
.pb-90 {
  padding-top: 90px;
}
.pb-100 {
  padding-top: 100px;
}
.capsule {
  border: 1px solid #e7e7e7;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 25px;
  font-size: 14px;
  background: #f1f1f1;
}
.capsule-accent {
  background-color: var(--accentdark);
  border: 1px solid var(--accentborder);
}
.capsule-gray {
  background-color: var(--graylight);
  border: 1px solid var(--grayborder);
}
.capsule-langtang {
  background-color: var(--bg-langtang-dark);
  border: 1px solid var(--bg-langtang-border);
}
.capsule-manaslu {
  background-color: var(--bg-manaslu-dark);
  border: 1px solid var(--bg-manaslu-border);
}
.capsule-far {
  background-color: var(--bg-farwestern-dark);
  border: 1px solid var(--bg-farwestern-border);
}
.capsule-great {
  background-color: var(--bg-greathimalayan-dark);
  border: 1px solid var(--bg-greathimalayan-border);
}
.btn-primary.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  line-height: 1;
}

.btn-primary.btn-icon::after {
  content: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.72201 0.418963L8.72305 8.29479C8.74201 8.54092 8.55271 8.73021 8.30659 8.71125C8.193 8.71123 8.0794 8.67335 8.00366 8.59762C7.92792 8.52188 7.89004 8.40828 7.89003 8.29468L7.8702 1.46013L0.733664 8.59666C0.563296 8.76703 0.298244 8.76699 0.12783 8.59658C-0.0425824 8.42617 -0.0426172 8.16112 0.127751 7.99075L7.26428 0.854215L0.429727 0.834383C0.183609 0.853283 -0.00573835 0.663936 0.0131617 0.417818C0.0320614 0.171701 0.183495 -0.0176017 0.429617 0.00136304L8.30545 0.00239855C8.55156 -0.0165011 8.74091 0.172846 8.72201 0.418963Z' fill='white'%3E%3C/path%3E%3C/svg%3E");

  display: block;
  width: 9px;
}

.button-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text {
  white-space: nowrap;
}

.button-text.is-2 {
  align-self: auto;
  position: absolute;
  inset: 0%;
}

/* Header */
.top-header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  pointer-events: none;
}
.top-header .logo-wrapper img {
  max-height: 50px;
  height: 100% !important;
  object-fit: contain;
  object-position: left;
}
.top-header .logo-wrapper,
.top-header .tan-burger {
  pointer-events: auto;
}
.top-header-right {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.tan-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 44px;
  width: 44px;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (min-width: 992px) {
  .tan-search.active {
    width: calc(100vw - 400px);
  }
}

@media screen and (max-width: 991px) {
  .tan-search.active {
    width: calc(100vw - 150px);
  }
}

.search-icon {
  position: absolute;
  right: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  z-index: 1000000;
  pointer-events: auto;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000001;
  pointer-events: auto;
}

@media screen and (max-width: 991px) {
  .search-results-dropdown {
    width: calc(100vw - 40px);
    right: -20px;
  }
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #fafafa;
}

.search-result-item a {
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
}

.search-result-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-img {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-img::after {
  content: "\f03e";
  font-family: "FontAwesome";
  color: #ccc;
  font-size: 20px;
}

.search-result-content {
  flex-grow: 1;
  overflow: hidden;
}

.search-result-content h6 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-price {
  font-size: 13px;
  font-weight: 700;
}

.search-loading,
.no-results,
.search-error {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
.search-icon a {
  color: var(--blackcolor);
}

.tan-search.active .search-icon {
  right: calc(100% - 44px);
}

.search-input-box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  opacity: 0;
  padding: 0 44px 0 20px;
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-sizing: border-box;
  pointer-events: none;
}

.search-input-box input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: var(--blackcolor);
  min-height: 40px;
}

.tan-search.active .search-input-box {
  opacity: 1;
  padding: 0 20px 0 44px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
}

body.menu-open .top-header {
  z-index: 1000001;
  background: transparent;
}
body.menu-open .logo-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.qodef-fullscreen-menu-opener.qodef-fullscreen-menu-opener-svg-path span {
  position: relative;
  background: #3fd0d4;
  padding: 41px 36px;
}
.qodef-fullscreen-menu-opener .qodef-fullscreen-menu-close-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* MEGA MENU */

.tan-header {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.logo-header {
  position: absolute;
  z-index: 99999;
  width: 100%;
}
.tan-burger {
  position: fixed;
  z-index: 1000000;
  right: 25px;
  top: 35px;
  cursor: pointer;
  transform: rotateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: #fff;
  padding: 10px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tan-burger__patty {
  width: 100%;
  height: 2px;
  margin: 0 0 4px 0;
  background: #000;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tan-burger__patty:last-child {
  margin-bottom: 0;
}

/* Burger Animation States */
.tan-burger--close {
  transform: rotate(180deg);
}
.tan-burger--close .tan-burger__patty:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.tan-burger--close .tan-burger__patty:nth-child(2) {
  opacity: 0;
}
.tan-burger--close .tan-burger__patty:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Menu Overlay */
.tan-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 999999;
}
.tan-menu--active {
  visibility: visible;
}

.tan-menu__brand,
.tan-menu__list {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  height: 100vh;
  overflow: hidden;
}
.tan-menu__brand {
  width: 75%;
}
.tan-menu__list {
  width: 25%;
}
.tan-menu__list .menu-items {
  margin-top: -30px;
}

.tan-horizontal-tabs {
  /* margin-top: 80px; */
}
.tan-horizontal-tabs__tablist {
  --active-marker-offset: 0;
  position: relative;
  padding-left: 1rem;
  /* justify-content: center; */
  justify-content: space-between;
}
.tan-horizontal-tabs__tablist:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--graycolor);
}
.tan-horizontal-tabs__tablist:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--active-marker-left, 0);
  width: var(--active-marker-width, 0);
  height: 3px;
  background: var(--primarycolor);
  z-index: 20;
  pointer-events: none;
}
.tan-horizontal-tabs__tablist button {
  color: var(--purewhite);
  position: relative;
  padding: 18px 10px;
  z-index: 10;
  cursor: pointer;
}
.tan-horizontal-tabs__tablist button::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background-color: var(--primarycolor);
  transition: width 0.3s ease;
}
.tan-horizontal-tabs__tablist button:hover {
  color: var(--primarycolor);
}
.tan-horizontal-tabs__tablist button:hover::after {
  width: 100%;
}
.tan-horizontal-tabs__tablist button[aria-selected="true"] {
  color: var(--primarycolor);
}
.tan-horizontal-tabs__content {
  color: var(--whitecolor);
  position: relative;
}
.tan-horizontal-tabs__content p {
  color: var(--whitecolor);
  margin-bottom: 0;
}
.tan-horizontal-tabs__images {
  position: relative;
}
.tan-horizontal-tabs__images figure {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.tan-horizontal-tabs__images figure[data-state="default"] {
  z-index: 1;
}
.tan-horizontal-tabs__images figure[data-state="previous"] {
  z-index: 2;
}
.tan-horizontal-tabs__images figure[data-state="current"] {
  z-index: 3;
}

.tan-horizontal-tabs__content > div:not(:first-of-type) {
  display: none;
  opacity: 0;
}
.main-menu-items .card {
  padding: 0.5rem;
}
.main-menu-items figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.main-menu-items figure img {
  max-height: 120px;
  margin: 0;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}
.main-menu-items .card:hover figure img {
  transform: scale(1.1) rotate(1deg);
}
.main-menu-items .card h5 {
  color: var(--blackcolor);
  font-size: 18px;
}
.main-menu-items .card .card-body {
  padding: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.aspect-2\/3 {
  aspect-ratio: 2/3;
}
.main-menu-items {
  overflow-y: auto;
  max-height: 500px;
  overflow-x: hidden;
  padding-right: 20px;
}
.main-menu-items p.btn {
  padding: 6px 12px;
}
.main-menu-items::-webkit-scrollbar,
.search-results-list::-webkit-scrollbar {
  width: 4px;
}
.main-menu-items::-webkit-scrollbar-track,
.search-results-list::-webkit-scrollbar-track {
  background: var(--graycolor);
}
.main-menu-items::-webkit-scrollbar-thumb,
.search-results-list::-webkit-scrollbar-thumb {
  background: var(--grayborderdark);
}
/* Blue to Pink Gradient for Menu */
.tan-menu__list {
  margin: 0;
  padding: 0;
  background: var(--graycolor);
  list-style-type: none;
  gap: 30px;
  transform: translate3d(0, -100%, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tan-menu__list h3 {
  font-size: 25px;
  color: var(--purewhite);
}
.tan-menu__list--active {
  transform: translate3d(0, 0, 0);
}

.tan-menu__brand {
  background: black;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, 100%, 0);
}
.tan-menu__brand--active {
  transform: translate3d(0, 0, 0);
}

.tan-menu__item {
  transform: translate3d(500px, 0, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tan-menu__item--active {
  transform: translate3d(0, 0, 0);
}

.tan-menu__link {
  display: inline-block;
  position: relative;
  font-size: 20px;
  padding: 15px 0;
  font-weight: 300;
  text-decoration: none;
  color: var(--whitecolor);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tan-menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.tan-menu__link:hover:before {
  width: 100%;
}

.tan-menu a.tan-menu__link:hover {
  color: white !important;
  text-decoration: none !important;
  /* font-weight: bold !important; */
}
.tan-menu__list .tan-social-box .tan-item {
  width: 3rem;
}
/* Staggered Delay */
.tan-menu .tan-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.tan-menu .tan-menu__item:nth-child(2) {
  transition-delay: 0.2s;
}
.tan-menu .tan-menu__item:nth-child(3) {
  transition-delay: 0.3s;
}
.tan-menu .tan-menu__item:nth-child(4) {
  transition-delay: 0.4s;
}
.tan-menu .tan-menu__item:nth-child(5) {
  transition-delay: 0.5s;
}
.tan-menu .tan-menu__item:nth-child(6) {
  transition-delay: 0.6s;
}

@media screen and (max-width: 768px) {
  ul.tan-menu__list,
  div.tan-menu__brand {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.tan-menu__list--active,
  div.tan-menu__brand--active {
    transform: translate3d(0, 0, 0);
  }
  .tan-menu__list {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
  }
  .tan-menu__link {
    font-size: 24px;
  }
  .tan-menu__brand {
    height: 25vh;
    transform: translate3d(100%, 0, 0);
  }
  .tan-menu__brand .tan-logo {
    width: 90px;
    height: 90px;
  }
}
.c-white {
  color: var(--purewhite) !important;
}

.bgc-blue {
  background-color: var(--primarycolor) !important;
}

.icon-phone svg {
  width: 20px;
  position: relative;
}
.icon-phone:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--primarycolor);
  opacity: 0.5;
  animation: ring-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.icon-phone:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(240, 138, 39, 0.5);
  border-radius: 50%;
  border: none;
  animation: ring-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.osc-rotation {
  box-sizing: border-box;
  animation: oscillate-rotation 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}

.icon-phone {
  font-family: "Material Icons";
  position: relative;
  font-size: 3rem;
  line-height: 40px;
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  border-radius: 50%;
}
.phone-shake span {
  display: flex;
  gap: 30px;
  align-items: center;
}
@keyframes ring-circle-anim {
  0% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0;
  }
  30% {
    transform: rotate(0) scale(1.5) skew(0deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1.7) skew(0deg);
    opacity: 0.1;
  }
}
@keyframes ring-circle-fill-anim {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1.4) skew(0deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0.2;
  }
}
@keyframes oscillate-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
/* GSAP Header */
.home-header {
  background: url(../assets/images/cloud1.png) bottom center no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}
main {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
}

.scrollDist {
  position: relative;
  width: 100%;
  height: 200vh;
  z-index: 1;
}

.tanhero h1 {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  z-index: 99999;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 900;
}

.tanhero h2 {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  z-index: 25;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 15rem;
  line-height: 15rem;
  font-weight: 700;

  /* Mesh Gradient Effect */
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #4facfe 75%,
    #00f2fe 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Text Shadow for depth (using multiple shadows) */
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 20px rgba(102, 126, 234, 0.5))
    drop-shadow(0 0 40px rgba(118, 75, 162, 0.3));

  /* Animation */
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.flexContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 50;
  transform: translateZ(0) translateY(-20%);
}
.heroWrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.tanhero {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 120vh;
  top: 0;
  left: 0;
}

.tanhero img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  /* Hardware acceleration for smooth scrolling */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

img.sky {
  z-index: 1;
}

img.mountBg {
  z-index: 99;
}

img.mountMg {
  z-index: 999;
}

img.cloud2 {
  z-index: 9999;
  top: -20%;
}

img.mountFg {
  z-index: 9999;
}

img.cloud1 {
  z-index: 9999;
  bottom: 0 !important;
  top: auto !important;
  height: auto !important;
  object-fit: contain;
}

img.cloud3 {
  z-index: 9999;
}

/* Snow Effect */
#snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 100000;
}
.snowflake {
  position: absolute;
  top: -10px;
  background-color: white;
  border-radius: 50%;
  animation: fall linear infinite;
}
@keyframes fall {
  0% {
    transform: translateY(-10px) translateX(0);
  }
  100% {
    transform: translateY(100vh) translateX(20px);
  }
}
@keyframes fall-left {
  0% {
    transform: translateY(-10px) translateX(0);
  }
  100% {
    transform: translateY(100vh) translateX(-40px);
  }
}
@keyframes fall-right {
  0% {
    transform: translateY(-10px) translateX(0);
  }
  100% {
    transform: translateY(100vh) translateX(60px);
  }
}
@keyframes fall-diagonal {
  0% {
    transform: translateY(-10px) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) translateX(-30px) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) translateX(30px) rotate(360deg);
  }
}
/* Content */
.section-especialize {
  background: url(../assets/images/cloud2way.png) top center no-repeat;
  background-color: transparent;
  background-size: cover;
  margin-top: -300px;
  padding: 450px 0 100px 0 !important;
  position: relative;
  z-index: 9999;
}
.section-especialize h2 {
  font-weight: bold;
  font-size: 60px;
  margin-bottom: 40px;
  color: var(--primaryoff);
}
.section-especialize p {
  font-size: 35px;
  font-weight: 600;
  color: var(--primaryoff);
}
.section-about {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.section-about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #d1f3f5;
  z-index: -1;
}

.section-about .container {
  position: relative;
  z-index: 2;
}

.content-wrapper {
  height: 100vh;
  width: 100%;
  background-color: #f4f4f4;
  position: relative;
  overflow: hidden;
}
.wysiwyg-content-2 h2 {
  visibility: hidden;
}

.wysiwyg-content-2 {
  overflow: hidden;
}

.section-abc {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
}

/* Trekking region list */
.trekking-region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 15px; */
  border-radius: 0;
  margin-bottom: 20px;
}
.trekking-region-list .list-group-item {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--graycolor);
  border: 1px solid #d1dbb0;
  padding: 5px 10px;
  margin-top: -1px;
  margin-left: -1px;
}
.trekking-region-list .list-group-item a {
  color: var(--blackcolor);
  text-decoration: none;
  font-weight: normal;
}
.trekking-region-list .list-group-item .wrap-price {
  font-weight: 400;
  font-size: 14px;
}
.trekking-region-list .list-group-item del {
  color: var(--graylight);
}
.trekking-region-list .list-group-item ins {
  color: var(--primarycolor);
  text-decoration: none;
}
.trekking-region-list .list-group-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 0;
}
.trekking-region-list .list-group-item:nth-child(2) {
  border-top-left-radius: 0;
  border-top-right-radius: 6px;
}
.trekking-region-list .list-group-item:nth-last-child(2):nth-child(odd) {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 0;
}
.trekking-region-list .list-group-item:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 6px;
}
.trekking-region-list .list-group-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.section-abc .trekking-region-list .list-group-item {
  border: 1px solid var(--accentborder);
}
.section-everest .trekking-region-list .list-group-item {
  border: 1px solid var(--grayborderdark);
}
.section-langtang .trekking-region-list .list-group-item {
  border: 1px solid var(--bg-langtang-border);
}
.section-manaslu .trekking-region-list .list-group-item {
  border: 1px solid var(--bg-manaslu-border);
}
.section-far .trekking-region-list .list-group-item {
  border: 1px solid var(--bg-farwestern-border);
}
.section-great .trekking-region-list .list-group-item {
  border: 1px solid var(--bg-greathimalayan-border);
}
/* Section Everest - Higher z-index to appear above ABC */
.section-everest {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
  z-index: 10000;
}

/* Section Langtang */
.section-langtang {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
  z-index: 10001;
}

/* Section Manaslu */
.section-manaslu {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
  z-index: 10002;
}

/* Section Far Western */
.section-farwestern {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
  z-index: 10003;
}

/* Section Great Himalayan */
.section-great {
  --progress: 0;
  --image-border-radius: 0px;
  overflow: hidden;
  will-change: transform, border-radius;
  transition: border-radius 0.3s ease;
  z-index: 10004;
}

.content-image {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  max-height: 600px;
  aspect-ratio: 0.9297971918876755;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.region-image img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
/* Perspective animation */
/* Popular treks */
.section-popular-treks {
  overflow: hidden;
}

.popular-treks-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
}

.popular-treks-list > div {
  flex-shrink: 0;
}

.popular-treks-swiper .swiper-slide {
  height: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  /* box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3); */
  transition: all linear 0.3s;
}
.hero:hover .hero-btn {
  background: var(--pureblack);
}
.hero-profile-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: all 0.5s ease;
}
.hero:hover .hero-profile-img {
  transform: scale(1.3) rotate(5deg);
}
.popular-image-wrapper {
  position: relative;
  overflow: hidden;
}
.hero-description-bk {
  background-image: linear-gradient(0deg, #3f5efb, #fc466b);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  padding: 1rem;
  position: relative;
}

.second .hero-description-bk {
  background-image: linear-gradient(
    -20deg,
    var(--blackcolor),
    var(--graycolor)
  );
}

.hero-logo {
  border-radius: 20px;
  background-color: var(--primarycolor);
  border: 1px solid var(--purewhite);
  overflow: hidden;
  padding: 0px 10px;
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--accentcolor);
  position: absolute;
  top: -18px;
}
.trek-type ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-logo img {
  height: 100%;
  width: auto;
}

.hero-description {
  color: #fff;
  flex-grow: 1;
}

.popular-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-btn {
  color: #fff;
  padding: 0.25rem 1rem;
  border: 1px solid #fff;
  border-radius: calc(var(--border-radius) / 2);
  transition: all 0.3s ease;
}

.hero-btn a {
  color: #fff;
  text-decoration: none;
}

.hero-date {
  color: #fff;
}
/* END CARD DESIGN */
/* Why choose us */
.section-why-choose-us {
  position: relative;
}

.section-why-choose-us .row {
  display: flex;
  flex-wrap: nowrap;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.section-why-choose-us .vh-100 {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 50%;
  align-self: flex-start;
  z-index: 10;
}

.vh-100 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.why-choose-us-content {
  padding: 4.375rem 5.194vw 4.375rem;
  width: 50%;
}

.why-choose-us-content ul {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.why-choose-us-content ul li {
  list-style: none;
  display: flex;
  border-top: 1px solid #e7e7e7;
  flex-wrap: wrap;
  font-size: 28px;
  padding: 15px 0;
  line-height: 50px;
  gap: 8px;
}
.why-choose-us-content ul li span:last-child {
  margin-left: auto;
}
.why-choose-us-content ul li:last-child {
  border-bottom: 1px solid #e7e7e7;
}
/* Our Expertise */
.section-expertise {
  background: #fbfbfb;
}
span.text-reveal {
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
span.text-reveal .char {
  transform: translateY(115px);
  transition: transform 0.5s;
}
/* Breadcrumbs */
.breadcrumbs h1 {
  font-size: 55px;
}
.section-breadcrumbs {
  z-index: 1;
}
.section-breadcrumbs::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 285px;
  background-color: var(--purewhite);
  z-index: -1;
}
.breadcrumbs-cat::before {
  background: transparent;
}
.general-breadcrumbs::before {
  background: transparent;
}
.breadcrumbs-cat h1 {
  font-size: 5rem;
  text-align: center;
  margin-top: 8rem;
}
.cat-breadcrumb-space {
  min-height: 530px;
}
.breadcrumbs-cat .breadcrumbs-bgimage img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  z-index: 1;
  position: relative;
}
.section-breadcrumbs ol li a {
  color: var(--whitecolor);
  text-decoration: none;
}
.breadcrumbs-bgimage {
  z-index: -1;
  padding: 0;
  pointer-events: none;
}
.breadcrumbs-bgimage img {
  width: auto;
}
.cat-image-video-wrapper {
  z-index: 999;
}
.section-breadcrumbs .page-thumbnail,
.section-breadcrumbs .page-thumbnail iframe {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.sidebar-widget {
  padding: 30px 10px;
  box-shadow: 0 8px 21px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 0;
  display: block;
  position: sticky;
  top: 100px;
}
.sidebar-widget ul {
  margin: 0;
  padding: 0;
}
.sidebar-widget li {
  display: block;
  width: 100%;
  margin: 16px 0 0 0px;
  padding: 0px 15px;
}
.sidebar-widget li a {
  display: block;
  width: 100%;
  color: #777;
  text-transform: capitalize;
  font-size: 1.143em;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0 0 16px;
  border-bottom: 1px dashed #c3c3c3;
  /* width: calc(100% - 15px); */
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.sidebar-widget li a:hover,
.sidebar-widget li.current-menu-item a {
  color: var(--primarycolor);
}
.trip-deatails {
  position: absolute;
  bottom: 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgb(255 255 255 / 40%) 100%
  );
  color: var(--purewhite);
  width: 100%;
}
.trip-deatails ul {
  display: flex;
  width: 100%;
}
/* Coupon Accordion */
.coupon-accordion-li {
  list-style: none;
  padding: 0 0 15px 0 !important;
  margin: 0px 15px 0 15px !important;
  border-bottom: 1px dashed #c3c3c3;
  width: calc(100% - 30px) !important;
}
.coupon-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}
.coupon-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: inherit;
  flex: 1;
}
.coupon-accordion-header:hover .coupon-label {
  color: var(--primarycolor, #2563eb);
}
.coupon-slide-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}
.coupon-slide-panel.open {
  max-height: 120px;
  padding-bottom: 10px;
}
.coupon-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.coupon-input-row input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--grayborder, #e2e8f0);
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.coupon-input-row input:focus {
  border-color: var(--primarycolor, #2563eb);
}
.coupon-input-row button {
  padding: 8px 16px;
  background: var(--primarycolor, #2563eb);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.coupon-input-row button:hover {
  opacity: 0.85;
}
.coupon-feedback {
  font-size: 12px;
  margin: 4px 0 0;
  min-height: 16px;
}
.coupon-feedback.success {
  color: #10b981;
}
.coupon-feedback.error {
  color: #ef4444;
}
#couponArrow.rotated {
  transform: rotate(180deg);
}
.trip-deatails ul li {
  width: 25%;
  padding: 50px 30px 30px;
}
.trip-details-item {
  background: #ffa700b3;
  border-radius: 6px;
  padding: 10px 10px;
  min-height: 90px;
  flex-direction: column;
}
.trip-details-item-icon {
  background: var(--secondarycolor);
  border-radius: 50%;
  border: 1px solid var(--secondarycolor);
  padding: 10px;
  margin-top: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trip-details-item-icon img {
  width: 30px;
  filter: brightness(0) invert(1);
}
.trip-details-item-content {
  display: flex;
  flex-direction: column;
}
.trip-details-item-content h4 {
  font-size: 20px;
  margin-bottom: 0;
}
.trip-details-item-content p {
  margin-bottom: 0;
}
.trip-details-item-content span {
  font-size: 30px;
  font-weight: bold;
}
/* About page */
.counter-left-image {
  height: 100%;
  will-change: transform;
}
.counter-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tan-counter-animation {
  background: var(--primarycolor);
  display: flex;
  flex-wrap: wrap;
  padding: var(--sectionpadding);
}
.tan-counter-animation .counter-item {
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
}
.tan-counter-animation .counter-item:nth-child(even) {
  border-right: none;
}
.tan-counter-animation .counter-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.tan-counter-animation .counter-item h2 {
  color: var(--purewhite);
  font-size: 5rem;
  font-weight: bold;
  font-family: "Work Sans", sans-serif;
}
.tan-counter-animation .counter-item p {
  color: var(--purewhite);
}
/* Team Page */
.about-ourteam {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--grayborder);
  position: relative;
  margin-bottom: 40px;
}
.about-ourteam .img-holder {
  display: block;
  overflow: hidden;
  position: relative;
}
.about-ourteam .img-holder img {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 100%;
}

.about-ourteam:hover .img-holder img {
  transform: scale(1.1);
}

.about-ourteam .text-holder {
  position: relative;
  display: block;
  padding: 25px 15px 11px;
}
.about-ourteam .text-holder:before {
  width: 100%;
  height: 3px;
  position: absolute;
  content: "";
  background: var(--primarycolor);
  left: 0;
  top: -1px;
}
.about-ourteam .text-holder:after {
  width: 100%;
  height: 3px;
  position: absolute;
  content: "";
  background: #222222;
  left: 0;
  top: -1px;
  transform: scaleX(0);
  transition: 0.5s ease;
}
.about-ourteam:hover .text-holder:after {
  transform: scaleY(1);
  transition: 0.5s ease;
}
.about-ourteam .text-holder .title {
  color: var(--primarycolor);
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin: 0 0 12px;
  transition: all 500ms ease;
}
.about-ourteam .text-holder .title:hover {
  color: #750000;
}
/* Contact form */
.contact-wrapper {
  width: 100%;
  -webkit-box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.18);
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Process Section */
.section-process {
  background-color: var(--purewhite);
}

.process-image.aspect-ratio-landscape {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--border-radius);
  will-change: transform;
}
.process-image.aspect-ratio-landscape img {
  height: 100%;
  object-fit: cover;
}
.process-content .step-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primarycolor);
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-content h2.section-heading {
  font-family: "Playfair Display", serif; /* Or theme's serif font */
  font-size: 2.5rem;
  color: var(--pureblack);
}

.process-content p {
  color: var(--graycolor);
  line-height: 1.8;
  font-size: 1rem;
}

.process-content .btn-link {
  text-decoration: none;
  color: var(--pureblack);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.process-content .btn-link:hover {
  color: var(--primarycolor);
}

.tan-counter-animation .counter-item h2 {
  color: var(--purewhite);
  font-size: 5rem;
  font-weight: bold;
  font-family: "Work Sans", sans-serif;
}
.tan-counter-animation .counter-item p {
  color: var(--purewhite);
}
/* Category trekking list */
.cat-trek-item {
  overflow: hidden;
  margin: 15px 0;
  position: relative;
  cursor: pointer; /* Ensure hover is triggered, helpful for touch/hybrid */
}

/* Background Image Element */
.cat-trek-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.5s ease;
  transform-origin: center center;
}

.cat-trek-item-block {
  align-items: flex-end;
  min-height: 355px;
  position: relative;
  color: var(--purewhite);
  overflow: hidden;
  padding: 2rem;
  z-index: 9; /* Ensure content is above bg */
}

.cat-trek-item-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 10%,
    rgba(9, 9, 121, 0) 100%
  );
  overflow: hidden;
}

.cat-trek-item-content {
  bottom: 25px;
}

.cat-trek-item-content p {
  margin-bottom: 0;
}

.cat-trek-item-block a {
  color: var(--purewhite);
}

/* Hover Effects */
.cat-trek-item:hover .cat-trek-bg,
.cat-trek-item:focus-within .cat-trek-bg {
  transform: scale(1.1) rotate(3deg); /* Zoom and Rotate */
}

/* Arrow Animation */
.cat-trek-item-block a i {
  transition: transform 0.3s ease;
  display: inline-block;
  background: var(--primarycolor);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.cat-trek-item:hover .cat-trek-item-block a i,
.cat-trek-item:focus-within .cat-trek-item-block a i {
  transform: translateX(-10px); /* Move a bit to the left */
}

/* Trek List Grid Layout (Dynamic Logic) */
.trek-list-wrapper {
  flex-wrap: wrap;
  gap: 30px !important; /* Override bootstrap gap-2 */
}

.trek-list-wrapper .cat-trek-item {
  margin: 0;
  flex-grow: 0;
  /* Base: 33.33% (For Counts 6, 9, 12... Mod 3 == 0) */
  width: calc(33.333% - 20px);
}

/* MOD 3 == 2 (Total 2, 5, 8, 11...) -> First 2 are 50% */
.trek-list-wrapper:has(> :first-child:nth-last-child(3n + 2))
  > .cat-trek-item:nth-child(-n + 2) {
  width: calc(50% - 15px);
}

/* MOD 3 == 1 (Total 4, 7, 10...) -> First 2 and Last 2 are 50% */
.trek-list-wrapper:has(> :first-child:nth-last-child(3n + 1))
  > .cat-trek-item:nth-child(-n + 2),
.trek-list-wrapper:has(> :first-child:nth-last-child(3n + 1))
  > .cat-trek-item:nth-last-child(-n + 2) {
  width: calc(50% - 15px);
}

/* EXCEPTION: Total 3 -> 1st 100%, Rest 50% */
.trek-list-wrapper:has(> :first-child:nth-last-child(3))
  > .cat-trek-item:first-child {
  width: 100%;
}
.trek-list-wrapper:has(> :first-child:nth-last-child(3))
  > .cat-trek-item:nth-child(n + 2) {
  width: calc(50% - 15px);
}

/* EXCEPTION: Total 1 -> 100% */
.trek-list-wrapper:has(> :first-child:nth-last-child(1)) > .cat-trek-item {
  width: 100%;
}
/* Loopline Wrapper */
.section-line-marquee {
  position: relative;
  width: 110%;
  z-index: 1;
}
.loop-line-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  font-size: 35px;
  padding: 50px 0;
  color: var(--purewhite);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.loop-line-wrapper .loop__item {
  flex-shrink: 0;
  display: inline-block;
}
.mqrquee-pink {
  background: var(--colorpink);
}
.mqrquee-blue {
  background: var(--colorpurple);
  transform: rotate(-3deg);
  margin-left: -2.75vw;
  margin-top: -2.75vw;
}
.sticky-menu-nav {
  background: var(--bg-farwestern-dark);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.sticky-menu-nav .nav-link {
  background-color: var(--whitecolor);
  color: var(--pureblack);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  padding: 6px 20px;
}
.sticky-menu-nav .nav-link:hover,
.sticky-menu-nav .nav-item.active .nav-link {
  background-color: var(--pureblack);
  color: var(--purewhite);
}
.sticky-menu-nav .nav-link:hover img,
.sticky-menu-nav .nav-item.active .nav-link img {
  filter: brightness(0) invert(1);
}

.sticky-menu-nav .nav-link img {
  width: 25px;
}
.fancybox__container {
  z-index: 999999 !important;
}
/* Gallery Grid Section */
.video-label-wrapper {
  position: relative;
}
.video-label-wrapper img {
  border-radius: 2rem;
}
.video-label {
  position: absolute;
  right: 20px;
  z-index: 99;
  bottom: 20px;
  background: var(--purewhite);
  border-radius: 300px;
  padding: 5px 5px 5px 30px;
}
.video-label a {
  color: var(--pureblack);
  text-decoration: none;
  display: flex;
  gap: 15px; /* Slight adjustment to gap */
  align-items: center;
}
.video-label i {
  background: var(--accentborder);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
}
.section-gallery {
  padding: var(--sectionpadding) 0;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin: 0;
}

.gallery-list li {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.gallery-list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-list li:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 60%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-list li:hover img {
  transform: scale(1.1);
}
.gallery-label::before {
  content: "+";
  left: -20px;
  margin-right: -15px;
  position: relative;
}
.gallery-label {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0px);
  bottom: 20px;
  color: var(--purewhite);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 0.5px;
  pointer-events: none;
  line-height: 20px;
  z-index: 2;
  white-space: nowrap;
}
.gallery-label-sm {
  font-size: 15.5px;
  position: relative;
  left: 5px;
}
/* Specific Grid Spaces matching the reference image */
.gallery-list li:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.gallery-list li:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-list li:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.gallery-list li:nth-child(4) {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.gallery-list li:nth-child(5) {
  grid-column: 5;
  grid-row: 1 / span 2;
}

/* Label Positions */
.gallery-list li:nth-child(1) .gallery-label {
  bottom: 30px;
  left: 30px;
}

.section-itinerary .general-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.trip-map {
  position: sticky;
  top: 100px;
}
.trip-map .map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -100%
  ); /* Center horizontally, sit on top of point vertically */
  font-size: 30px;
  color: var(--colorred);
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: auto;
  cursor: pointer;
}
.marker-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 250px;
  font-size: 14px;
  color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  text-align: left;
}
.marker-tooltip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
}
.marker-tooltip h5 {
  font-size: 16px;
  margin: 0 0 5px;
  color: var(--primarycolor);
  font-weight: 600;
}
.marker-tooltip p {
  font-size: 13px;
  margin: 0;
  color: #666;
  line-height: 1.4;
}
.marker-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.marker-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.trip-info-box {
  background: var(--infobg);
  border: 1px solid var(--infoborder);
  color: var(--blackcolor);
  font-size: 14px;
}
.trip-info-box .alert-heading {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
}
.trip-info-box .alert-heading img {
  width: 25px;
}
.itenerary-facts {
  background: var(--bg-farwestern-dark);
  border-radius: var(--border-radius);
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
}
.itenerary-facts .fact-item {
  width: 25%;
}
.itenerary-facts .fact-item span {
  font-size: 14px;
}
.itenerary-facts .fact-item p {
  font-size: 18px;
  margin-bottom: 0;
}
.itinerary-content h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.itinerary-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: var(--primarycolor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.itinerary-content h3.animate-border::after {
  transform: scaleX(1);
}
.itinerary-content em {
  display: block;
  font-style: normal;
  margin-bottom: 20px;
  color: var(--primarycolor);
  font-weight: 500;
}
/* Section Included Excludes */
.section-includes-excludes .slide-in-left {
  padding-right: 3rem !important;
}
.section-includes-excludes .slide-in-right {
  padding-left: 3rem !important;
}
.includes-excludes-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section-includes-excludes {
  background: #e8f5e9;
  background: linear-gradient(
    90deg,
    rgba(232, 245, 233, 1) 50%,
    rgba(255, 243, 224, 1) 50%
  );
}
.includes-excludes-content ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 25px;
}
.includes-excludes-content ul li {
  margin-bottom: 10px;
  position: relative;
}
.includes-excludes-content ul li::before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  top: 3px;
  right: calc(100% + 10px);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.2 11.52L3.44 7.76L4.56 6.64L7.2 9.28L13.92 2.56C12.4 1.04 10.32 0 8 0C3.6 0 0 3.6 0 8C0 12.4 3.6 16 8 16C12.4 16 16 12.4 16 8C16 6.48 15.6 5.12 14.88 3.92L7.2 11.52Z' fill='%2350B487'/%3E%3C/svg%3E%0A");
}
.includes-excludes-content ul.excludes li::before {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-0.000244141 8C-0.000244141 3.58171 3.58147 0 7.99976 0C12.418 0 15.9998 3.58171 15.9998 8C15.9998 12.4183 12.418 16 7.99976 16C3.58147 16 -0.000244141 12.4183 -0.000244141 8ZM6.52201 4.90643C6.29859 4.683 6.00626 4.57161 5.71398 4.57161C5.42169 4.57161 5.12937 4.683 4.90594 4.90643C4.45909 5.35329 4.45909 6.07565 4.90594 6.5225L6.38362 8.00018L4.90594 9.47786C4.45909 9.92472 4.45909 10.6471 4.90594 11.0939C5.1288 11.3168 5.42141 11.4288 5.71398 11.4288C6.00655 11.4288 6.29916 11.3168 6.52201 11.0939L7.99969 9.61625L9.47737 11.0939C9.70023 11.3168 9.99284 11.4288 10.2854 11.4288C10.578 11.4288 10.8706 11.3168 11.0934 11.0939C11.5403 10.6471 11.5403 9.92472 11.0934 9.47786L9.61576 8.00018L11.0934 6.5225C11.5403 6.07565 11.5403 5.35329 11.0934 4.90643C10.6466 4.45957 9.92423 4.45957 9.47737 4.90643L7.99969 6.38411L6.52201 4.90643Z' fill='%23FF6F56'/%3E%3C/svg%3E%0A");
}
/* Trip FAQ  */
.faq-sidebar {
  background: var(--accentcolor);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 10;
}
.faq-sidebar li > img {
  width: 24px;
  height: auto;
  margin-top: 3px;
}
.faq-section {
  scroll-margin-top: 100px;
}

.faq-sidebar::-webkit-scrollbar {
  width: 5px;
}
.faq-sidebar::-webkit-scrollbar-track {
  background: var(--accentdark);
}
.faq-sidebar::-webkit-scrollbar-thumb {
  background: var(--accentborder);
}
.faq-sidebar ul li {
  transition: all 0.3s ease;
  border-radius: 6px;
  /* line-height: 1.2; */
  display: flex;
  align-items: flex-start;
}
.faq-sidebar ul li a {
  color: var(--blackcolor);
  text-decoration: none;
}
.faq-sidebar ul li:hover,
.faq-sidebar ul li.faq-item-active {
  background: var(--accentdark);
  border-radius: 6px;
}

.accordion-heading {
  margin-bottom: 30px;
}
.faq-accordion .accordion-item {
  margin-bottom: 20px;
  border-bottom: none;
}
.faq-accordion .accordion-item ul,
.faq-accordion .accordion-item ol {
  padding-left: 20px;
}
.faq-accordion .accordion-item button {
  background: var(--infobg);
  border: 1px solid var(--infoborder);
  color: var(--blackcolor);
  border-radius: var(--border-radius) !important;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
}
.faq-accordion .accordion-item button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-item .accordion-body {
  box-shadow: 0px 0px 10px 0px #eaeaea !important;
  border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
}
/* Quote */
.quote-block {
  background: #efefef;
  position: relative;
  z-index: 999999;
}

/* Footer */
.whatapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 30px;
  padding: 0 5px;
  background: #25d366;
  border-radius: var(--border-radius);
  font-weight: 700;
  z-index: 99999;
  animation: oscillate-rotation 1s infinite ease-in-out;
}
.whatapp-btn a {
  color: var(--purewhite);
  text-decoration: none;
}
footer {
  position: relative;
  background: #e8f8ff;
  margin-top: -40px;
  padding-top: var(--sectionpadding);
}

.footer-top .card-contact .card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  border: none;
  border-radius: 24px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.footer-top .card-contact .card:hover {
  scale: 1.02;
}
.footer-top .card-contact .card .card-img {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 0px;
  width: 100%;
  border-radius: calc(1rem - 1px);
  margin: 0;
}

.footer-top .card-contact {
  -webkit-box-align: stretch;
  align-items: stretch;
  margin-bottom: 1rem;
}
.footer-top .card-contact .card .card-body {
  position: relative;
  color: rgb(255, 255, 255);
  z-index: 2;
  padding: 9vmin 4vmin;
}
.footer-widget {
  color: #000;
}
.footer-widget h3,
.footer-widget h4 {
  margin-top: 0px;
  margin-bottom: 1rem;
}
.footer-widget ul li {
  list-style: none;
  line-height: 30px;
  display: flex;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.footer-widget ul li > i {
  margin-top: 8px;
}
.footer-widget ul li a {
  color: var(--purewhite);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer-widget:not(.address-block) ul li a::before {
  content: "\f178";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  margin-right: 10px;
  font-size: 0.9em;
  color: var(--purewhite);
  transition: all 0.3s ease;
}
.footer-widget:not(.address-block) ul li:hover a {
  color: var(--primarycolor);
  transform: translateX(10px);
}
.footer-widget:not(.address-block) ul li:hover a::before {
  color: var(--primarycolor);
}
.copyright p {
  margin-bottom: 0;
}

.powered {
  float: right;
}
.powered a {
  color: var(--purewhite);
  text-decoration: none;
}

.scrollup {
  padding: 10px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: none;
  background-color: #999;
}
.full {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta {
  background-image: url("../assets/images/footer-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 80%;
  height: 80%;
  border-radius: 24px;
  min-height: 400px;
}

.hero-card .card-body {
  position: absolute;
  right: 10%;
  width: 500px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.hero-card .card-body h2 {
  color: var(--purewhite);
}
.footer-btm {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-btm a {
  text-decoration: none;
}
.footer-content > *,
.footer-content a {
  color: var(--purewhite);
}
.btm-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #00000080;
  z-index: 10;
}
/* Social Box - Now a UL */
.tan-social-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1.25rem;
  list-style: none;
}

/* Items */
.tan-social-box .tan-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  aspect-ratio: 1;
  font-size: 1.5rem;
  color: #c5c5c5;
  background-color: #242529;
  border-radius: 50%;
  transition:
    color 0.15s ease-in,
    box-shadow 0.75s cubic-bezier(0.74, 0.01, 0.02);
  text-decoration: none;
}

.tan-social-box .tan-item svg {
  transition: transform 0.75s ease-in-out;
}

/* --- TOOLTIP STYLES --- */
.tan-tooltip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background-color: var(--tan-tooltip-bg);
  color: var(--tan-tooltip-text);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 10;
}

.tan-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--tan-tooltip-bg) transparent transparent transparent;
}

.tan-social-box .tan-item:hover .tan-tooltip {
  top: -60px;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* --- ANIMATION --- */
@property --tan-fill-color {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}

.tan-social-box .tan-item:hover {
  color: var(--primarycolor);
  --tan-fill-color: 100%;
}

.tan-social-box .tan-item:hover svg {
  transform: scale(1.25);
}

.tan-social-box .tan-item::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    var(--primarycolor) var(--tan-fill-color),
    transparent var(--tan-fill-color)
  );
  transition: --tan-fill-color 0.75s ease-in-out;
}
/* responsive */
.footer-button {
  background: #000 none repeat scroll 0 0;
  border-top: 1px solid #111;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 999999;
  display: none;
}
.footer-bar {
  margin: 0;
  overflow: hidden;
  padding-left: 0;
}
.footer-bar li {
  border-right: 1px solid #111;
  float: left;
  list-style: outside none none;
  padding: 8px 0;
  text-align: center;
  width: 25%;
}
.footer-bar li a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.footer-bar li {
  list-style: outside none none;
  text-align: center;
}
.cursor-pointer {
  cursor: pointer;
}

/* Popup  CSS */
.tan-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.tan-popup {
  display: none;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 60%;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 99999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.tan-popupshown .tan-popup {
  display: block;
  animation: tan-slideDown 0.3s ease-out;
}

@keyframes tan-slideDown {
  from {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.tan-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0;
  font-size: 1.25rem;
  border-bottom: 1px solid #dee2e6;
}

.tan-popup-body {
  padding: 1rem;
}
.tan-popup-body figure {
  margin: 0;
}
.tan-popup-close-button {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.5;
  color: #000;
}

.tan-popup-close-button:hover {
  opacity: 1;
}

body.tan-popupshown {
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .gallery-list {
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: 200px !important;
    gap: 15px !important;
  }
  .gallery-list li:nth-child(1),
  .gallery-list li:nth-child(4),
  .gallery-list li:nth-child(5) {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
  .gallery-list li:nth-child(1) .gallery-label {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
  }
}

@media only screen and (max-width: 575px) {
  .gallery-list {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 250px !important;
  }
  .gallery-list li {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Sidebar Price Alignment */
#sidebar li p a {
  display: flex;
  align-items: center;
}
#sidebar li p a span {
  margin-left: auto;
}

#sidebar li p.total-row a {
  color: var(--primarycolor);
  font-weight: 700;
  font-size: 1.1em;
}
/* Fix GSAP Pinning Width Issue */
.pin-spacer,
.pin-spacer > * {
  width: 100% !important;
  max-width: 100% !important;
}
