@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/fontawesome.min.css');




:root {
  --theme-clr: #e1b771;
  --link-clr: #e1b771;
  --text-dark: #000000;
  --text-light: #232323;
  --btn-bg: #e1b771;
  --btn-bg-hover: #111111;
  --primary-textclr: #111111;
  --bgdark: #070036;
  --bglight: #f9f9f9;
  --whiteclr: #ffffff;
  --borderclr: #eee;
  --tgreen: #070036;
  --primary-font: 'League Spartan', sans-serif;
  --secondary-font: 'Inter', sans-serif;
  --fsbody: 15px;
}


@media (prefers-color-scheme: dark) {}

.tcolor {
  color: var(--link-clr);
}

.bg-site {
  background-color: var(--bgdark);
  color: var(--whiteclr);
}

.bg-light {
  background-color: var(--bglight) !important;
}

.bg-dark {
  background-color: var(--bgdark) !important;
  color: var(--whiteclr);
}

.text-light {
  color: var(--text-light);
}

.bg-theme {
  background-color: var(--theme-clr);
}

.fs-20 {
  font-size: 20px;
}

.fs-30 {
  font-size: 30px;
}

.tgreen {
  color: var(--tgreen);
}

body {
  font-family: var(--secondary-font);
  font-size: var(--fsbody);
  font-weight: 400;
  color: var(--primary-textclr);
  line-height: 1.7;
  padding-top: 0;
}


a {
  color: var(--link-clr);
  text-decoration: none;
  outline: none;
}

a,
.btn,
button {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

a:hover {
  color: var(--btn-bg-hover);
  text-decoration: none;
}

.fancybox-button {
  min-width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.main-section a.link {
  word-break: break-all;
  overflow: hidden;
  display: inline-block;
}

a.link i {
  font-size: 11px;
}

h1 {
  font-size: 45px;
}

h2,
.heading-h2 {
  font-size: 45px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 16px;
}

img {
  max-width: 100%;
}

button,
.btn,
input[type="submit"] {
  min-width: 137px;
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  font-family: var(--secondary-font);
  box-shadow: none !important;
  color: var(--whiteclr);
  background: var(--btn-bg);
  letter-spacing: 0;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  border-radius: 25px;
  text-transform: capitalize;
  border: 0px;
}


@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

[type=reset]:hover,
[type=submit]:hover,
button:hover,
.btn:hover,
html [type=button]:hover {
  background: var(--btn-bg-hover);
  color: var(--whiteclr);
  cursor: pointer;
}

[type=reset]:focus,
[type=submit]:focus,
button:focus,
.btn:focus,
html [type=button]:focus {
  outline: 0;
  box-shadow: none;
}

input[type="file"] {
  font-size: 16px;
  -webkit-appearance: none;
}

.field {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}

.field-sm {
  float: left;
  width: 50%;
  padding: 0px 10px;
}

.field .field-sm:first-child {
  padding-left: 0px;
}

.field .field-sm:last-child {
  padding-right: 0px;
}

form {
  display: inline-block;
  width: 100%;
}

.form-control {
  outline: none !important;
  padding: 14px 15px;
  border-radius: 4px;
  border: 1px solid var(--bgdark);
  background: var(--whiteclr);
  box-shadow: none !important;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--secondary-font);
}

textarea.form-control {
  min-height: 91px;
}

.form-control:focus {
  background-color: transparent;
  border-color: inherit;
}

select.form-control:not([size]):not([multiple]) {
  height: 49px;
  -webkit-appearance: none;
  background-image: url(../images/select-arrow.png);
  background-position: 95% center;
  background-repeat: no-repeat;
}

blockquote {
  padding: 25px 48px 25px 25px;
  border-left: 4px solid #000;
  background: var(--bgdark);
  font-weight: 400;
  position: relative;
  line-height: 28px;
}

blockquote strong {
  font-weight: 500;
}

blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 41px 41px 0;
  border-color: #ddd #fff;
  transition: all ease .5s;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.sm-container {
  padding: 0px 85px;
}

.vam {
  vertical-align: middle;
}

/* nochange*/

.font-medium {
  font-weight: 500;
}

.underline {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.font-semi-bold {
  font-weight: 600;
}

button i {
  vertical-align: middle;
}

.br-5 {
  border-radius: 5px;
}

.br-10 {
  border-radius: 10px;
}

.box-shadow {
  box-shadow: 5px 5px 10px rgb(0 0 0 / 6%);
}

.object-fit {
  overflow: hidden;
}

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

.zoom-hover img {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition: all .5s;
}

.zoom-hover:hover img {
  transform: scale(1.1);
}

.list-style {
  padding: 0px;
  list-style: none;
}

.list-style li {
  display: inline-block;
}


.white-placeholder .form-control::placeholder {
  color: var(--whiteclr);
  opacity: 1;
}

.white-placeholder .form-control::-webkit-input-placeholder {
  color: var(--whiteclr);
  opacity: 1;
}

.white-placeholder .form-control::-moz-placeholder {
  color: var(--whiteclr);
  opacity: 1;
}

.white-placeholder .form-control:-ms-input-placeholder {
  color: var(--whiteclr);
  opacity: 1;
}

.white-placeholder .form-control:-moz-placeholder {
  color: var(--whiteclr);
  opacity: 1;
}


.main-section {
  padding: 60px 0px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  position: relative;
}

.main-section .container {
  position: relative;
}

.main-section:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100% !important;
  height: 100% !important;
  background: transparent;
}






/* header */

.header {
  background-color: var(--whiteclr);
  position: relative;
  z-index: 99;
  width: 100%;
}

/*.header.sticky { top: -43px; animation: slide-down 0.7s;   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
background-color: var(--whiteclr);}
.header.sticky .menu ul.list-style li a{color: var(--primary-textclr);}*/
.header-bar a {
  color: var(--primary-textclr);
}

.header-bar ul li a {
  border-right: 1px solid rgb(255 255 255 / 32%);
  padding-right: 10px;
  margin-right: 10px;
  color: var(--whiteclr);
}

.header-bar ul li:last-child a {
  border: 0px;
  padding-right: 0px;
  margin-right: 0px;
}

.header-bar .top-right ul {
  margin: 0px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-bar {
  padding: 5px 0px;
  position: relative;
  border-bottom: 1px solid var(--borderclr);
}

.offer-tagline {
  line-height: 1;
}

.header-bar a i {
  color: var(--link-clr);
  font-size: 20px;
  vertical-align: middle;
}

.help-btn a.btn i {
  vertical-align: middle;
}

.list-style li.header-social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-style li.header-social-icon a {
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whiteclr);
  border-radius: 100%;
}

.list-style li.header-social-icon a i {
  font-size: 14px;
}

.list-style li.header-social-icon a:hover {
  background-color: var(--theme-clr);
}

.header-bar .header-social-icon a:hover i {
  color: var(--whiteclr);
}

.site-logo {
  max-width: 130px;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.menu ul.list-style li {
  margin-right: 10px;
  font-size: 13px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu ul.list-style li:last-child {
  margin-right: 0;
}

.menu ul.list-style li a {
  color: var(--primary-textclr);
  text-transform: uppercase;
}

.menu ul.list-style>li>a {
  padding: 12px 10px;
  display: inline-block;
}

.header-nav {
  position: relative;
}

.menu ul.list-style li>ul {
  border-top: 3px solid var(--btn-bg);
  border-radius: 20px;
  position: absolute;
  left: 0px;
  width: 200px;
  padding: 0px;
  text-align: left;
  background: #fff;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  padding: 15px 10px;
  box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.menu ul.list-style li:hover>ul {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.menu ul.list-style li ul li {
  margin: 0px;
  display: inline-block;
  width: 100%;
}

.menu ul.list-style li ul li a {
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--text-dark);
}

.menu ul.list-style li ul li:hover>a {
  color: var(--link-clr);
}

/* for header iundeline and bg*/
.header-main .container-inner {
  padding-inline: 30px;
}

.header-main {
  background-color: var(--bgdark) !important;
}

.header_right {
  justify-content: space-between;
}

.menu ul.list-style>li>a {
  color: var(--whiteclr);
  align-items: center;
  display: flex;
}

.header-nav,
.header-nav .menu,
.menu>ul,
.menu>ul li,
.menu>ul>li>a {
  height: 100%;
}

.menu ul.list-style>li>a:after {
  content: "";
  width: 0px;
  height: 3px;
  background: var(--theme-clr);
  transition: all .5s;
  position: absolute;
  inset-block-end: 0px;
  inset-inline-start: 0;
}

.menu ul.list-style>li>a {
  position: relative;
}

.menu ul.list-style>li:hover>a:after {
  width: 100%;
}


@media (max-width: 1024.98px) {


  .mobile-menu {
    background: var(--bgdark) !important;
    color: var(--whiteclr);
  }

  .mobile-menu * {
    color: var(--whiteclr) !important;
  }

  .cross span {
    background: var(--whiteclr) !important;
  }

  .header-nav .menu {
    align-items: center;
    display: flex;
  }

  .toggle-mobile span {
    background: var(--whiteclr) !important;
  }

}

@media (max-width: 767.98px) {

  .header-main .container-inner {
    padding-inline: 15px;
  }

}

/*end header underline bg*/
.client-logoSection .item img {
  max-width: 150px;
  margin: auto;
}

.client-logoSection .item {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 10px;
}

.client-logoSection .sliderSection+.sliderSection {
  margin-top: 50px;
}

.header-main .container-inner {
  padding-inline-start: 30px;
}

.header_right {
  border-radius: 50px 0px 0px 50px;
  background: var(--bgdark);
  padding: 10px 35px 10px 20px;
  display: flex;
  align-items: center;
  gap: 45px;
  min-width: 290px;
  box-sizing: border-box;
}

.header_call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex-wrap: wrap;
  color: var(--whiteclr);
}

.userIconMain {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whiteclr);
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.header_call:after {
  position: relative;
  right: -22.5px;
  content: '';
  width: 0.5px;
  height: 32px;
  background: var(--whiteclr);
}

.header_call p span {
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.125px;
}

header .header_call p small {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  display: block
}

h5.loginHead {
  color: var(--whiteclr);
  font-weight: 500;
  margin-top: 10px;
  font-size: 15px;
}

.header_right .user_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #002259;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_right .user_icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.header_right * {
  margin-block-end: 0px;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

/* .hero-section { height: calc(100dvh - 144px);   position: relative;  overflow: hidden;   display: flex; 
    align-items: center;    justify-content: center;   min-height: 480px;}
.videoPosition {   position: absolute; inset: 0px;  width: 100%;   height: 100%;}
.videoPosition video {  position: absolute;   top: 0px;  left: 0px;  min-width: 100%;  width: auto;    height: 100%;
        object-fit: cover;       -webkit-transition: opacity .3s linear 1s;    -o-transition: opacity .3s linear 1s;
    transition: opacity .3s linear 1s;}
.hero-section .container { position: relative; z-index: 1; text-align: center; color: #fff;   } 
.hero-section h1 { color: #fff; font-size: 75px; } 
.hero-section p { font-size: 24px; } */
/* ===============================
   PREMIUM LUXURY HERO SLIDER
================================ */

.hero-section {
  height: calc(100dvh - 144px);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image with zoom animation */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-in-out;
}

.swiper-slide-active img {
  transform: scale(1.08);
}

/* Luxury dark gradient */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
} */

/* Content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  color: #ecc309;
}

.hero-content-inner {
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.swiper-slide-active .hero-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff
}

.hero-content p {
  font-size: 22px;
  margin: 20px 0;
  opacity: 0.9;
}

/* Premium Button */
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Pagination Styling */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #d4af37;
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* Mobile Layout */
@media (max-width:768px) {

  .membership-card {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
    gap: 12px;
  }

  /* Card Image */
  .card-img {
    width: 120px;
    margin: auto;
  }

  .card-img img {
    width: 100%;
  }

  /* Title */
  .card-details h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  /* Description */
  .card-details p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Button */
  .apply-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

}

@media (max-width:480px) {

  .membership-card {
    padding: 15px 14px;
    border-radius: 12px;
  }

  .card-img {
    width: 100px;
  }

  .card-details h3 {
    font-size: 16px;
  }

  .card-details p {
    font-size: 13px;
  }

  .apply-btn {
    padding: 9px 18px;
    font-size: 13px;
  }

}

.offer-bx {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: var(--bgdark);
  color: var(--whiteclr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  font-size: 18px;
  border: 2px dotted var(--whiteclr);
}

.offer-bx span {
  font-size: 25px;
}

.d-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-item {
  border: 1px solid var(--borderclr);
  padding: 25px;
  border-radius: 15px;
}

.gitem_icon {
  flex: 0 0 45px;
  font-size: 30px;
  line-height: 1.2;
}

.grid-item-content h5 {
  font-weight: 400;
  margin-block-end: 5px;
}

.grid-item-content p:last-child {
  margin-block-end: 0px;
}

.experience-badge {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  background: url(../images/circle-shape.svg);
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 200px;
  height: 200px;
}

.rightimg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding-right: 50px;
}

.md-image {
  border-radius: 155px;
  overflow: hidden;
  height: 65%;
  position: absolute;
  z-index: 1;
  inset-block-start: 0px;
  inset-inline-end: 0px;
  width: 100%;
}

.small-image {
  border-radius: 100%;
  overflow: hidden;
  width: 250px;
  height: 250px;
}

.about-img1 {
  position: relative;
  width: 500px;
  height: 550px;
  border-radius: 155px;
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
}

ul.iconlist {
  list-style: none;
  padding-inline-start: 0px;
  margin-block-end: 20px;
}

ul.iconlist li:before {
  font-family: remixicon !important;
  content: "\eb81";
  color: var(--link-clr);
}

ul.iconlist li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block-end: 5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.experience-badge small {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.experience-badge h4 {
  font-size: 60px;
}

.location_item.object-fit {
  height: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.location_item_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(0deg, rgb(0 0 0 / 38%), transparent);
}

.location_item_overlay h5 {
  font-size: 16px;
  padding: 20px;
}


.year-box {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--whiteclr);
}

@property --angle {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

.year-box::after {
  width: 100%;
  content: '';
  position: absolute;
  background-image: conic-gradient(from 0deg, var(--btn-bg) var(--angle), transparent 0 100%);
  border-radius: inherit;
  padding: 5px;
  z-index: -1;
  box-sizing: content-box;
  height: 100%;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  animation-name: move;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes move {
  to {
    --angle: 70%;
  }
}






.cta-section video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.cta-section h3 {
  font-size: 55px;
  font-weight: 900;
  text-shadow: 1px 2px 2px var(--primary-textclr);
}

.item.video_item {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 5px;
}

.item.video_item iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.year-box {
  margin: auto;
  width: 170px;
  height: 170px;
  line-height: 170px;
  text-align: center;
  display: flex;
  align-items: center;
  border-radius: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.year-box h4,
.year-box h3 {
  margin: 0px;
  color: var(--link-clr);
}

.tablist-section .nav-tabs .nav-link {
  border: 0px !important;
  background: transparent !important;
  font-weight: 700;
  color: var(--primary-textclr);
}

.tablist-section .nav-tabs .nav-link.active {
  color: var(--link-clr);
}

.year-box:before {
  background-color: var(--borderclr);
  content: "";
  position: absolute;
  border-radius: 100%;
  box-sizing: content-box;
  padding: 5px;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


/* owl */
.owl-dots button:before,
.owl-dots button:after,
.owl-dots button span:before,
.owl-dots button span:after {
  display: none;
}

.owl-dots {
  height: auto !important;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  background: transparent !important;
}

.owl-dots button {
  background-color: var(--bgdark) !important;
  overflow: hidden;
  display: inline-block;
  min-width: auto !important;
  margin-right: 7px;
  width: 25px;
  height: 7px;
  border: 1px solid var(--whiteclr) !important;
  border-radius: 5px;
}

.owl-dots button.owl-dot.active {
  background: var(--theme-clr) !important;
}

.owl-dots button {
  box-shadow: none !important;
  outline: none !important;
}

.owl-nav button {
  width: 50px;
  min-width: auto;
  height: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--whiteclr) !important;
  color: var(--whiteclr) !important;
  pointer-events: all;
}

.owl-nav button span {
  position: absolute;
  z-index: 1;
  min-width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 20px;
}

.owl-nav .fa-angle-right:before {
  font-family: 'remixicon' !important;
  content: "\ea6e";
}

.owl-nav .fa-angle-left:before {
  font-family: 'remixicon' !important;
  content: "\ea64";
}

.owl-carousel .owl-item img {
  width: auto;
}

.related-package-item img {
  display: block;
  border-radius: 10px;
  margin-bottom: 10px;
  height: 280px;
  width: 100% !important;
}

.related-package h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.2;
  color: #223645;
}

.related-package p {
  line-height: 1.6;
  margin: 0 0 15px;
  word-wrap: break-word;
}

.related-package-slide {
  margin-bottom: 30px;
  position: relative;
}

.related-package-item h3 {
  position: absolute;
  right: 0px;
  top: 254px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  left: 0px;
  padding: 0px 10px;
  margin: 0 0 15px;
  line-height: 1.2;
}

.related-package-item h4 {
  position: absolute;
  right: 0px;
  left: 0px;
  padding: 0px 10px;
  bottom: 30px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.related-package-item {
  padding: 10px;
}

.related-package-slide .owl-carousel .owl-item img {
  width: 100% !important;
}

button.owl-dot {
  position: relative;
  display: inline-block;
  padding: 0;
  cursor: pointer;
  width: auto;
  height: auto;
  margin: 0 6px;
  background-color: unset !important;
  border: 0 !important;
}

.owl-dot span {
  background-color: #c6c6c6;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  display: block;
}

.owl-dot.active span {
  background-color: #e66a23;
}

.owl-dot:hover span {
  background-color: #e66a23;
}

/* properties page */

.post-item {
  padding: 15px;
}

.article-post {
  background: #fff;
  -webkit-transition: all .35s;
  transition: all .35s;
  max-width: 500px;
  margin: 0 auto 30px;
  padding: 15px;
  -webkit-box-shadow: 0px 10px 20px 0px rgb(76 76 76 / 10%);
  box-shadow: 0px 10px 20px 0px rgb(76 76 76 / 10%);
  border: 1px solid rgba(0, 0, 0, .036);
  border-radius: 10px;
}

.post-img {
  height: 272px;
  position: relative;
  border-radius: 8px;
}

.article-post-content {
  position: relative;
  padding: 15px 20px 15px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.article-post-content h4 {
  font-size: 22px;
  font-weight: 700;
}

.shortdec a.link {
  color: #82828a;
  font-size: 12px;
}

.shortdec a.link i {
  color: #e66a23;
  vertical-align: middle;
}

.shortdec a.link:hover {
  letter-spacing: 1.5px;
}



/*   ====   Contact Page  =======   */

.inner-baner-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  position: relative;
  min-height: 446px;
}

.inner-contact-wrap .container {
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
}

.inner-baner-container:before {
  content: "";
  display: block;
  opacity: 0.65;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.inner-banner-content {
  padding-top: 220px;
  padding-bottom: 150px;
  position: relative;
  color: var(--whiteclr);
  min-height: 436px;
}

h1.page-title {
  color: var(--whiteclr);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 800;
}

.inner-contact-wrap {
  padding-bottom: 55px;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading .sub-title {
  color: #e66a23;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-heading .section-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 800;
  color: #223645;
}

.section-heading p {
  font-size: 16px;
  color: #626672;
  line-height: 24px;
}

.social-icon ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
}

.inner-contact-wrap .social-icon li {
  margin: 0 5px;
}

.inner-contact-wrap .social-icon a {
  font-size: 16px;
  transition: color 0.4s;
  color: #ffffff !important;
  margin-right: 10px;
  background-color: #ee82c8;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  display: block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.inner-contact-wrap .contact-map {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
}

iframe {
  display: block;
  width: 100%;
}

.inner-contact-wrap .contact-map iframe {
  display: block;
}

.primary-bg {
  background-color: #4bebff;
}

.contact-from-wrap {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 60px 40px;
}

form {
  display: inline-block;
  position: relative;
  width: 100%;
}

.contact-from-wrap .contact-from p {
  margin: 0 0 15px;
  margin-bottom: 30px;
  line-height: 1.6;
  word-wrap: break-word;
}

.contact-from-wrap .contact-from label {
  color: #ffffff;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: normal;
}

input[type=email],
input[type=text] {
  height: 55px;
  background-color: #F8F8F8;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-size: 14px;
  padding: 0 15px;
}

.contact-from-wrap .contact-from input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  width: 100%;
}

textarea {
  background-color: #F8F8F8;
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-size: 14px;
  padding: 20px 10px;
  width: 100%;
  overflow: auto;
  line-height: 1.15;
}

.contact-from-wrap .contact-from p:last-child {
  margin-bottom: 0;
}

.contact-from-wrap .contact-from input[type=submit] {
  font-weight: 400;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #e66a23;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 100%;
  padding: 15px 30px;
  text-align: center;
  cursor: pointer;
}

.contact-from-wrap .contact-from input[type=submit]:hover {
  border-color: #174B90;
  background-color: #174B90;
}

input[type=email]:focus,
input[type=text]:focus,
textarea:focus {
  border-color: #e66a23;
  outline: 0 !important;
}

.bg-light-grey {
  background-color: #F8F8F8;
}

.contact-details-section {
  padding-top: 100px;
  padding-bottom: 70px;
}

.icon-box {
  text-align: center;
  padding: 0 40px;
  /*    margin-bottom: 40px;*/
}

.contact-details-section .border-icon-box {
  border: 1px solid rgba(58, 120, 201, 0.16);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.icon-box-content h4 {
  margin: 0 0 15px;
  line-height: 1.2;
  font-size: 25px;
  font-weight: 600;
  color: #223645;
}

.contact-details-section .icon-box ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}

.contact-details-section .icon-box li {
  list-style: none;
  margin-bottom: 5px;
  color: #626672;
}

.contact-details-section .icon-box li:last-child {
  margin-bottom: 0;
}

.contact-details-section .icon-box li a {
  color: #626672;
  text-decoration: none;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

/* ====  Discover Our Destinations ==== */

.Discover {
  position: relative;
  overflow: hidden !important;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  padding-top: 120px;
  background-image: url('../images/Discover-Our-Destinations/discover-bg-h.jpg');
}

.Discover-Destinations-title {
  margin-bottom: 49px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  text-align: center;
}

.Discover-Destinations-title p {
  display: block;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  font-family: "Montez", cursive;
  position: relative;
  margin-bottom: -4px;
  -webkit-font-smoothing: antialiased;
  color: #ffffff;
}

.Discover-Destinations-title h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.327;
  text-transform: none;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  font-family: "Manrope", sans-serif;
}

.Discover-our {
  position: relative;
}

.Discover-our .owl-stage {
  padding: 25px 0;
}

.Discover-our .owl-item {
  position: relative;
}

.img-fix-group {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.img-fix-group-img {
  position: relative;
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.img-fix-group-img:before {}

.img-fix-group-img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, rgba(4, 4, 4, 0) 44.5%, rgba(13, 13, 12, 0.6) 100%);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0) 44.5%, rgba(13, 13, 12, 0.6) 100%);
  border-radius: 24px;
  z-index: 10;
}

.img-fix-group-img:after {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.img-fix-group-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 1.3s all ease;
  transition: 1.3s all ease;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
}

.img-fix-group-content {
  position: absolute;
  bottom: 34px;
  z-index: 999;
  text-align: center;
  width: 100%;
  padding-inline: 15px;
}

.img-fix-group-content h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.417;
  margin-top: -0.32em;
  top: auto;
  left: auto;
  right: auto;
  position: relative;
  padding: 0;
}

.img-fix-group-content h3 a {
  color: #ffffff;
  text-decoration: none;
}

.img-fix-group-content p {
  color: #ffffff;
  display: block;
  margin: 0 0 18px 0;
  line-height: 1.75;
}

.img-fix-group-img:hover img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.img-fix-group-img:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.img-fix-group:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.img-fix-group:hover .img-fix-group-img {
  border-color: #ffffff;
}

/* =====  Testimonials ====== */

.sidebar.text-center.Testimonials {
  text-align: left !important;
  z-index: 2;
  position: relative;
  background-color: #E9F6F9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url('../images/testimonial/shape_bg_1.png');
}

.left-test-img-group {
  margin-left: -25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.left-test-img-group div {
  border-radius: 150px 0 150px 0;
}

.left-test-img-group .img-2 {
  position: relative;
  z-index: 2;
  margin-left: -45px;
}

.left-test-img-group div img {
  max-width: 100%;
  height: auto;
  border-radius: 150px 0 150px 0;
  border: 10px solid #ffffff;
}

.Testimonials-title {
  position: relative;
  margin-bottom: 40px;
}

.Testimonials-title p {
  margin: 0;
  display: block;
  color: #113D48;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  position: relative;
  margin-bottom: -4px;
}

.Testimonials-title h3 {
  font-size: 48px;
  line-height: 1.327;
  margin-bottom: 22px;
  color: #113D48;
  text-transform: none;
  font-weight: 700;
}

.Testimonials-our .related-package-item h3 {
  position: static;
  font-weight: 500;
  font-size: 20px;
  color: #0D0D0C;
  margin-bottom: 20px;
  line-height: 1.75;
  padding: 0;
}

.Testimonials-our .related-package p {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
  margin-bottom: 0;
  color: #113D48;
}

.Testimonials-our .related-package-item span {
  font-weight: 400;
  font-size: 16px;
  color: #6E7070;
  display: block;
  margin-bottom: 10px;
}

.Testimonials-our .owl-carousel .owl-nav {
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.Testimonials-our .owl-carousel .owl-nav button {
  display: inline-block;
  padding: 0;
  background-color: #ffffff;
  border-radius: 48px;
  color: #1CA8CB;
  top: 50%;
  margin-top: calc(var(--icon-size, 56px) / -2);
  z-index: 3;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  --pos-x: 0;
  margin-top: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: 1px solid #113D48 !important;
  box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
  width: 88px;
  height: 56px;
}

.Testimonials-our .owl-carousel .owl-nav .fa-angle-left:before {
  content: "";
  display: block;
  background-image: url('../images/testimonial/left-arrow2.svg');
  background-size: contain;
  width: 20px;
  height: 20px;
}

.Testimonials-our .owl-carousel .owl-nav .fa-angle-right:before {
  content: "";
  display: block;
  background-image: url('../images/testimonial/right-arrow2.svg');
  background-size: contain;
  width: 20px;
  height: 20px;
}

/*===========  Fade IN Out  ==========  */
.sidebar.text-center.fadeinoutslider {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-image: url('../images/fade-in-ot/hero_bg_5_1.png');
  margin-bottom: 7px;
}

.sidebar.text-center.fadeinoutslider:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(192.5deg, rgba(13, 13, 12, 0.7) 4.1%, rgba(0, 0, 0, 0.3) 96.33%);
  background: linear-gradient(257.5deg, rgba(13, 13, 12, 0.7) 4.1%, rgba(0, 0, 0, 0.3) 96.33%);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
  -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.right-side-anim {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 22.5%;
  right: 10%;
}

.right-side-anim-img1 {
  /* opacity: 0; */
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}

.right-side-anim-img1 {
  position: relative;
  border-radius: 300px;
  min-width: 274px;
  height: 416px;
  z-index: 2;
}

.right-side-anim-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px;
  border: 10px solid var(--whiteclr);
}

.right-side-anim-img2 {
  border-radius: 300px;
  min-width: 327px;
  height: 496px;
  margin-left: -50px;
}

.right-side-anim-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px;
  border: 10px solid var(--whiteclr);
}

.left-side-anim {
  padding: 303px 0 307px 0;
  max-width: 730px;
  text-align: left;
}

.left-side-anim h1 {
  text-transform: none;
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 80px;
  line-height: 1.18;
  color: var(--whiteclr);
}

.left-side-anim p {
  margin: 0 0 18px 0;
  color: #ffffff;
  line-height: 1.75;
  font-size: 18px;
  max-width: 703px;
  margin-bottom: 38px;
}

.fadeinoutslider-button {
  position: relative;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.fadeinoutslider-button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: capitalize;
  border: none;
  font-size: 16px;
  font-weight: 400;
  padding: 18.8px 35px;
  border-radius: 48px;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  gap: 8px;
  background-color: transparent;
  border: 1px solid var(--whiteclr);
}

.fadeinoutslider-button a:before {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: var(--whiteclr);
  -webkit-transition: .5s ease;
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.fadeinoutslider-button a:after {
  content: '';
  position: relative;
  -webkit-mask-image: url('../images/fade-in-ot/arrow-right.svg');
  mask-image: url('../images/fade-in-ot/arrow-right.svg');
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: #ffffff;
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.youtube-section {
  background: url(../images/ashwem-banner.jpg);
  background-attachment: fixed !important;
}

.before-none:before {
  display: none;
}

.min-container {
  max-width: 820px;
  margin-inline: auto;
}

.youtube-section .min-container {
  border: 20px solid var(--whiteclr);
  border-radius: 5px;
}

.weusimg img {
  border-radius: 15px;
}

.iconbox-section {
  display: grid;
  grid-gap: 20px;
}

.iconbox-txt h4 {
  font-size: 22px;
}

.iconbox-list {
  display: flex;
  gap: 20px;
  align-items: center;
}

.iconbox-icon {
  min-width: 90px;
  max-width: 90px;
}

.weusimg {
  position: relative;
}

.weusimg .yearbox {
  background: var(--whiteclr);
  box-shadow: 0 0 40px 0 rgba(2, 24, 93, 0.08);
  color: var(--primary-textclr);
  width: 160px;
  font-size: 40px;
  height: 160px;
  font-weight: 700;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weusimg .yearbox span {
  color: #ff0;
}

.weus-item {
  position: absolute;
  padding: 32px 25px 28px 30px;
  background: var(--whiteclr);
  border-radius: 10px;
  box-shadow: 0 0 40px 0 rgba(2, 24, 93, 0.08);
  z-index: 11;
}

.weus-item.weus-item2 {
  left: 0px;
  bottom: 20%;
}

.weus-counter {
  display: flex;
  text-align: left;
  font-size: 50px;
  color: var(--primary-textclr);
  font-weight: 700;
  align-items: center;
  grid-gap: 15px;
  line-height: 1;
}

.weus-item.weus-item3 {
  right: -60px;
  top: 20%;
}

.weus-counter p {
  margin: 0px;
  line-height: normal;
  font-size: 16px;
}



/* footer  */

.custom-footer {
  background-color: var(--bgdark);
  color: var(--whiteclr);
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 56px 0px 26px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.86;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer .container {
  position: relative;
}

.footer a {
  color: var(--whiteclr);
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.8;
}

.footer .footer-logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin-block-end: 15px;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  color: #fff !important;
  !i;
  !;
  margin-top: 20px;
}

footer h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--whiteclr);
  margin: 0;
  margin-bottom: 30px;
}

footer p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--whiteclr);
}

.footer .footer-logo img {
  max-width: 150px;
}

.footer .footer-bottom p,
.footer .footer-bottom a {
  color: var(--primary-textclr);
  text-decoration: none;
}

.footer-icon ul {
  display: flex;
  list-style: none;
  justify-content: start;
  gap: 15px;
  padding: 0px;
}

.payment-img {
  max-width: 315px;
}

.footer-icon ul li a {
  width: 40px;
  height: 40px;
  background: var(--theme-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteclr);
  border-radius: 100%;
  font-size: 17px;
}

.footer-icon ul li a i {
  color: var(--whiteclr);
}

.footer .footer-bottom p {
  font-size: 13px;
  color: #fff;
}

.list-unstyled li a {
  font-size: 15px;
  line-height: 25px;
  display: inline-block;
  padding: 0px;
  color: var(--whiteclr);
  text-decoration: none;
}

.list-unstyled li {
  list-style: none;
  line-height: normal;
  margin-bottom: 15px;
  border-bottom: 0px;
}

.back-to-top {
  position: fixed;
  right: 50px;
  bottom: 75px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
  color: var(--theme-clr);
}

.back-to-top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.back-to-top:before {
  position: absolute;
  font-family: 'remixicon' !important;
  content: "\ea76";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;

  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}

.back-to-top svg path {
  stroke: var(--theme-clr);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
  fill: none;
}

.back-to-top span {
  border-radius: 50%;
  border: 1px solid var(--bgdark);
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: inline-block;
  line-height: 42px;
  vertical-align: middle;
  margin-left: 10px;
  letter-spacing: .308px;
  background: var(--bgdark);
  color: var(--whiteclr);
}


.whatsapp-btn {
  display: inline-block;
  max-width: 155px;
  position: fixed;
  bottom: 20px;
  z-index: 11;
  left: 30px;
}



/* breadcrumb */

.cont-item {
  position: relative;
  padding: 25px 18px 25px 93px;
  border: 1px solid #d8e1da;
  border-radius: 10px;
  transition: all .5s;
  margin-block-end: 50px;
  min-height: 170px;
}

.citem-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 58px;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  text-align: center;
  border-radius: 5px;
  background: var(--bglight);
}

.cntitem-txt h3 {
  font-size: 20px;
  margin-block-end: 5px;
}

.cntitem-txt p:last-child {
  margin-block-end: 0px;
}

.cont-item:hover {
  transform: translateY(-15px);
  border-color: var(--btn-bg);
}

.bg1 {
  color: #fa5f1c;
  background-color: #fee7dd;
}

.bg2 {
  color: var(--btn-bg);
  background-color: #d9f7f0;
}

.bg3 {
  color: #ffb300;
  background-color: #fff4d9;
}

.bg4 {
  color: #de6593;
  background-color: #eaabc1;
}

.cntitem-txt a {
  color: var(--primary-textclr);
  font-size: 16px;
  word-wrap: break-word;
}

.cntitem-txt a:hover {
  color: var(--link-clr);
}

.contact-form {
  position: relative;
  z-index: 1;
  border: 1px solid #dcd7d7;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.cont-item:hover .citem-icon {
  background-color: var(--btn-bg);
  color: #fff !important;
}


.counter-section:before {
  background: linear-gradient(45deg, rgb(0 0 0 / 69%), rgb(15 13 13 / 27%));
}

.counter-number {
  font-size: 45px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-number sup {
  top: 0;
  font-size: 45px;
}

.counter-section {
  background: url(../images/overview-bg.jpg);
}

.owenerimg.object-fit {
  width: 450px;
  height: 450px;
  float: left;
  margin-inline-end: 40px;
  border-radius: 100%;
  margin-block-end: 20px;
}


.overview-section {
  background: url(../images/counterbg.jpg);
}

.main-section.overview-section:before {
  background: rgba(0, 0, 0, 0.4);
}

.main-title p {
  font-family: var(--primary-font);
}

.overview-section .main-title h3 {
  font-size: 55px;
}

section.main-section.overview-section:before {
  background: rgba(0, 0, 0, 0.4);
}

.counterImg {
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-inline: auto;
}

.counter-box {
  text-align: center;
}

.counter-box span,
.counter-box sup {
  color: var(--whiteclr);
  text-align: center;
  font-size: 55px;
  font-weight: 600;
  line-height: 116%;
}

.counter-box sup {
  top: 0;
}

p {}

.heading-style {
  color: var(--whiteclr);
  font-size: 20px;
  font-weight: 400;
  line-height: 116%;
  margin-top: 6px;
}


@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


ul.amenities {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  max-width: 700px;
  flex-wrap: wrap;
}

ul.amenities li {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
}

ul.amenities li img {
  width: 35px;
  height: 30px;
}

.prp-item-img img {
  width: 100%;
  height: 589px;
  object-fit: cover;
}

.prpSlider .slick-list.draggable {
  padding: 0px 15% !important;
}

/*.tab-section .tab-content { border-top: 3px solid #384d48; border-bottom: 3px solid #384d48; border-radius: 0px; 
  box-shadow: none; position: relative; } 
.tab-section .tab-content:before { content: ""; border-top: 25px solid #384d48; border-right: 25px solid transparent;  
  border-bottom: 25px solid transparent; position: absolute; top: 0; left: 0; } 
.tab-section .tab-content:after{    content: ""; border-bottom: 25px solid #384d48; border-left: 25px solid transparent; 
  border-top: 25px solid transparent; position: absolute; bottom: 0; right: 0; }*/
.prp-item-img {
  position: relative;
}

.ovrview-section {
  background: url(../images/clubbg.svg);
  background-position: top center !important;
}

.ovr-item {
  margin: auto;
  text-align: center;
}

.ovr-item-img {
  margin-bottom: 15px;
  position: relative;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.ovr-item h5 {
  font-weight: 700;
}

.ovr-item:hover .ovr-item-img {
  transform: rotateY(180deg);
}

.propertySlider .slick-list.draggable {
  padding: 0px 15% !important;
}

.property-item img {
  width: 100%;
  height: 589px;
  object-fit: cover;
}

.slick-next:before,
.slick-prev:before {
  content: "\ea64";
  font-family: remixicon !important;
  line-height: 45px;
  transform: none !important;
  width: 100%;
}

.slick-next:before {
  content: "\ea6e";
}

.slick-arrow {
  background: var(--btn-bg-hover);
  min-width: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-arrow:before {
  background: transparent !important;
}

button.slick-next {
  right: 10px;
}

button.slick-prev {
  left: 20px;
  z-index: 1;
}

/*.banner-overlay:before {background: linear-gradient(45deg, black, transparent);}*/
ul.type_list li::before {
  content: '#';
  position: absolute;
  color: var(--tgreen);
  width: 10px;
  height: 10px;
  left: 0;
  top: -4px;
  font-size: 20px;
}

ul.type_list li {
  padding-left: 20px;
  padding-bottom: 10px;
  position: relative;
}

ul.type_list {
  list-style: none;
  padding-left: 0;
}

.plan-section {
  background: url(../images/packages-bg.jpg);
}

.alternet-img {
  width: 100%;
  border-radius: 13px;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}


.pricing-block {
  position: relative;
  padding: 0 30px;
  margin-bottom: 40px;
}

.pricing-block .inner-box {
  position: relative;
  background-color: var(--whiteclr);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 0 0 30px;
  max-width: 370px;
  margin: 0 auto;
  border-bottom: 20px solid #40cbb4;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px white;
}

.pricing-block .icon-box {
  position: relative;
  padding: 50px 30px 0;
  background-color: #40cbb4;
  text-align: center;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px white;
}

.pricing-block .icon-box:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 75px;
  width: 100%;
  border-radius: 50% 50% 0 0;
  background-color: #ffffff;
  content: "";
}

.pricing-block .icon-box .icon-outer {
  position: relative;
  height: 150px;
  width: 150px;
  background-color: var(--whiteclr);
  border-radius: 50%;
  margin: 0 auto;
  padding: 10px;
}

.pricing-block .icon-box i {
  position: relative;
  display: block;
  height: 130px;
  width: 130px;
  line-height: 120px;
  border: 5px solid #40cbb4;
  border-radius: 50%;
  font-size: 50px;
  color: #40cbb4;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}

.pricing-block .inner-box:hover .icon-box i {
  transform: rotate(360deg);
}

.pricing-block .price-box {
  position: relative;
  text-align: center;
  padding: 10px 20px;
}

.pricing-block .title {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: #222222;
  font-weight: 600;
}

.pricing-block .price {
  display: block;
  font-size: 30px;
  color: #222222;
  font-weight: 700;
  color: #40cbb4;
}

.pricing-block .features {
  position: relative;
  max-width: 330px;
  margin: 0 auto 20px;
}

.pricing-block .features li {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #848484;
  font-weight: 500;
  padding: 5px 0;
  padding-left: 26px;
  border-bottom: 1px dashed #dddddd;
}

.pricing-block .features li:before {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 16px;
  color: #2bd40f;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: remixicon !important;
  content: "\eb81";
  margin-top: -8px;
}

.pricing-block .features li.false:before {
  color: #e1137b;
  content: "\eb97";
}

.pricing-block .features li a {
  color: #848484;
}

.pricing-block .features li:last-child {
  border-bottom: 0;
}

.pricing-block .btn-box {
  position: relative;
  text-align: center;
}

.pricing-block .btn-box a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 30px;
  background-color: #40cbb4;
  border-radius: 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 300ms ease;
}

.pricing-block .btn-box a:hover {
  color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box a {
  color: #40cbb4;
  background: none;
  border-radius: 0px;
  border-color: #40cbb4;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box {
  border-color: #1d95d2;
}

.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box {
  background-color: #1d95d2;
}

.pricing-block:nth-child(2) .inner-box:hover .btn-box a {
  color: #1d95d2;
  background: none;
  border-radius: 0px;
  border-color: #1d95d2;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .price {
  color: #1d95d2;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .inner-box {
  border-color: #ffc20b;
}

.pricing-block:nth-child(3) .btn-box a,
.pricing-block:nth-child(3) .icon-box {
  background-color: #ffc20b;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .price {
  color: #ffc20b;
}

.pricing-block:nth-child(3) .inner-box:hover .btn-box a {
  color: #ffc20b;
  background: none;
  border-radius: 0px;
  border-color: #ffc20b;
}

.slider>div {
  display: block;
  width: 100%;
  text-align: center;
}

.slider-nav {
  text-align: center;
}

.slider-nav div {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 0 5px;
  padding: 3px 0;
  text-align: center;
  cursor: pointer;
}

.slider-nav>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  padding-top: 30px;
}

.slider-nav .prp-item-img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
}

.slider-nav .prp-item-img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 64%);
  transition: all .5s;
}

.slider-nav .prp-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  line-height: 0;
}

.prp-item.slick-active .prp-item-img:before {
  opacity: 0.2;
}

.slider .prp-item-img {
  width: 100%;
  height: 450px;
}

.slider .prp-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spc_head {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(221 221 221 / 54%);
  padding: 20px;
  gap: 20px;
  margin-block-end: 30px;
  border-radius: 5px;
}

.spc_head h5 {
  margin-block-end: 0px;
}

.datatable table {
  width: 100%;
}

.datatable table tr td {
  border: 1px solid #ddd;
  padding: 15px;
}

.datatable table tr td:first-child {
  width: 30%;
}

.datatable table tr td ul {
  list-style: none;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: start;
}

.datatable table tr td ul li {
  flex: 0 0 calc(33.33% - 10px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.datatable table tr td ul li span.material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}


.rightsidebar {
  padding: 10px;
  border-radius: 5px;
  background: #eee;
  height: calc(100% - 450px);
  overflow-x: auto;
  position: sticky;
  top: 110px;
}

.post_detail .post-img {
  height: 200px;
  margin-block-end: 10px;
}

.widget_box .widget:not(:last-child) {
  margin-block-end: 30px;
}



.scrollbar::-webkit-scrollbar {
  width: 0px;
}

.scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 1px solid slategrey;
}

.img-box3 {
  position: relative;
  margin-left: 0px;
}

.img-box3 .img1 img {
  border-radius: 24px;
}

.img-box3 .img2 {
  position: absolute;
  top: 20%;
  right: 12%;
}

.img-box3 .img2 img {
  border-radius: 24px;
  border: 5px solid var(--whiteclr);
}

.img-box3 .img3 {
  position: relative;
  margin-top: 30px;
  z-index: 3;
}

.img-box3 .img3 img {
  border-radius: 24px;
  border: 5px solid var(--whiteclr);
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

.about-item-wrap {
  min-width: 386px;
}

.about-item:not(:last-child) {
  margin-bottom: 30px;
}

.about-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  max-width: 400px;
}

.about-item.style2 .about-item_img {
  background-color: rgb(7 133 134 / 21%);
}

.about-item_img {
  min-width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme-clr);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.about-item_img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.about-item h5 {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
  margin-bottom: 7px;
}



.tab-section ul.nav-tabs {
  position: absolute;
  top: -30px;
  z-index: 8;
  width: 270px;
  display: flex;
  flex-direction: column;
  background: var(--whiteclr);
  inset-inline-start: 50px;
  padding: 10px 0px 0px 0px;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
  overflow: hidden;
  border: none;
}

.tab-section ul.nav-tabs .nav-item .nav-link {
  font-size: 16px;
  position: relative;
  font-weight: 700;
  line-height: 28px;
  padding: 20px;
  border: 0px;
  border-bottom: 1px solid #ddd;
  background: transparent;
  border-radius: 0px;
  display: block;
  width: 100%;
  color: var(--primary-textclr);
  text-align: left;
  transition: all .5s;
}

.tab-section ul.nav-tabs .nav-item .nav-link:hover,
.tab-section ul.nav-tabs .nav-item .nav-link.active {
  color: var(--theme-clr);
  padding-inline-start: 25px
}

.cta-bx.bg-theme a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  font-size: 19px;
  font-weight: 500;
  color: var(--whiteclr);
  line-height: 21px;
  font-family: var(--primary-font);
}

.cta-bx.bg-theme.text-white {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--whiteclr);
  border-radius: 100%;
  color: var(--theme-clr);
  font-weight: 400;
  font-size: 25px;
}

.tab-section .tab-content {
  min-height: 550px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: flex-end;
}

.tab-content:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #223476 2%, rgba(0, 0, 0, 0) 129%);
  position: absolute;
}

.tab-section .tc-box {
  position: relative;
  z-index: 1;
  color: var(--whiteclr);
  padding: 50px 50px 50px 350px;
}

.tab-section .tc-box .tabhead h4 {
  color: var(--whiteclr);
  font-size: 45px;
}

.tc-box .tabhead p {
  font-size: 25px;
}

.fade {
  transition: opacity .3s linear;
}



.gallery-item.object-fit {
  border-radius: 10px;
}

.d-grid {
  display: grid;
}

.gallery-container {
  grid-gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-container .gallery-item:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2/3;
}

.gallery-container .gallery-item:nth-child(6) {
  grid-row: 4/6;
  grid-column: 1/2;
}

.properties-single .inner-banner-wrap {
  margin-bottom: 30px;
}

.slider-nav {
  display: flex;
  justify-self: center;
  align-items: center;
}


@media (min-width: 575px) {
  .gallery-container {
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-gap: 20px;
  }

}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

/* container */

.container-left {
  padding-left: calc(50% - 570px);
}

@media (min-width: 767px) {
  .container {
    max-width: 100%;
  }

  .lg-hide {
    display: none;
  }
}


@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .menu ul.list-style li ul.mega-menu {
    width: 100%;
  }

  .menu ul.list-style li ul.mega-menu ul {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
  }

  .menu ul.list-style li ul.mega-menu ul li {
    width: 25%;
    font-size: 14px;
    padding: 0px 5px;
    margin-bottom: 2px;
  }

  .menu ul.list-style li ul.mega-menu ul li a {
    color: var(--text-dark);
    border-bottom: 1px dotted var(--btn-bg);
    border-radius: 0px;
  }

  .mega-menu-list {
    max-height: 300px;
    overflow-y: auto;
  }

  .mega-menu-list::-webkit-scrollbar {
    width: 6px;
  }

  .mega-menu-list::-webkit-scrollbar-track {
    background: #fff;
  }

  .mega-menu-list::-webkit-scrollbar-thumb {
    background: #E6E6E6;
    border-radius: 10px;
  }

  .menu ul.list-style li ul li:hover>a {
    color: var(--link-clr) !important;
  }
}



@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

}


@media (min-width: 1400px) {

  .container,
  .container-lg {
    max-width: 1320px;
  }


}

.smimg1.object-fit {
  border-radius: 200px 200px 0 200px;
}

/*.smimg2.object-fit { border-radius: 200px 0 200px 200px; grid-column: 1; grid-row: 1 / 2; } */
.smimg2.object-fit {
  border-radius: 200px 0 200px 200px;
  grid-column: 1;
  grid-row: 2 / 2;
}

.offer-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.lg-img.object-fit {
  border-radius: 200px 200px 200px 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

.offierbox.position-absolute p {
  margin: 0px;
  font-size: 20px;
  text-transform: uppercase;
}

.offierbox.position-absolute {
  position: absolute !important;
  width: 150px;
  height: 150px;
  background: #dc420d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 100%;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.offierbox.position-absolute span {
  font-size: 29px;
  font-weight: 700;
}

.author-contact {
  display: flex;
  gap: 10px;
  align-items: center;
}

.author-contact .icon {
  min-width: 50px;
  font-size: 22px;
  height: 50px;
  background: var(--bgdark);
  color: var(--whiteclr);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-contact .content h6 {
  margin-bottom: 0px;
}

.author-contact .content span {
  color: #797171;
}

.author-contact .content h6 a {
  color: var(--bgdark);
}

ul.hp-list li.cntbtn {
  gap: 30px;
}

.cntbtn a.btn {
  padding: 15px 30px;
}

.about2txt {
  padding-inline-start: 20px;
}

ul.hp-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px;
  margin: 30px 0px;
}

.hp-list li .hp-list-icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  font-size: 50px;
  color: var(--bgdark) !important;
  display: flex;
  position: relative;
}

.hp-list li .hp-list-icon img {
  max-width: 55px;
}

.hp-list li .hp-list-icon span {
  position: absolute;
  right: 0px;
  bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-list-txt h4 {
  margin-block-end: 8px;
  font-size: 21px;
}

.hp-list-txt p {
  margin: 0px;
}

@media (max-width: 991px) {
  .offierbox.position-absolute {
    width: 100px;
    height: 100px;
    gap: 5px;
    left: 50%;
    transform: translate(-60%, -50%);
  }

  .offierbox.position-absolute p {
    font-size: 14px;
  }

  .offierbox.position-absolute span {
    font-size: 20px;
  }

  .hp-list li .hp-list-icon {
    width: auto;
    flex: 0 0 auto;
  }

  ul.hp-list li.cntbtn {
    gap: 10px;
    flex-wrap: wrap;
  }

  .cntbtn a.btn {
    padding: 12px 8px;
    font-size: 14px;
  }

  .author-contact .icon {
    min-width: 40px;
    height: 40px;
  }

}

@media (max-width: 767.98px) {
  .offer-img {
    margin-bottom: 30px;
  }

  .about2txt {
    padding-left: 0px;
  }
}

@media (max-width: 365.98px) {
  .offer-img {
    margin-bottom: 30px;
  }

  .cntbtn a.btn {
    padding: 8px 10px;
    font-size: 13px;
  }

  .author-contact .content {
    font-size: 12px;
  }

  .author-contact .content h6 {
    font-size: 13px;
  }

  .author-contact .icon {
    min-width: 30px;
    height: 30px;
    font-size: 17px;
  }
}

.bookh {
  text-transform: uppercase;
}

.citybook {
  color: #ea8b0b
}

/*****************review*******************/

.customerreviews-container {
  width: 100vw;
  min-height: 100vh;
  background: url('https://www.treehouseluxuryvacations.com/assets/images/testimonial/testimonial-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  box-sizing: border-box;
}

.customerreviews-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.customerreviews-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
}

.customerreviews-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.customerreviews-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.customerreviews-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.customerreviews-name {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.customerreviews-star {
  color: #f39c12;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.customerreviews-text {
  font-size: 1rem;
  color: #444;
  overflow-wrap: break-word;
}

/* Swiper arrows and bullets */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #f39c12;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
  .customerreviews-title {
    font-size: 2rem;
  }

  .customerreviews-card {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .customerreviews-title {
    font-size: 1.8rem;
  }

  .customerreviews-card {
    max-width: 280px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .customerreviews-title {
    font-size: 1.6rem;
  }

  .customerreviews-card {
    max-width: 90%;
    padding: 15px;
  }
}

/* Core styling for iframe */
.video-slide iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Main video card container */
.video-card {
  width: 430px;
  height: 310px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
}

/* Wrapper for iframe */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .video-card {
    width: 360px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .video-card {
    width: 300px;
    height: 220px;
  }
}

@media (max-width: 576px) {
  .video-card {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-wrapper {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-wrapper iframe {
    height: 100%;
  }
}

/********************end review********/



/* Masonry Gallery Layout */
.masonry-gallery {
  column-count: 4;
  column-gap: 1rem;
  padding: 0 15px;
}

.gallery-img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: inline-block;
  break-inside: avoid;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Modal (Lightbox) Layout */
.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: auto;
  max-width: 90vw;
}

.modal-content {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-block;
  width: auto;
  max-width: 100%;
  animation: fadeIn 0.4s ease-in-out;
}

.modal-body {
  padding: 0;
  text-align: center;
  background: transparent;
  position: relative;
}

#modalImage {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  display: inline-block;
}

/* Navigation Buttons (Prev/Next) */
.nav-btn {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1056;
  transition: background-color 0.3s ease;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .gallery-img:hover {
    transform: scale(1.02);
  }

  #modalImage {
    max-height: 70vh;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/********************end gallery********/

/***************  Diwali Popup Styles *************/
/* ================================
   DIWALI FESTIVE SALE MODAL (ENLARGED)
   ================================ */

/* Dialog size — slightly larger now */
.diwali-dialog {
  max-width: 1020px;
  /* increased from 880px */
  width: 95%;
  margin: auto;
}

/* Modal content — gradient frame around image */
.diwali-modal-content {
  position: relative;
  background: linear-gradient(45deg, #ffb703, #fb8500, #ff006e);
  padding: 5px;
  /* slightly thicker frame */
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 111, 0, 0.5);
  animation: popupScale 0.6s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Image — fits snugly inside border */
.diwali-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
  /* inner match */
  object-fit: cover;
  margin: 0;
  transition: transform 0.3s ease-in-out;
}

.diwali-image:hover {
  transform: scale(1.02);
}

/* Close button - top right */
.diwali-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 10;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.9;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

.diwali-close:hover {
  color: #ffcc00;
  text-shadow: 0 0 10px #ff6600, 0 0 25px #ff4500;
  transform: scale(1.15);
  opacity: 1;
}

/* Popup animation */
@keyframes popupScale {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .diwali-dialog {
    max-width: 95%;
  }

  .diwali-modal-content {
    padding: 4px;
    border-radius: 16px;
  }

  .diwali-image {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .diwali-dialog {
    max-width: 94%;
  }

  .diwali-close {
    font-size: 28px;
    top: 8px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .diwali-dialog {
    max-width: 96%;
  }

  .diwali-close {
    font-size: 26px;
    top: 6px;
    right: 8px;
  }
}



/***************  Diwali Popup Styles end *************/

/******************* PREMIUM MEMBERSHIP SECTION ********************/

.premium-membership {
  padding: 60px 0;
  background: #0d1117;
  /* Sleek dark background */
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow behind cards */
.premium-membership::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(202, 169, 74, 0.15) 0%, rgba(13, 17, 23, 0) 70%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

/* slider container */
.membershipSwiper {
  width: 100%;
  overflow: visible;
  /* allow shadows to bleed */
  z-index: 1;
}

/* slide */
.membershipSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* premium card */
.membership-card {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1050px;
  background: linear-gradient(145deg, #1a1f29, #12151d);
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

/* Golden top border accent */
.membership-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #caa94a, transparent);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* shine animation */
.membership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 2;
  pointer-events: none;
}

.membership-card:hover::before {
  left: 150%;
}

.membership-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(202, 169, 74, 0.15);
  border-color: rgba(202, 169, 74, 0.3);
}

.membership-card:hover::after {
  opacity: 1;
}

/* card image */
.card-img {
  width: 220px;
  flex-shrink: 0;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
  z-index: 3;
}

.membership-card:hover .card-img {
  transform: scale(1.05) rotate(2deg);
}

.card-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* content */
.card-details {
  flex: 1;
  z-index: 3;
}

.card-details h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(to right, #fff, #caa94a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-details p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

/* button */
.card-action {
  flex-shrink: 0;
  z-index: 3;
}

.apply-btn {
  background: linear-gradient(135deg, #caa94a 0%, #e3c068 100%);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(202, 169, 74, 0.3);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.apply-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.4s ease;
}

.apply-btn:hover::after {
  left: 100%;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #e3c068 0%, #caa94a 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(202, 169, 74, 0.4);
}

/* mobile */
@media(max-width:768px) {

  .membership-card {
    flex-direction: column;
    text-align: center;
  }

  .card-img {
    width: 150px;
  }

}

@media (max-width:768px) {

  .premium-membership {
    padding: 10px 0 30px;
  }

}


/* MODERN MEMBERSHIP MODAL */

.membershipModal .modal-dialog {
  max-width: 900px;
  width: 100%;
  margin: 10px auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.membership-modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* WRAPPER */

.membership-modal-wrapper {
  display: flex;
  min-height: 420px;
}

/* LEFT PANEL (DESKTOP) */

.membership-left {
  flex: 1;
  background: url("https://www.treehouseluxuryvacations.com/assets/images/cardpopup.png") center/cover no-repeat;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 420px;
}

.membership-left h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.membership-left p {
  font-size: 15px;
  opacity: .85;
  min-height: 45px;
  margin-bottom: 5px;
}

.membership-icon {
  font-size: 70px;
  margin-top: 20px;
  color: #caa94a;
}

/* RIGHT FORM */

.membership-right {
  flex: 1;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

/* FORM */

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
  display: block;
}

.form-control {
  height: 45px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  transition: .3s;
}

.form-control:focus {
  border-color: #caa94a;
  box-shadow: 0 0 0 3px rgba(202, 169, 74, 0.15);
}

/* BUTTON */

.membership-submit {
  width: 100%;
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  border: none;
  height: 45px;
  border-radius: 30px;
  font-size: 15px;
  margin-top: 10px;
  transition: .3s;
}

.membership-submit:hover {
  background: linear-gradient(135deg, #caa94a, #e3c068);
  color: #000;
}

/* CLOSE BUTTON */

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  font-size: 28px;
  cursor: pointer;
  background: #8e8383;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= MOBILE IMAGE FIX ================= */

/* hidden by default (desktop) */
.membership-mobile-img {
  display: none;
  width: 100%;
  height: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width:768px) {

  .membership-modal-wrapper {
    flex-direction: column;
  }

  /* REMOVE BACKGROUND IMAGE */
  .membership-left {
    background: none !important;
    padding: 0;
    min-height: auto;
    max-height: 150px;
  }

  /* SHOW IMAGE */
  .membership-mobile-img {
    display: block;
  }

  /* HIDE TEXT */
  .membership-left p,
  .membership-left h2,
  .membership-icon {
    display: none;
  }

  /* FORM */
  .membership-right {
    padding: 20px;
  }

}

/* EXTRA SMALL DEVICES */

@media (max-width:480px) {

  .membership-modal-content {
    border-radius: 12px;
  }

  .membership-right {
    padding: 18px;
  }

  .form-control {
    height: 42px;
  }

  .membership-submit {
    height: 42px;
    font-size: 14px;
  }

}

/* Testimonial Arrow Styles */
.Testimonials-our .owl-nav button.owl-prev,
.Testimonials-our .owl-nav button.owl-next {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  color: #13223f !important;
}

.Testimonials-our .owl-nav button.owl-prev:hover,
.Testimonials-our .owl-nav button.owl-next:hover {
  background: transparent !important;
  color: #caa94a !important;
}

/* Global Banner Heading Blue Color */
.inner-banner-content .page-title,
.inner-banner-content h1 {
  color: #00d2ff !important;
  /* Vibrant light blue, suitable for dark image overlays */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Ensure readability */
}