/*
Theme Name: Chalet Apartment
Author: WebSkitters
Description: Find Your Dream Holiday In Tignes Today
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: 'Roboto', sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --body-font: "Raleway", sans-serif;
  --body-color: #404753;
  --heading-color: #001330;
  --primary-color: #0569ff;
  --dark-primary: #0762ea;
  --graycolor: #c7c7c7;
  --inputbg: #f1f1f1;
  --para-font-clr: #374044;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: var(--body-color);
  font-size: 15px;
  line-height: 1.5;
  background-color: #fff;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.cmn-h1,
h2,
.cmn-h2,
h3,
.cmn-h3,
h4,
.cmn-h4,
h5,
h6 {
  margin: 0 0 12px 0;
  padding: 0;
  color: var(--heading-color);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.cmn-h1 {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.2;
}

h2,
.cmn-h2 {
  font-weight: 800;
  font-size: 25px;
  line-height: 1.2;
}

h3,
.cmn-h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

h4,
.cmn-h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5,
.cmn-h5 {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #374044;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

figure {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

i {
  display: inline-block;
}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: var(--inputbg);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50px;
  color: #374044;
  font-size: 16px;
  text-transform: capitalize;
  border: 0;
  height: 54px;
  padding: 0 30px;
  outline: none !important;
}

textarea {
  background-color: var(--inputbg);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 20px;
  border: 0;
  padding: 17px 30px;
  width: 100%;
  color: #374044;
  height: 116px;
  outline: none !important;
  resize: none;
  display: block;
}

select {
  border: 0;
  width: 100%;
  padding: 0 30px;
  background: url(images/down-arrow.svg) no-repeat calc(100% - 23px) center var(--inputbg);
  background-size: 12px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select option {
  background: var(--primary-color);
  color: #fff;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: url(./images/right-long-arrow.svg) no-repeat right 24px center var(--primary-color);
  background-size: 14px;
  color: var(--white-color);
  height: 54px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 100px;
  padding-left: 30px;
  padding-right: 47px;

  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: url(./images/right-long-arrow.svg) no-repeat right 24px center var(--heading-color);
  background-size: 14px;
  color: var(--white-color);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #374044;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #374044;
}

::-moz-placeholder {
  opacity: 1;
  color: #374044;
}

:-moz-placeholder {
  opacity: 1;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 117px;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 12px;
  padding: 20px 0 0;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
}

.navbar-nav>li>a:hover {
  color: var(--primary-color);
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  color: var(--primary-color);
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.menu-item-has-children>a {
  padding-right: 20px;
}

.navbar-nav>.menu-item-has-children>a::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(images/white-dropdwn.svg) no-repeat center;
  background-size: 12px;
}

/* cmn-css */
ul {
  margin: 0;
  padding: 0;
}

figure {
  margin-bottom: 0;
}

.cmn-gap {
  padding: 90px 0;
}

.cmn-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--white-color);
  text-transform: capitalize;
  padding: 18px 27px;
  min-width: 183px;
  border-radius: 100px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
  box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
}

.cmn-btn img {
  margin-left: 10px;
  display: inline-block;
  width: 16px;
}

.cmn-btn:hover {
  background-color: var(--heading-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--white-color);
}

.cmn-btn:hover img {
  filter: brightness(100%) invert(1);
}

.header-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 14px 15px;
  font-size: 14px;
}

.header-btn img {
  width: 16px;
  margin-right: 10px;
  margin-left: 0;
}

.sec-head {
  margin-bottom: 40px;
}

/* m.m css start */

.main-head {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  padding: 13px 0;
}

.navbar-right-topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 28px;
}

.header-list li {
  display: inline-block;
  line-height: 1;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 2px solid var(--white-color);
}

.header-list li a {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
}

.header-list li a:hover {
  color: var(--primary-color);
}

.header-list li a img {
  width: 17px;
  margin-right: 9px;
  display: inline-block;
}

.header-list li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.header-list li select {
  border: 0;
  height: auto;
  color: var(--white-color);
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
  padding: 0;
  padding-right: 15px;
  background: url(./images/white-dropdwn.svg) no-repeat right center;
  background-size: 12px;
  border-radius: 0;
}

.navbar-collapse-outer {
  margin-left: auto;
}

/* banner css start */

.banner-warepr-outer {
  padding: 40px 35px 0;
}

.banner-main-wraper {
  position: relative;
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 130px 0 50px;
  border-radius: 20px;
  overflow: hidden;
}

.banner-con {
  position: relative;
  z-index: 3;
  text-align: center;
}

.banner-con h1 {
  color: var(--white-color);
  text-transform: capitalize;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-main-wraper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(12.88%, #001330),
      color-stop(81.3%, rgba(0, 11, 28, 0.22)));
  background: -o-linear-gradient(top,
      #001330 12.88%,
      rgba(0, 11, 28, 0.22) 81.3%);
  background: linear-gradient(180deg,
      #001330 12.88%,
      rgba(0, 11, 28, 0.22) 81.3%);
  mix-blend-mode: hard-light;
  z-index: 2;
}

.banner-bottom-search-bar {
  position: relative;
  z-index: 4;
}

/* banner search css */
.search-wraper-outer {
  border-radius: 80px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 44px 44px 0px rgba(0, 62, 156, 0.13);
  box-shadow: 0px 44px 44px 0px rgba(0, 62, 156, 0.13);
  max-width: 1120px;
  margin: 0 auto;
  margin-top: -67px;
  position: relative;
  z-index: 3;
  padding: 22px 28px;
}

.search-wraper-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-wraper-outer li {
  display: inline-block;
  line-height: normal;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 2px solid var(--graycolor);
  /* margin-bottom: 12px; */
}

.search-wraper-outer li select {
  border: 0;
  height: auto;
  color: var(--heading-color);
  padding: 0;
  padding-right: 18px;
  background: url(./images/blck-dropdwn.svg) no-repeat right center;
  background-size: 12px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0;
}

.search-wraper-outer li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.search-wraper-outer li:nth-last-child(2) {
  border-right: 0;
  width: 8%;
}

.search-wraper-outer input[type="submit"] {
  background: url(./images/search-icon.svg) no-repeat left 36px center var(--primary-color);
  background-size: 18px;
  color: var(--white-color);
  height: 54px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 100px;
  padding-left: 72px;
  padding-right: 36px;

  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  -webkit-box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
  box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-wraper-outer input[type="submit"]:hover {
  background: url(./images/search-icon.svg) no-repeat left 36px center var(--dark-primary);
  background-size: 18px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--white-color);
}

/* banner css end */

.holiday-right-in {
  position: relative;
  padding-left: 80px;
  padding-bottom: 70px;
  z-index: 3;
}

.holiday-right-in figure {
  overflow: hidden;
  border-radius: 20px;
}

.holiday-right-in figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  position: relative;
  z-index: 3;
}

.holiday-img-one {
  height: 555px;
}

.holiday-img-two {
  width: 325px;
  height: 243px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0px 34px 64px rgba(5, 39, 90, 0.4);
  box-shadow: 0px 34px 64px rgba(5, 39, 90, 0.4);
}

.services-btn {
  position: relative;
  margin-top: -32px;
  padding-left: 47px;
}

.holiday-left-in {
  position: relative;
  padding: 40px 0 66px 47px;
}

.holiday-left-in::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -100%;
  width: calc(100% + 200px);
  height: 100%;
  background-color: #eef5ff;
  border-radius: 20px;
  z-index: -1;
}

.holiday-listing li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  margin-bottom: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.holiday-listing li:last-child {
  margin-bottom: 0;
}

.holiday-icon {
  width: 78px;
  height: 78px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(5, 105, 255, 0.11);
  -webkit-box-shadow: 0px 24px 34px rgba(0, 70, 175, 0.28);
  box-shadow: 0px 24px 34px rgba(0, 70, 175, 0.28);
}

.holiday-listing li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: 50%;
}

.holiday-content {
  width: calc(100% - 78px);
  padding-left: 20px;
}

.holiday-content h3 {
  margin-bottom: 12px;
}

.holiday-content p {
  color: var(--body-color);
}

.holiday-row {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  --bs-gutter-x: 50px;
  --bs-gutter-y: 30px;
}

.holiday-left-column {
  padding-bottom: 15px;
  width: 54%;
}

.holiday-right-column {
  width: 46%;
}

.holiday-flower-top,
.flower-left-one,
.flower-left-two,
.flower-left-three {
  position: absolute;
  top: -67px;
  right: -71px;
  width: 143px;
  z-index: 1;
}

.flower-left-one {
  left: 0;
  top: 95px;
  width: 42px;
}

.flower-left-two {
  width: 26px;
  left: -47px;
  top: 170px;
}

.flower-left-three {
  width: 95px;
  left: -67px;
  top: 230px;
}

/* SB start 11.9.23 */

/* our-sec */
.our-sec {
  position: relative;
}

.flw-img-1 {
  position: absolute;
  left: 127px;
  top: 0;
  width: 35px;
  height: 39px;
}

.flw-img-2 {
  position: absolute;
  left: -62px;
  bottom: 30%;
  width: 144px;
  height: 162px;
}

.our-row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -15px -11px;
}

.our-col {
  padding: 15px 11px;
}

.our-bx figure {
  overflow: hidden;
  border-radius: 10px;
}

.our-bx>figure>a {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-bx>figure>a>img {
  width: 100%;
  /* object-fit: cover; */
}

.our-bx>figure>a:hover>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.our-cnt {
  position: relative;
  z-index: 2;
  padding: 51px 17px 40px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 44px 44px 0px rgba(0, 62, 156, 0.21);
  box-shadow: 0px 44px 44px 0px rgba(0, 62, 156, 0.21);
  margin: -60px 15px 0;
}

.our-level {
  position: absolute;
  top: -12px;
  left: 17px;
  display: inline-block;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 3px;
  background: #0569ff;
}

.our-cnt h3 {
  margin-bottom: 15px;
  text-transform: initial;
}

.our-cnt ul>li {
  padding-bottom: 12px;
}

.our-cnt>li:last-child {
  padding-bottom: 0;
}

.our-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.our-lst p {
  font-size: 14px;
  margin-left: 11px;
}

.our-lst p strong {
  font-weight: 600;
}

.our-bx-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.our-bx-btn:hover {
  color: var(--heading-color);
}

.our-bx-btn img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.our-bx-btn:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
  -webkit-fliter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
}

.our-bx-btn img {
  margin-left: 5px;
}

.our-btn {
  text-align: center;
  margin-top: 70px;
}

/* take-sec */
.take-sec {
  position: relative;
  min-height: 512px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.take-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(12.88%, #001330),
      color-stop(81.3%, rgba(0, 11, 28, 0.22)));
  background: -o-linear-gradient(top,
      #001330 12.88%,
      rgba(0, 11, 28, 0.22) 81.3%);
  background: linear-gradient(180deg,
      #001330 12.88%,
      rgba(0, 11, 28, 0.22) 81.3%);
  mix-blend-mode: hard-light;
  z-index: 1;
}

.take-sec .container {
  position: relative;
  z-index: 2;
}

.take-sec h2 {
  color: var(--white-color);
  font-size: 54px;
  font-weight: 800;
  text-transform: initial;
}

.video-play-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  border: 1px solid var(--white-color);

  /* -webkit-animation: wave 1.2s linear infinite;
    animation: wave 1.2s linear infinite; */
  margin: 0 auto;
  z-index: 2;
}

.video-play-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  will-change: transform, opacity;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    border: 1px solid #fff;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.2;
    border: 1px solid #fff;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    border: 1px solid #fff;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.2;
    border: 1px solid #fff;
  }
}

/* footer-sec */
.footer-sec {
  position: relative;
}

.ftr-leave {
  position: absolute;
  top: 54px;
  right: 8%;
  width: 144px;
  height: 163px;
  z-index: 3;
  pointer-events: none;
}

.footer-tp {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-tp:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(2, 14, 31, 0.8);
  z-index: 1;
}

.footer-tp {
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-sec .container {
  position: relative;
  z-index: 2;
}

.ftr-tp-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.ftr-logo {
  display: inline-block;
  max-width: 128px;
  margin-bottom: 40px;
}

.ftr-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: -12px;
}

.ftr-nav-link>li {
  padding: 0 17px;
  line-height: 1;
  margin-bottom: 12px;
}

.ftr-nav-link>li:first-child {
  padding-left: 0;
}

.ftr-nav-link>li:last-child {
  padding-right: 0;
}

.ftr-nav-link>li a {
  display: inline-block;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ftr-nav-link>li a:hover {
  color: var(--primary-color);
}

.ftr-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ftr-cont-bx {
  width: 29%;
  padding: 0 46px;
  border-right: 1px dashed #fff;
  text-align: center;
}

.ftr-cont-bx:first-child {
  padding-left: 0;
}

.ftr-cont-bx:last-child {
  border-right: none;
  padding-right: 0;
}

.ftr-cont-img {
  margin-bottom: 15px;
}

.ftr-cont-hd {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.ftr-cont-bx a {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
}

.ftr-cont-bx a:hover {
  color: var(--primary-color);
}

.ftr-tp-grd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ftr-lavel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.ftr-lavel>li {
  margin-right: 21px;
  max-width: 84px;
}

.ftr-lavel>li>img {
  width: 100%;
}

.ftr-lavel>li:last-child {
  margin-right: 0;
}

.ftr-achr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}

.ftr-achr>li {
  padding: 0 32px;
  border-right: 2px solid #fff;
}

.ftr-achr>li:first-child {
  padding-left: 0;
}

.ftr-achr>li:last-child {
  padding-right: 0;
  border-right: none;
}

.ftr-achr>li a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
}

.ftr-achr>li a:hover {
  color: var(--primary-color);
}

.ftr-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

.ftr-link>li {
  padding-right: 14px;
}

.ftr-link>li:last-child {
  padding-right: 0;
}

.ftr-link>li a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ftr-link>li a:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(94%) saturate(3155%) hue-rotate(211deg) brightness(102%) contrast(104%);
  filter: brightness(0) saturate(100%) invert(27%) sepia(94%) saturate(3155%) hue-rotate(211deg) brightness(102%) contrast(104%);

  --webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(94%) saturate(3155%) hue-rotate(211deg) brightness(102%) contrast(104%);
}

.footer-btm {
  padding: 15px 0;
  background: var(--primary-color);
}

.footer-btm p {
  text-align: center;
  color: var(--white-color);
}

.footer-btm a {
  color: var(--white-color);
}

.footer-btm a:hover {
  color: var(--heading-color);
}

.footer-btm a:last-child {
  text-decoration: underline !important;
}

/* SB end 11.9.23 */

/* 12.09.23 m.m css start */
.blog-row {
  --bs-gutter-x: 65px;
  --bs-gutter-y: 30px;
}

.blog-in-row {
  --bs-gutter-x: 35px;
  --bs-gutter-y: 35px;
}

.blog-box-wpr {
  padding: 26px 20px;
  border-radius: 20px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 34px 64px 0px rgba(42, 49, 120, 0.11);
  box-shadow: 0px 34px 64px 0px rgba(42, 49, 120, 0.11);
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-box-wpr figure {
  margin-bottom: 21px;
}

.blog-box-wpr figure a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.blog-box-wpr figure a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-box-wpr:hover figure a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.date-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.date-text img {
  display: inline-block;
  width: 16px;
  margin-right: 14px;
}

.blog-box-wpr h3 {
  font-size: 26px;
  margin-bottom: 14px;
  min-height: 60px;
}

.blog-box-wpr h3 a {
  color: var(--heading-color);
}

.blog-box-wpr:hover h3 a {
  color: var(--primary-color);
}

.blog-box-wpr p {
  font-size: 18px;
  color: #374044;
  margin-bottom: 18px;
}

.blog-box-wpr .our-bx-btn {
  margin-top: 0;
}

.blog-box-wpr:hover .our-bx-btn {
  color: var(--heading-color);
}

.blog-box-wpr:hover .our-bx-btn img {
  -webkit-fliter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
  -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(7477%) hue-rotate(200deg) brightness(94%) contrast(107%);
}

.blog-search-wpr input[type="text"],
.blog-search-wpr input[type="search"] {
  border-radius: 140px;
  border: 1px solid #c1c1c1;
  padding: 0 50px 0 31px;
  height: 56px;
  /* background: url(./images/blue-icons_search.svg) no-repeat right 21px center;
  background-size: 24px; */
}

.blog-search-wpr input::-webkit-input-placeholder {
  opacity: 1;
  color: #57555a;
}

.blog-search-wpr input:-ms-input-placeholder {
  opacity: 1;
  color: #57555a;
}

.blog-search-wpr input::-moz-placeholder {
  opacity: 1;
  color: #57555a;
}

.blog-search-wpr input:-moz-placeholder {
  opacity: 1;
  color: #57555a;
}

.blog-search-wpr {
  margin-bottom: 24px;
}

.blog-details-warper h3 {
  font-size: 26px;
}

.blog-dtls-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-dtls-col:last-child {
  margin-bottom: 0;
}

.blog-dtls-col .blog-left-img {
  width: 80px;
}

.blog-left-img a {
  display: block;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}

.blog-dtls-col a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-dtls-col:hover .blog-left-img a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-dtls-col .blog-rtl-con {
  width: calc(100% - 80px);
  padding-left: 20px;
}

.blog-rtl-con .date-text {
  margin-bottom: 7px;
}

.blog-rtl-con h4 {
  font-size: 20px;
}

.blog-dtls-col:hover .blog-rtl-con h4 a {
  color: var(--primary-color);
}

.blog-rtl-con h4 a {
  color: var(--heading-color);
}

.blog-details-warper {
  margin-bottom: 46px;
}

.blog-list li {
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}

.blog-list li:last-child {
  margin-bottom: 0;
}

.blog-list li a {
  font-size: 20px;
  line-height: 1.3;
  color: var(--heading-color);
  text-transform: capitalize;
}

.blog-list li a:hover {
  color: var(--primary-color);
}

/* inner-pages */
/* SB 11.9.23 */
.inner-banner {
  min-height: 399px;
}

.inner-banner h1 {
  /* font-size: 54px; */
}

.prop-tp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.prop-tp>li select {
  border: 0;
  height: auto;
  color: #7b7b7b;
  padding: 0;
  padding-right: 16px;
  background: url(images/grey-arw.svg) no-repeat right center;
  background-size: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: initial;
}

.prop-tp>li {
  margin-right: 22px;
}

.prop-tp>li :last-child {
  margin-right: 0;
}

.clr-search {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7b7b7b;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.clr-search:hover {
  color: var(--body-color);
}

.clr-search img {
  margin-left: 8px;
}

.view {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  border-radius: 163px;
  background: rgba(0, 19, 48, 0.06);
  padding: 15px 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.view:hover {
  background: rgba(64, 71, 83, 0.5);
  color: var(--heading-color);
}

.view img {
  margin-left: 10px;
}

.prop-mid-box {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 39px 44px 0px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px 0px rgba(0, 62, 156, 0.07);
}

.prop-mid-box-tp {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prop-mid-box-tp-img {
  width: 303px;
  overflow: hidden;
  border-radius: 10px;
}

.prop-mid-box-tp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.prop-mid-box-cnt {
  width: calc(100% - 303px);
  padding-left: 30px;
}

.prop-lvel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 90px;
}

.prop-lvel {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 17px;
  border-radius: 50px;
  margin-right: 12px;
  margin-bottom: 14px;
}

.prop-lvel:last-child {
  margin-right: 0;
}

.prop-lvel-blue {
  /* color: var(--dark-primary); */
  color: #0569ff;
  background: rgba(5, 105, 255, 0.1);
}

.prop-lvel-yrll {
  color: #dc9815;
  background: rgba(220, 152, 21, 0.1);
}

.prop-mid-box-cnt h3 {
  margin-bottom: 6px;
}

.prop-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
  /* padding-right: 90px; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.prop-txt p {
  font-size: 14px;
  margin-bottom: 0;
}

.prop-txt .price {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-top: -10px;
}

.prop-lst {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
}

.prop-lst>li {
  padding: 0 28px;
  border-right: 1px solid #e3e3e3;
}

.prop-lst>li:first-child {
  padding-left: 0;
}

.prop-lst>li:last-child {
  border-right: none;
}

.prop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prop-item p {
  font-size: 14px;
  margin-left: 11px;
}

.prop-lst-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.prop-lst-1>li {
  padding-right: 33px;
}

.prop-lst-1>li:last-child {
  padding-right: 0;
}

.prop-item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.prop-item-1 p {
  color: #7b7b7b;
  font-size: 13px;
  font-weight: 600;
  margin-left: 6px;
}

.prop-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prop-date p {
  color: #8a8a8a;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
  padding-right: 15px;
}

.prop-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
}

.prop-btn:hover {
  color: var(--heading-color);
}

.prop-btn img {
  margin-right: 7px;
}

.prop-mid-btm-hd>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 20px;
  border-radius: 10px 10px 0px 0px;
  background: var(--primary-color);
}

.prop-mid-btm-hd>ul>li {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0 20px;
  border-right: 1px solid var(--white-color);
  line-height: 1;
}

.prop-mid-btm-hd>ul>li:first-child {
  padding-left: 0;
}

.prop-mid-btm-hd>ul>li:last-child {
  padding-right: 0;
  border-right: none;
}

.prop-table table {
  width: 100%;
}

.prop-table table thead tr {
  background: #e0edff;
}

.prop-table table thead tr th {
  color: #001330;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  border-right: 1px solid #b9c9de;
}

.prop-table table tr td span {
  color: #374044;
  font-size: 20px;
  font-weight: 700;
}

.prop-table table tr td p {
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 700;
}

/* SB end 11.9.23 */

/* AD 12/09/2023 */

.prop-table table thead tr th {
  text-align: center;
  padding: 10px 10px;
}

.prop-table table thead tr th:last-child {
  border-right: 0;
}

.prop-table table tbody tr td {
  border-right: 1px solid #b9c9de;
  border-bottom: 1px solid #b9c9de;
  padding: 5px;
  text-align: center;
}

.prop-table table tbody tr td:last-child {
  border-right: 0;
}

.prop-table table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 15px;
}

.prop-lvel-wrap .fav-btn {
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 24px;
  height: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.prop-lvel-wrap .fav-btn img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.prop-lvel-wrap .fav-btn .fill-icon,
.prop-lvel-wrap .fav-btn:hover .outline-icon,
.prop-lvel-wrap .fav-btn.active .outline-icon {
  display: none;
}

.prop-lvel-wrap .fav-btn:hover .fill-icon,
.prop-lvel-wrap .fav-btn.active .fill-icon {
  display: block;
}

.prop-sec .prop-mid:not(:last-child) {
  margin-bottom: 46px;
}

.prop-listing-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}

.prop-listing-pagination .pagination-nmbr {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 600;
  padding-right: 20px;
  margin: 0;
}

.prop-listing-pagination .pagination-btn-wpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.prop-listing-pagination .pagination-btn-wpr .prev-btn,
.prop-listing-pagination .pagination-btn-wpr .nxt-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #8e8e8e;
}

.prop-listing-pagination .pagination-btn-wpr button,
.slider-arw {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.14);
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.prop-listing-pagination .pagination-btn-wpr button:hover {
  border-color: #b9c9de;
  background-color: #b9c9de;
}

.prop-listing-pagination .pagination-btn-wpr button img,
.related-slider-outer .slick-arrow img {
  width: 6px;
  -o-object-fit: contain;
  object-fit: contain;
  /* padding-top: 1px; */
}

.prop-listing-pagination .pagination-btn-wpr .nxt-btn {
  margin-left: 12px;
}

.prop-listing-pagination .pagination-btn-wpr .nxt-btn button {
  margin-right: 0;
  margin-left: 12px;
}

.related-list-sec .related-listing-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.related-listing-card {
  text-align: center;
}

.related-listing-card .related-listing-img-wpr {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.related-listing-card .related-listing-img-wpr:hover {
  opacity: 0.5;
}

.related-listing-card .related-listing-img-wpr img {
  width: 100%;
  height: 376px;
  -o-object-fit: cover;
  object-fit: cover;
}

.related-listing-card .related-listing-card-txt {
  width: calc(100% - 20px);
  background-color: var(--white-color);
  margin: -40px auto 0;
  position: relative;
  padding: 26px 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 15px 44px 0px rgba(0, 62, 156, 0.21);
  box-shadow: 0px 15px 44px 0px rgba(0, 62, 156, 0.21);
  min-height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.related-listing-card .related-listing-card-txt a {
  color: var(--heading-color);
}

.related-listing-card .related-listing-card-txt a:hover {
  color: var(--dark-primary);
}

/* AD 12/09/2023 end */

/* SUPRATIM STARTS 12.09.2023  */

/* Property map page  */
.prop-sec-row {
  --bs-gutter-x: 13px;
  --bs-gutter-y: 30px;
}

.prop-map-cards::-webkit-scrollbar {
  width: 5px;
  background-color: #d9d9d9;
}

.prop-map-cards::-webkit-scrollbar-thumb {
  border-radius: 40px;
  background-color: #acacac;
}

.our-img {
  position: relative;
}

.card-fav {
  position: absolute;
  bottom: 18px;
  right: 15px;
  z-index: 2;
  width: 18px;
  height: 18px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-fav img {
  width: 11px !important;
  height: 9px;
}

.card-fav:hover {
  background-color: #0569ff;
}

.card-fav:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.prop-map-img {
  width: 100%;
  height: 100%;
}

.prop-map-img img {
  width: 100%;
}

.prop-map-cards {
  height: 922px;
  padding-right: 11px;
  overflow-y: auto;
  margin-left: -12px;
  padding-left: 12px;
  padding-bottom: 40px;
}

.prop-card-row {
  --bs-gutter-x: 11px;
  --bs-gutter-y: 28px;
}

.prop-content {
  margin: 0;
  padding-top: 18px;
  -webkit-box-shadow: 0px 24px 24px 0px rgba(0, 62, 156, 0.1);
  box-shadow: 0px 24px 24px 0px rgba(0, 62, 156, 0.1);
}

.prop-card-col>.our-bx>figure {
  border-radius: 10px 10px 0 0;
  position: relative;
}

.our-img figure {
  border-radius: 10px 10px 0 0;
  height: 199px;
}

.our-img figure a {
  display: block;
  height: 100%;
}

.our-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Webcam Page  */
.webcam-context {
  margin-bottom: 40px;
  padding-top: 35px;
}

.webcam-context h2 {
  font-weight: 800;
  margin-bottom: 45px;
}

.webcam-context p {
  font-style: italic;
  color: var(--black-color);
  font-weight: 500;
  line-height: 1.3;
}

.webcam-article {
  margin-bottom: 30px;
}

.webcam-article h3 {
  color: var(--black-color);
  font-weight: 500;
  margin-bottom: 11px;
  text-transform: none;
}

.webcam-article span {
  font-size: 16px;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--para-font-clr);
  font-weight: 500;
}

.webcam-article p {
  color: var(--para-font-clr);
}

.webcam-article p a {
  color: var(--primary-color);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.webcam-article p a:hover {
  color: var(--heading-color);
}

.cmn-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-pagination li .prev span {
  color: var(--heading-color);
  font-weight: 500;
  margin: 0 17px;
  font-size: 18px;
}

.cmn-pagination li {
  margin-right: 8px;
}

.cmn-pagination li:last-child {
  margin-right: 0;
}

.webcam-gallery {
  position: relative;
}

.webcam-gallery .flw-img-2 {
  bottom: -30px;
}

.page-number {
  font-size: 18px;
  font-weight: 500;
  color: #757575;
  background-color: #dfdfdf;
  border-radius: 50%;
  text-transform: capitalize;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  line-height: 0;
}

.page-number:hover,
span.page-number {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.gallary-card-wrapper {
  max-width: 868px;
}

.gallery-card {
  /* max-width: 868px; */
  margin-bottom: 40px;
}

.gallery-card figure {
  margin-bottom: 0;
}

.gallary-card-wrapper .gallery-card:last-child {
  margin-bottom: 72px;
}

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

.webcam-btn .cmn-btn {
  min-width: 145px;
}

/* Nightlife page  */
.nightlife-row {
  margin-bottom: 50px;
}

.nightlife-txt h2 {
  font-weight: 800;
  max-width: 453px;
}

.nightlife-para p {
  max-width: 570px;
  color: var(--black-color);
}

.bar-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bar-btn li {
  margin-right: 13px;
}

.bar-btn li:last-child {
  margin-right: 0;
}

.bar-btn li a {
  color: var(--heading-color);
  padding: 15px;
  border: 1px solid rgba(197, 197, 197, 1);
  border-radius: 26px;
  height: 54px;
  font-size: 17px;
  font-weight: 500;
}

.bar-btn li a.bar-btn-active {
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.bar-btn-active,
.bar-btn li a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

/* SUPRATIM ENDS */

/* 12.09.23 12:23pm css */
.propary-details.inner-banner {
  min-height: 140px;
  padding: 0;
}

.banner-main-wraper.inner-banner::before {
  opacity: 0.9;
}

.proparty-row {
  --bs-gutter-x: 6px;
  --bs-gutter-y: 6px;
}

.proparty-img-wpr figure {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.proparty-img-wpr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.propary-details-ban {
  padding: 30px 35px 0px 35px;
}

.proparty-column-right .proparty-img-wpr {
  height: calc(50% - 3px);
}

.proparty-column-right .proparty-img-wpr:not(:last-child) {
  margin-bottom: 6px;
}

.apartment-alpages-warper {
  padding: 72px 0 0px;
}

.alpages-topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}

.alpages-listing li {
  display: inline-block;
  margin: 0 20px;
  line-height: 1;
}

.alpages-listing li:first-child {
  margin-left: 0;
}

.alpages-listing li:last-child {
  margin-right: 0;
}

.alpages-listing li a,
.alpages-listing li button {
  color: var(--black-color);
  font-size: 17px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  transition: 0.5s all;
}

.alpages-listing li a img {
  margin-right: 8px;
}

.alpages-listing li button i {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 19px;
}

.alpages-listing li a:hover,
.alpages-listing li button:hover {
  color: var(--primary-color);
}
.alpages-left-in h1,
.alpages-left-in h2 {
  margin-bottom: 35px;
}

.bold-font {
  font-weight: 800;
}

.copy-h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 19px;
}

.tignes-listing li {
  display: block;
  /* line-height: 1.2; */
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  color: var(--black-color);
}

.tignes-listing li:last-child {
  /* margin-bottom: 0; */
}

.tignes-listing li::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(./images/check-img.svg) no-repeat left center;
  background-size: 100% 100%;
}

.alpages-btn {
  margin-top: 41px;
}

.blue-border .cmn-btn {
  background: transparent;
  color: var(--primary-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--primary-color);
}

.blue-border .cmn-btn img {
  -webkit-filter: invert(38%) sepia(82%) saturate(5385%) hue-rotate(207deg) brightness(97%) contrast(112%);
  filter: invert(38%) sepia(82%) saturate(5385%) hue-rotate(207deg) brightness(97%) contrast(112%);
}

.blue-border .cmn-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.blue-border .cmn-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.alpages-row,
.accommo-row {
  --bs-gutter-x: 74px;
  --bs-gutter-y: 30px;
}

.alpages-right-box {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  padding: 39px 19px 39px 32px;
  border-radius: 10px;
}

.alpages-right-box>p {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.cmn-table table th {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-color);
  min-width: 142px;
  padding: 10px 0;
  vertical-align: baseline;
  line-height: 1;
}

.cmn-table table td {
  padding: 10px 0;
}

.accommodation-warper {
  padding-top: 82px;
  padding-bottom: 157px;
}

.accomo-table.cmn-table table th {
  min-width: 270px;
}

.accomo-table.cmn-table table td,
.accomo-table.cmn-table table th {
  padding: 20px 0;
  color: var(--black-color);
}

.form-row {
  --bs-gutter-y: 25px;
}

.submit-btn {
  margin-top: 30px;
}

.common-form-box {
  border-radius: 10px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 39px 44px 0px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px 0px rgba(0, 62, 156, 0.07);
  padding: 32px 24px 52px;
}

.calender-month-box:last-child {
  border-right: 0;
}

.proparty-map img {
  min-height: 512px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.calender-topbar {
  padding: 27px 20px;
  text-align: center;
  background-color: var(--primary-color);
}

.calender-topbar ul li {
  display: inline-block;
  line-height: 1.2;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  padding-right: 6px;
  margin-right: 6px;
  border-right: 2px solid var(--white-color);
}

.calender-topbar ul li:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.calender-row-wpr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding-bottom: 11px;
  /* flex-wrap: wrap; */
  /* flex: 0 0 auto; */
}

.calender-month-box {
  width: 25%;
  border-right: 1px solid #adbed7;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.calender-head {
  text-align: center;
  padding: 16px 5px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
}

.calender-head strong {
  font-size: 20px;
  color: var(--black-color);
  line-height: 1;
}

.calender-head {
  text-align: center;
  padding: 16px 5px;
  background: #fff;
}

.calender-date-btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.date-day-box {
  width: 25%;
  text-align: center;
  padding: 28px 0 30px;
  background-color: #cfdff8;
}

.date-day-box span {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  color: var(--black-color);
  margin-bottom: 28px;
}

.date-day-box p {
  color: var(--black-color);
}

.date-day-box:nth-child(even) {
  background-color: #cfdff8;
}

.calender-row-wpr {
  scrollbar-color: #0569ff #e7ecf3;
}

.calender-row-wpr::-webkit-scrollbar {
  height: 10px;
}

.calender-row-wpr::-webkit-scrollbar-track {
  background: #e7ecf3;
  border-radius: 30px;
}

.calender-row-wpr::-webkit-scrollbar-thumb {
  background: #0569ff;
  border-radius: 30px;
}

.jacks-row {
  --bs-gutter-x: 75px;
  --bs-gutter-y: 30px;
}

.jacks-topbar h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-transform: capitalize;
}

.jacks-topbar h2 img {
  width: 42px;
  display: inline-block;
  margin-right: 13px;
}

.jacks-topbar p {
  font-weight: 500;
  color: var(--black-color);
  font-style: italic;
}

.jacks-topbar p a {
  color: var(--primary-color);
}

.jacks-topbar p a:hover {
  color: var(--heading-color);
}

.desh-listing li {
  display: inline-block;
  line-height: 1;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid #b3b5ba;
}

.desh-listing li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.desh-listing li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 500;
  color: var(--black-color);
}

.desh-listing li a:hover {
  color: var(--primary-color);
}

.desh-listing li a img {
  display: inline-block;
  margin-right: 10px;
}

.jacks-topbar {
  margin-bottom: 39px;
}

.opening-listing li {
  color: var(--black-color);
  margin-bottom: 10px;
}

.opening-listing li:last-child {
  margin-bottom: 0;
}

.opening-listing li a {
  color: var(--black-color);
}

.opening-listing li a:hover {
  color: var(--primary-color);
}

.opening-listing {
  margin-bottom: 30px;
}

.our-recomendation {
  max-width: 712px;
  margin-right: auto;
}

.our-recomendation p {
  max-width: 614px;
}

.recomendation-title {
  margin-bottom: 53px;
}

.pdf-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 26px;
  border-radius: 100px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
  box-shadow: 0px 14px 24px 0px rgba(5, 105, 255, 0.21);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
}

.pdf-btn:hover {
  color: var(--white-color);
  background: var(--heading-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* .pdf-btn-wpr .pdf-btn:not(:last-child) {
  margin-bottom: 25px;
} */

.pdf-btn-wpr {
  padding-top: 10px;
}

.jacks-map-img {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 47px;
}

.jacks-map-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.jacks-right-box {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  padding: 35px 38px;
  border-radius: 10px;
}

.jacks-right-box select {
  background-color: transparent;
  margin-bottom: 10px;
  height: 35px;
  padding: 0;
  font-weight: 500;
  color: #001330;
  border-radius: 0;
}

.jacks-right-box input[type="search"],
.jacks-right-box input[type="text"] {
  background: url(./images/blue-icons_search.svg) no-repeat left 20px center transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding-left: 55px;
  margin-top: 10px;
}

.jacks-right-box input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--primary-color);
}

.jacks-right-box input:-ms-input-placeholder {
  opacity: 1;
  color: var(--primary-color);
}

.jacks-right-box input::-moz-placeholder {
  opacity: 1;
  color: var(--primary-color);
}

.jacks-right-box input:-moz-placeholder {
  opacity: 1;
  color: var(--primary-color);
}

.cmn-strock-bg {
  padding: 1px;
  position: relative;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(5, 105, 255, 0.1)),
      to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top,
      rgba(5, 105, 255, 0.1),
      rgba(255, 255, 255, 0));
  background: linear-gradient(180deg,
      rgba(5, 105, 255, 0.1),
      rgba(255, 255, 255, 0));
  border-radius: 12px;
}

/* 12.09.23 12:23pm end */

.prop-map-wpr .prop-tp {
  margin-bottom: 36px;
}

.price {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
}

.related-slider,
.related-slider-outer {
  position: relative;
}

.related-slider .related-listing-item {
  padding: 0 18px;
}

.related-slider .slick-list {
  margin: 0 -18px;
  padding-bottom: 50px;
}

.related-sld-sec {
  padding-bottom: 50px;
  overflow-x: hidden;
  position: relative;
}

.related-slider-outer .slider-arw {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.related-slider-outer .slider-arw:hover {
  border-color: #b9c9de;
  background-color: #b9c9de;
}

.related-slider-outer .prev-arw {
  left: -81px;
}

.related-slider-outer .next-arw {
  right: -81px;
}

.releted-sec-img {
  position: absolute;
  bottom: 232px;
  left: -52px;
  width: 143px;
  pointer-events: none;
}

.webcam-row {
  --bs-gutter-x: 38px;
}

.gallery-card h2 {
  font-weight: 500;
  font-size: 35px;
}

.blog-column .cmn-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 58px;
}

.bar-btn-wrapper ul li a {
  min-width: 167px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bar-btn-wrapper ul li a img {
  margin-right: 8px;
}

.bar-btn-wrapper ul li a.cmn-btn2:hover {
  border-color: #b9c9de;
  background-color: #b9c9de;
}

.bar-btn-wrapper .bar-btn:nth-child(2) {
  margin-top: 37px;
  margin-bottom: 63px;
}

.nightlife-column-wpr .related-listing-row {
  --bs-gutter-x: 36px;
  --bs-gutter-y: 40px;
}

.nightlife-column-wpr .related-listing-card-txt a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nightlife-column-wpr .related-listing-card-txt a img {
  margin-right: 10px;
}

.nightlife-column-wpr {
  margin-top: 80px;
}

.nightlife-column-wpr h2 {
  margin-bottom: 40px;
}

.nightlife-head {
  position: relative;
}

.nightlife-head .flw-img-2 {
  top: 22%;
}

.blog-main-wraper {
  position: relative;
  overflow-x: hidden;
}

.blog-main-wraper .flw-img-2 {
  left: inherit;
  right: -33px;
  top: 30%;
}

/* SD START 15.09.23  */

/* support start 19-9-23 */
.our-bx>figure>a {
  height: 280px;
  width: 100%;
}

.our-bx>figure>a>img {
  object-fit: cover;
  height: 100%;
  object-position: center;
}

/* support end 19-9-23 */

/* support start 20-9-23 */
.single-property .comments-area,
.single-property #sidebar {
  display: none;
}

/* support end 20-9-23 */

/* support start 21-9-23 */
.common-form-box .gform_wrapper.gravity-theme input[type="text"] {
  width: 100%;
}

.common-form-box .gform_wrapper.gravity-theme input[type="text"],
.common-form-box .gform_wrapper.gravity-theme input[type="search"],
.common-form-box .gform_wrapper.gravity-theme input[type="tel"],
.common-form-box .gform_wrapper.gravity-theme input[type="password"],
.common-form-box .gform_wrapper.gravity-theme input[type="email"],
.common-form-box .gform_wrapper.gravity-theme select {
  padding: 0 30px;
  font-size: 16px;
}

.common-form-box .gform_wrapper.gravity-theme .gfield textarea.small {
  height: 116px;
}

.common-form-box .gform_wrapper.gravity-theme textarea {
  padding: 17px 30px;
  font-size: 16px;
}

.common-form-box .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 25px;
}

.common-form-box .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin-top: 30px;
}

.common-form-box .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
  margin-bottom: 0;
}

.alpages-listing li a:hover,
.alpages-listing li button:hover {
  color: var(--primary-color) !important;
}

.alpages-listing li {
  cursor: pointer;
}

.shrblkss .sfsi_wDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100% !important;
}

.shrblkss .sfsi_widget {
  float: none !important;
}

.shrblkss .sfsi_shortcode_container .sfsi_wicons {
  margin: 8px;
}

.contacts_modal.mdlbx {
  width: 750px;
}

.fancybox__content>.carousel__button.is-close {
  top: 0;
}

.sub-menu-toggle {
  display: none;
  visibility: hidden;
}

.blog-search-wpr input[type="submit"] {
  background: url(./images/blue-icons_search.svg) no-repeat right 21px center;
  background-size: 24px;
  width: 20px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-search-wpr input[type="submit"]:hover {
  filter: brightness(0);
}

.blog-search-wpr form {
  position: relative;
}

.blog-main-wraper .rowspan {
  --bs-gutter-y: 22px;
}

.blog-search-wpr input[type="text"],
.blog-search-wpr input[type="search"] {
  background: var(--white-color);
  font-size: 15px;
}

.blog-dtls-col a img {
  width: 100% !important;
  height: 100% !important;
}

.blog-left-img a {
  width: 100%;
  height: 100%;
}

.blog-dtls-col .blog-left-img {
  height: 70px;
}

.page-numbers {
  width: 34px;
  height: 34px;
  color: #000;
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  border-radius: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  padding-bottom: 4px;
}

.page-numbers.current {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 700;
}

.cmn-pagination .page-number:last-child {
  margin-right: 0;
}

.page-numbers.next,
.page-numbers.prev {
  font-size: 0;
  padding-bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.page-numbers.next {
  background: url(images/blue-arw.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
}

.page-numbers.prev {
  background: url(images/blue-arw11.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
}

.page-numbers.next:hover {
  background: url(images/blue-arw.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
}

.page-numbers.prev:hover {
  background: url(images/blue-arw11.svg) no-repeat;
  background-position: right center;
  background-size: 20px;
}

.page-numbers.next:hover,
.page-numbers.prev:hover {
  filter: brightness(0);
}

.page-numbers:hover {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 700;
}

.search-no-results .blog-main-wraper h2 {
  text-align: center;
}

.alert-info {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 20px;
}

.gform_required_legend {
  display: none;
}

.navbar-nav>li {
  padding-bottom: 10px;
}

.main-head .sub-menu {
  border: 0;
  border-radius: 4px;
}

.main-head .sub-menu li,
.main-head .sub-menu li a {
  font-size: 13px;
}

.main-head .sub-menu li a {
  padding: 10px 6px 10px 6px;
}

.main-head .sub-menu {
  width: 225px;
  padding: 12px 10px;
}

/* support end 21-9-23 */

/* support start 22-9-23 */
.best-bars-divss,
.best-left-divs-area {
  /* margin-bottom: 20px; */
}

.blog-column .best-left-divs-area:last-child {
  margin-bottom: 0;
}

.best-sec-hd {
  margin-bottom: 30px;
}

.bar-wrapper .flw-img-2 {
  z-index: -1;
}

.bar-btm-div-sec .barbtm-rowspan,
.bar-row .bstrows {
  --bs-gutter-y: 20px;
}

.mbl-dwnld-blk .mbl-dwnld-divss:last-child {
  margin-bottom: 0;
}

.mbl-dwnld-divss {
  margin-bottom: 30px;
}

.prop-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  scrollbar-color: #0569ff #e7ecf3;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.prop-table::-webkit-scrollbar {
  height: 4px;
  scroll-margin-bottom: 20px;
}

.prop-table::-webkit-scrollbar-track {
  background: #e7ecf3;
  border-radius: 30px;
}

.prop-table::-webkit-scrollbar-thumb {
  background: #0569ff;
  border-radius: 30px;
}

.img-slider-wpr {
  position: relative;
}

.arrow_control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.imgitemss-innr img {
  width: 100%;
}

.photo-modals .btn-close {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 100%;
  z-index: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 6px;
  top: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.photo-modals .modal-content {
  position: relative;
}

.img-slider-arrow.slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 2px solid var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  z-index: 2;
  cursor: pointer;
  background: var(--white-color);
}

.img-slider-arrow.slick-arrow img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.img-slider-arrow.slick-arrow:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.img-slider-arrow.slick-arrow:hover img {
  filter: brightness(0) invert(1);
}

.photo-modals .btn-close img {
  width: 12px;
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.photo-modals .btn-close:hover {
  background: var(--black-color);
}

.photo-modals .btn-close:focus {
  outline: 0;
  box-shadow: none;
}

.vid-slider-wpr {
  position: relative;
}

.viditms-innr .vidcls {
  width: 100%;
  height: 100%;
}

.vido-modal .modal-dialog {
  max-width: 700px;
}

.cmnpopup-btnss {
  display: flex;
  /* display: flex;
  /* display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox; */
  align-items: center;
}

.search-wraper-outer li {
  width: 13.5%;
  padding-right: 12px;
  margin-right: 12px;
}

/* .search-wraper-outer li:last-child {
  width: 15%;
} */

/* .search-wraper-outer li:nth-last-child(2) {
  width: 8%;
} */

.search-wraper-outer input[type="submit"] {
  background: url(./images/search-icon.svg) no-repeat left 33px center var(--primary-color);
  background-size: 18px;
  padding-left: 74px;
  padding-right: 37px;
}

.search-wraper-outer input[type="submit"]:hover {
  background: url(./images/search-icon.svg) no-repeat left 33px center var(--primary-color);
  background-size: 18px;
  background-color: var(--heading-color);
}

.search-wraper-outer {
  padding: 22px 40px;
}

.page-template-properties-list-view .prop-txt p {
  max-width: 520px;
}

.search-wraper-outer .hasDatepicker {
  border: 0;
  height: auto;
  color: var(--heading-color);
  padding: 0;
  padding-right: 18px;
  background: url(./images/blck-dropdwn.svg) no-repeat right center;
  background-color: transparent;
  background-size: 12px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0;
}

/* support end 22-9-23 */

/* support start 25-923 */
.navbar-brand {
  width: 100px;
}

.navbar-nav>li {
  margin: 0 18px;
}

.defult-page-cls {
  padding: 80px 0;
}

.defult-page-cls .entry-title {
  text-align: center;
  margin-bottom: 20px;
}

.main-head {
  top: 50px;
}

/* contact-us start*/
.conform-wrap {
  padding: 80px 0;
}

.conform-wrap .top-para {
  margin-bottom: 20px;
  text-align: center;
}

.conform-wrap .top-para p:not(:last-child) {
  margin-bottom: 10px;
}

.conform-wrap .gform_wrapper.gravity-theme input[type="text"],
.conform-wrap .gform_wrapper.gravity-theme input[type="tel"],
.conform-wrap .gform_wrapper.gravity-theme input[type="email"] {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.conform-wrap .gform_wrapper.gravity-theme textarea,
.conform-wrap .gform_wrapper.gravity-theme select {
  padding-right: 30px;
  padding-left: 20px;
}

.conform-wrap .gform_footer {
  justify-content: center;
}

/* contact-us end*/
/* meribel-piste-maps start*/
.jack-left-col {
  width: 80%;
}

.jacks-right-col {
  width: 20%;
}

/* meribel-piste-maps end */

#glt-translate-trigger {
  display: none;
}

#google_language_translator select.goog-te-combo {
  background-color: transparent;
  border: none !important;
  outline: none !important;
  color: #fff !important;
  margin: 0 !important;
  width: 130px !important;
  background-image: url("./images/white-dropdwn.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right center;
  padding-right: 15px !important;
  padding-left: 10px;
}

#google_language_translator {
  display: flex;
  align-items: center;
}

/* new html page meribel-sec */
.meribel-sec {
  padding: 80px 0;
}

.meribel-title {
  /* color:#ff6600; */
  margin-bottom: 15px;
  /* font-size: 48px; */
}

.meibel-hthree {
  color: #212221;
  /* font-size: 28px; */
  margin-bottom: 20px;
}

.meribel-sec p {
  color: #212221;
  font-size: 16px;
}

.meibel-hfor {
  font-size: 18px;
  font-style: italic;
}

.table-main {
  padding-top: 40px;
}

.table-hfive {
  /* color:#ff6600; */
  font-size: 20px;
  margin-bottom: 15px;
}

.table-outer table {
  width: 100%;
}

.table-outer table th {
  margin-bottom: 0;
  padding: 10px;
  background: #f1f1f1;
  font-size: 16px;
  font-weight: 700;
  color: #212221;
  line-height: calc(1.75 * 0.5 * 16px);
  border: 1px solid #e1e1e1;
  vertical-align: middle;
}

.table-outer table td {
  padding: 10px 10px;
  line-height: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #212221;
  border: 1px solid #e1e1e1;
  vertical-align: top;
}

.table-outer table {
  margin-bottom: 15px;
}

.table-outer {
  margin-bottom: 20px;
}

/* new html page meribel-sec end */
/* support end 25-923 */

/* support start 26-9-23 */
.guide-heads span {
  font-weight: 700;
}

.ul-heads {
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-column .tignes-listing {
  margin-bottom: 20px;
}

.best-left-divs-area .bstrows .related-listing-card {
  height: inherit;
}

.tignes-listing li span {
  color: var(--primary-color);
}

.tguls {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
}

.tguls li {
  margin-bottom: calc(1.75 * 1 * 16px);
  display: inline-block;
  list-style-type: none;
  width: 48%;
}

.tguls li .pdf-btn {
  background-color: #e5e5e5;
  color: #6d6d6d;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 25px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  background-color: #e5e5e5;
  border: 0;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  width: 100%;
  text-align: center;
}

.tguls li .pdf-btn i {
  margin-right: 3px;
}

.merifig {
  margin-bottom: 20px;
}

.merible-story-li .cmn-h4 {
  margin-bottom: 10px;
}

.merible-story-li-uppr {
  margin-bottom: 20px;
}

.merible-story-li-uppr .date-text {
  margin-bottom: 0;
}

.merible-story-li {
  margin-bottom: 30px;
  overflow: hidden;
}

.merible-story-ul .merible-story-li:last-child {
  margin-bottom: 0;
}

.merible-story-li-uppr .cmn-h4 a {
  color: var(--black-color);
}

.merible-story-li-uppr .cmn-h4 a:hover {
  color: var(--primary-color);
}

.merible-story-li-areas p a {
  color: var(--primary-color);
}

.merible-story-li-areas p a:hover {
  color: var(--heading-color);
}

.merible-story-ul {
  margin-top: 20px;
}

.lift-pass-offc-blk {
  padding-top: 40px;
}

.lift-faq-hd {
  font-weight: 700;
  margin-bottom: 20px;
}

.lift-faq-li p {
  position: relative;
  padding-left: 18px;
}

.lift-faq-li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--black-color);
}

.lift-faq-li {
  margin-bottom: 25px;
}

.lift-faq-ul .lift-faq-li:last-child {
  margin-bottom: 0;
}

.lift-pass-offc-blk p a {
  color: var(--primary-color);
}

.lift-pass-offc-blk p a:hover {
  color: var(--heading-color);
}

.merifig img {
  width: 100%;
}

.lift-pass-offc-blk .tignes-listing {
  margin-bottom: 0;
}

.best-left-divs-area {
  padding-top: 20px;
}

.guide-span-txt {
  margin-bottom: 30px;
  display: block;
}

.centercols .guide-span-txt {
  margin-bottom: 0;
}

/* advanced search sec start */
.custm-checkbox-ss {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -10px -20px;
}

.custm-checkbox-ss label {
  padding-left: 24px;
  line-height: 1;
  width: 33.33%;
  padding: 10px 20px;
  padding-left: 44px;
}

.custm-checkbox-ss label span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  color: #2f2f2f;
  position: relative;
}

.custm-checkbox-ss label input[type="checkbox"]+span::before {
  width: 18px;
  height: 18px;
  border: 1px solid #9d9d9d;
  border-radius: 3px;
  left: -24px;
  top: 2px;
}

.custm-checkbox-ss.form_input_check label input[type="checkbox"]+span::after {
  width: 18px;
  height: 18px;
  background: url(images/tick-ss.svg) no-repeat center center;
  background-size: 15px;
  left: -24px;
  top: 2px;
}

.fltr-btn00 {
  color: #7b7b7b;
  padding: 0;
  padding-right: 16px;
  background: url(images/grey-arw.svg) no-repeat right center;
  background-size: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: initial;
  cursor: pointer;
}

.search-bar-wpr-in {
  display: none;
  background: var(--white-color);
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.fltr-frm-blks-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}

.fltr-frm-blks-btm .clearbtn1 {
  color: var(--primary-color);
}

.fltr-frm-blks-btm .clearbtn1:hover {
  color: var(--black-color);
}

.search-bar-wpr-in .frm-hdng {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 24px;
}

/* advanced search sec end */
.merible-story-li-uppr .cmn-h4 a br {
  display: none;
}

.jacks-right-box input[type="text"].hasDatepicker {
  border: 0;
  height: auto;
  padding: 0;
  padding-right: 18px;
  background: url(images/down-arrow.svg) no-repeat calc(100% - 23px) center var(--inputbg);
  background-color: transparent;
  background-size: 12px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0;
  margin-bottom: 10px;
  height: 35px;
  font-weight: 500;
  color: #001330 !important;
  border-radius: 0;
  margin-top: 0;
}

.jacks-right-box input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #001330;
}

.jacks-right-box input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  color: #001330;
}

.jacks-right-box input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #001330;
}

.jacks-right-box input[type="text"]:-moz-placeholder {
  opacity: 1;
  color: #001330;
}

.jacks-right-box input[type="submit"] {
  width: 100%;
  background-position: calc(50% + 38px);
}

/* related img sec */
.related-listing-card {
  height: inherit;
}

.related-listing-card .related-listing-card-txt {
  min-height: 100px;
}

/*  related img sec */
.ftr-nav-link>li {
  padding: 0 8px;
}

.nightlife-txt h2 br {
  display: none;
}

.nightlife-head .btm-descsec {
  margin-bottom: 50px;
}

.nightlife-head .btm-descsec p {
  color: var(--black-color);
}

.bar-btn li {
  margin-bottom: 10px;
}

.bar-btn {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btm-descsec .tignes-listing {
  margin-bottom: 25px;
}

.pdf-btn img {
  margin-left: 4px;
}

/* support end 26-9-23 */
.error-page {
  padding-top: 40px;
}

.error-page img {
  border-radius: 10px;
}

.bth-buton {
  max-width: fit-content;
  display: block;
  margin: 25px auto 40px;
}

/* support start 27-9-23 */

/* .translated-ltr .main-head .container {
  max-width: 1500px;
}
.translated-ltr .main-head .container .navbar-nav > li > a {
  font-size: 13px;
}
.translated-ltr .navbar-nav > li {
  margin: 0 10px;
} */

.defult-page-cls .tignes-listing {
  margin-bottom: 30px;
}

.defult-page-cls p a {
  color: var(--primary-color);
}

.defult-page-cls p a:hover {
  color: var(--heading-color);
}

.translated-ltr .banner-bottom-search-bar .container {
  max-width: 1400px;
}

.translated-ltr .banner-bottom-search-bar .container .search-wraper-outer {
  max-width: 1258px;
}

.translated-ltr .banner-warepr-outer {
  padding: 10px 8px 0;
}

.cont-wrap {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  padding: 25px;
  border-radius: 10px;
}

.translated-ltr .search-wraper-outer form ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.translated-ltr .search-wraper-outer li:last-child {
  width: 16.5%;
}

.jacks-topbar h2 img {
  width: 28px;
}

.jacks-topbar .cmn-h2 {
  font-size: 33px;
}

.norslt-dvs p {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--black-color);
}

/* support end 27-9-23 */

/* support start 28-9-23 */
.side-menu-wpr {
  position: relative;
  padding-left: 50px;
  padding-top: 10px;
}

.side-menu-wpr>.side-menu-toggler {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.side-menu-wpr .side-menu-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #f9f9f9;
  padding: 0;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  display: none;
  margin: 0;
  min-width: 260px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.side-menu-wpr .side-menu-dropdown>li {
  list-style: none;
  border-bottom: 1px solid #ededed;
  margin: 0;
  padding: 8px 0;
}

.side-menu-dropdown>li>a {
  font-size: 19px;
  margin-bottom: 0;
  font-family: var(--body-font);
  padding: 10px 25px;
  line-height: 1.3;
  position: relative;
  cursor: pointer;
  color: var(--black-color);
  width: 100%;
  display: block;
  pointer-events: none;
  font-weight: 700;
}

.side-menu-dropdown>li>.sub-menu {
  margin: 5px 0;
  padding: 0 0 0 34px;
  background-color: transparent;
  position: static;
  width: 100%;
  display: block;
  border: 0;
}

.side-menu-dropdown>li>.sub-menu>li {
  list-style: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.side-menu-dropdown>li>.sub-menu a {
  font-size: 15px;
  line-height: 1.2;
  color: var(--black-color);
  display: block;
  width: 100%;
  padding: 6px 40px 6px 0;
  font-family: var(--body-font);
}

.navbar-nav.mobile {
  display: none;
}

.side-menu-dropdown>li.opction-cls a {
  cursor: pointer;
  pointer-events: visible;
}

.eng-lang .navbar-nav>li {
  margin: 0 33px;
}

/* support end 28-9-23 */

/* support start 3-10-23 */
.calender-row-wpr-final .date-day-box {
  min-width: 15%;
  text-align: left;
}

.tbl-price-clsss {
  text-align: center;
  color: var(--heading-color);
  font-weight: 600;
}

.date-day-box span {
  margin-bottom: 15px;
}

.date-day-box p {
  margin-bottom: 15px;
}

.date-day-box p a {
  color: var(--primary-color);
  text-decoration: underline !important;
}

.date-day-box p a:hover {
  text-decoration: none !important;
}

/* support end 3-10-23 */

/* support end 4-10-23 */

.header-list li.property_currency_exchange .currency-switcher {
  width: 0 !important;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic.wSelect {
  border: none;
  background-color: transparent;
  color: #fff;
  margin-bottom: 0;
  width: auto !important;
  min-width: auto;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic.wSelect:hover {
  background-color: transparent;
  box-shadow: none;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic.wSelect:focus {
  background-color: transparent;
  box-shadow: none;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-option-icon {
  padding: 0;
  padding-left: 0 !important;
  margin: 0;
  padding-right: 20px;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-arrow {
  height: 12px;
  width: 12px;
  top: 5px;
  background: url(images/white-dropdwn.svg) no-repeat center;
  background-size: 12px;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic.wSelect-active {
  box-shadow: none;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic .wSelect-options-holder {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic .wSelect-options {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  height: auto !important;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic .wSelect-option {
  padding: 5px 5px;
}

.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic .wSelect-option-selected,
.header-list li.property_currency_exchange .currency-switcher-form .wSelect-theme-classic .wSelect-option:hover {
  background-color: #0569ff;
}

.date-day-box span.wpcs_price_symbol {
  display: inline-block;
  margin-bottom: 0;
}

/* support start 19-10-23 */
.custom_features_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.custom_features_list li:last-child {
  margin-bottom: 0;
}

.custom_features_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--primary-color);
}

/* support end 19-10-23 */

/* support start 20-10-23 */
.search-bar-wpr-in .features_first_row:not(:last-child) {
  margin-bottom: 30px;
}

.feature-frmbx-ss label {
  padding-left: 20px;
}

.feature-frmbx-ss label .ftrss-spanss {
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.feature-frmbx-ss .ftrchk-ss {
  padding-left: 44px;
}

/* support end 20-10-23 */

/* support start 1-11-23 */
.prop-mid-box-tp-slider-wrap {
  position: relative;
  width: 303px;
  height: 100%;
}

.calender-row-wpr-final .date-day-box {
  min-width: 7%;
  padding: 20px 0 20px;
}

.date-day-box span {
  font-size: 16px;
  max-width: 57px;
  margin: 0 auto 15px;
}

.prorltv-btn {
  position: absolute;
  right: 34px;
  bottom: 34px;
}

.prorltv {
  position: relative;
}

.prorltv figure img {
  max-height: 498px;
  min-height: 504px;
}

.glry-popupsss .prop-mid-box-tp-slider-wrap {
  width: 100%;
}

.glry-popupsss .prop-mid-box-tp-slider-wrap .prop-mid-box-tp-img {
  margin: 0 auto;
  width: 100%;
}

.height-pros img {
  max-height: 249px;
  min-height: 249px;
  height: auto;
}

.grymdl-pop .modal-dialog {
  max-width: 800px;
}

/* support end 1-11-23 */
/* support start 2-11-23 */
.prop-lvel-blue a {
  color: #0569ff;
}

.prop-lvel-blue a:hover {
  color: red;
}

.prop-mid-box-cnt h3 a {
  color: var(--heading-color);
}

.prop-mid-box-cnt h3 a:hover {
  color: #0569ff;
}

.prop-mid-box-tp-img a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.prop-txt p a,
.prop-item p a {
  color: var(--body-color);
}

.prop-mid-box-tp-slider-wrap {
  cursor: pointer;
}

.prop-mid-box-tp-slider-wrap .arrow_control {
  display: block;
  left: 0;
  width: 100%;
}

.prop-mid-box-tp-slider-wrap .img-slider-arrow.prev_arrow {
  top: 50%;
  left: 15px;
  position: absolute;
  transform: translateY(-50%);
}

.prop-mid-box-tp-slider-wrap .img-slider-arrow.next_arrow {
  top: 50%;
  right: 15px;
  position: absolute;
  transform: translateY(-50%);
}

/* support end 2-11-23 */

/* supports start 6-11-23 */
.ddboxwraptp {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ddboxwraptp-innr {
  display: flex;
}

.calender-row-wpr-final .date-day-box {
  min-width: 68px;
  width: 100%;
}

.tbl-price-clsss {
  /* background: #cfdff8; */
  background-color: #e6f0ff;
  /* border-right: 1px solid #c6cbd0; */
  padding: 5px 20px;
}

.calender-row-wpr-final .ddboxwraptp:last-child .tbl-price-clsss {
  border-left: 0;
}

.calender-row-wpr-final .ddboxwraptp:last-child .tbl-price-clsss:last-child {
  border-right: 0;
}

.custm-checkbox-ss {
  justify-content: inherit;
}

/* support end 6-11-23 */
/* support start 7-11-23 */
.chsn-proprty-sec h1 {
  font-size: 45px;
}

/* support end 7-11-23 */

/* support start 8-11-23 */
.calender-topbar {
  padding: 12px 20px;
}

.calender-row-wpr-final .date-day-box {
  padding: 6px 20px;
  border-right: 1px solid #c6cbd0;
}

.calender-row-wpr-final .ddboxwraptp:last-child .date-day-box {
  border-right: 0;
}

.prop-mid-box-tp-img a {
  display: block;
  height: 240px;
}

.prop-mid-box-tp-img {
  height: 100%;
}

.ddboxwraptp>.tbl-price-clsss:first-child {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 0;
  padding: 0;
}

.tbl-price-clsss-left,
.tbl-price-clsss-right {
  width: 100%;
  /* border-right: 1px solid #c6cbd0; */
  padding: 10px 0;
  text-align: center;
  background-color: #cfdff8;
}

.calender-row-wpr-final .ddboxwraptp:last-child .tbl-price-clsss-right {
  border-right: 0;
}

.ddboxwraptp-innr .date-day-box p {
  margin-bottom: 0;
}

.tbl-price-clsss-left .dttxtss,
.tbl-price-clsss-right .dttxtss {
  display: block;
  margin-bottom: 4px;
  padding: 0 20px;
  border-bottom: 1px solid #c6cbd0;
}

.dttxtss-num {
  display: block;
  /* font-weight: 400; */
  font-weight: 600;
  padding: 0 20px;
}

.prop-mid-box-tp {
  position: relative;
}

.proanchorsss {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.prop-mid-box-cnt .prop-lst-1 li:not(:first-child) .prop-item-1 {
  position: relative;
  z-index: 999;
  cursor: pointer;
}

/* support end 8-11-23 */

/* support start 9-11-23 */
.calender-box-wpr {
  position: relative;
}

.calender-box-wpr-uppr-tps {
  overflow: auto;
  margin-bottom: 11px;
}

.calender-box-wpr-uppr-tps .calender-row-wpr-final {
  overflow: hidden;
  margin-bottom: 0;
}

.calender-anchor {
  width: 100%;
}

/* support end 9-11-23 */

/* 10.11.23  css */
.nightlife-heading h2 {
  max-width: 100%;
}

.nightlife-heading {
  padding-bottom: 20px;
}

.nightlife-para-two p {
  max-width: 100%;
}

/* 10.11.23  css */

/* 29.11.23 css */
.prop-view-map-wraper .gmp_map_opts {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin: -15px;
}

.prop-view-map-wraper .gmpMapProControlsCon {
  width: 50% !important;
  padding: 15px;
}

.prop-view-map-wraper .gmpMapDetailsContainer {
  width: 50% !important;
  padding: 15px;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlide:hover {
  background-color: transparent !important;
}

.gmpMnlJssorSlider .gmpMmlSlideTitle {
  background-color: var(--dark-primary) !important;
  padding: 5px 15px !important;
}

.gmpMnlJssorSlider .gmpMmlSlideTitle a {
  color: var(--white-color) !important;
}

.prop-view-map-wraper .gmpMmlSlideContent .gmpMmlSlideDescription>p {
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-view-map-wraper .gmpMmlSlideContent .our-lst p {
  margin-left: 0;
}

.prop-view-map-wraper .gmpMmlSlideContent .gmpMmlSlideDescription {
  padding: 10px 15px;
}

.prop-view-map-wraper .jssorb03v {
  display: none;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlides {
  width: 100% !important;
  padding: 0 10px 0 0 !important;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  height: auto !important;
  overflow: auto !important;
  justify-content: space-between;
  margin-bottom: -20px !important;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlides .gmpMnlJssorSlide {
  width: 48% !important;
  flex: 0 0 auto;
  margin: 0 !important;
  height: auto !important;
  overflow: auto !important;
  border-radius: 10px;
  box-shadow: none;
  margin-bottom: 20px !important;
  border: 1px solid #eee;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlides>div:not(.gmpMnlJssorSlide) {
  display: none;
}

.prop-view-map-wraper .gmpMnlJssorSlider {
  width: 100% !important;
}

.prop-view-map-wraper .gmpMnlJssorSlides>* {
  position: static !important;
  height: auto !important;
}

.prop-view-map-wraper .gmpMnlJssorSlider>div {
  width: 100% !important;
}

.prop-view-map-wraper .gmpMnlJssorSlides>div:first-child {
  margin: 0 !important;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMmlSlideImg,
.prop-view-map-wraper .gmpMnlJssorSlider .gmpMmlSlideContent {
  width: 100% !important;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMmlSlideImg img {
  height: 100% !important;
  object-fit: cover;
}

.prop-view-map-wraper .gmpMnlJssorSlider .gmpMmlSlideContent ul li:not(:last-child) {
  margin-bottom: 5px;
}

.prop-list-none .prop-tp li:first-child,
.prop-list-none .prop-tp li:nth-child(2) {
  display: none;
}

.prop-view-map-wraper {
  scrollbar-width: thin;
  scrollbar-color: #d9d9d9 #f1f1f1;
}

/* width */
.prop-view-map-wraper ::-webkit-scrollbar {
  width: 5px;
  border-radius: 40px;
}

/* Track */
.prop-view-map-wraper ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.prop-view-map-wraper ::-webkit-scrollbar-thumb {
  background: #d9d9d9;
}

.gm-style-iw .egm-marker-iw ul li .our-lst p {
  margin-left: 0;
  font-family: var(--body-font);
}

.gm-style-iw .egm-marker-iw ul li:not(:last-child) {
  margin-bottom: 8px;
}

/* 29.11.23 css */

/* 06.12.23 start */

.prop-map-sec .prop-mid-box-tp-slider-wrap.our-img,
.prop-map-sec .prop-mid-box-tp-img {
  width: 100%;
}

.prop-map-sec .prop-lst>li {
  width: 100%;
  padding: 0 0 10px;
  border: none;
}

.gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
  max-width: 300px;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect {
  background-color: rgba(0, 0, 0, 0.9) !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  top: 10px !important;
  left: 10px !important;
  right: inherit !important;
  transition: 0.5s all;
}

.gm-ui-hover-effect>span {
  margin: 0 !important;
  filter: brightness(0) invert(1);
}

.mapLocate_popUp figure {
  width: 100%;
  margin-bottom: 0;
}

.mapLocate_popUp figure img {
  width: 100%;
}

.mapLocate_txt_wrp {
  padding: 15px;
}

.mapLocate_txt_wrp p {
  color: #717171;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.mapLocate_txt_wrp p:last-child {
  margin-bottom: 0;
}

.mapLocate_txt_wrp p span {
  color: var(--body-color);
  font-weight: bold;
}

/* 06.12.23 end */

/* support start 22/12/23 */
.calender-row-wpr-final .ddboxwraptp {
  min-width: 121px;
  border-right: 1px solid #c6cbd0;
}

.calender-row-wpr-final .ddboxwraptp:last-child {
  border-right: 0;
}

.calender-row-wpr-final .ddboxwraptp .tbl-price-clsss {
  min-height: 55px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* support end 22/12/23 */

/* 31.01.24 start */

.alpages-listing {
  display: flex;
}

.alpages-listing li button.simplefavorite-button.active {
  opacity: 1;
}

.shortlist_wrappr .sec-head h1,
.shortlist_wrappr .sec-head {
  margin-bottom: 15px;
}

.shortlist_url_wrap {
  margin-bottom: 35px;
}

.shortlist_url_wrap a {
  color: var(--primary-color);
}

.shortlist_url_wrap a:hover {
  color: var(--heading-color);
}

.shortlist_url_wrap a:not(:last-child) {
  margin-bottom: 15px;
}

#send-friend-popUp {
  max-width: 450px;
  width: 100%;
}

/* .send-frnd-popup-innr h2 {
  margin-bottom: 15px;
} */
.details-wrppr {
  margin-bottom: 25px;
}

.details-wrppr h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.details_field_wrappr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.details_field_wrappr:not(:last-child) {
  margin-bottom: 15px;
}

.details_field_wrappr label {
  width: 40%;
  font-size: 18px;
  font-weight: 600;
}

.details_field_wrappr input[type="text"],
.details_field_wrappr input[type="email"] {
  width: 60%;
}

.send_frnd_submitbtn_wrap {
  text-align: right;
  margin-top: 15px;
}

.send_frnd_recaptch {
  text-align: right;
}

.side-menu-dropdown li:nth-last-child(1) a,
.side-menu-dropdown li:nth-last-child(2) a {
  pointer-events: all;
}

.send-frnd-popup-form-wrap input[type="text"],
.send-frnd-popup-form-wrap input[type="email"] {
  text-transform: none;
}

/* 31.1.24 end */

/* 06.02.24 css start */
.search-wraper-outer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -8px;
  margin-bottom: -8px;
}

.search-wraper-outer ul li {
  width: 12.5%;
  margin-right: 0;
  height: auto;
  /* padding-top: 8px; */
  /* padding-bottom: 8px; */
  padding-left: 8px;
  border-right: 1px solid #c7c7c7;
  margin-bottom: 0;
  flex: 0 0 auto;
  position: relative;
}

.search-wraper-outer ul li:last-child {
  margin-right: 0;
  border-right: 0;
  padding-right: 0;
  width: 17%;
}

.search-wraper-outer ul li:last-child {
  text-align: right;
}

/* 06.02.24 css end */

/* 14.02.2024 */
.property_grid_view {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -24px -12px;
}

.property_grid_view>.prop-mid {
  width: 33.33%;
  padding: 0 12px 24px 12px;
}

.property_grid_view .prop-mid-box-tp-slider-wrap {
  width: 100%;
}

.property_grid_view .prop-mid-box-cnt {
  width: 100%;
  padding-left: 0;
}

.property_grid_view .prop-mid-box-tp-img {
  width: 100%;
}

.property_grid_view .prop-lst>li {
  padding: 0 10px;
}

.property_grid_view .prop-mid-box {
  height: 100%;
}

.property_grid_view .prop-mid-box-cnt {
  padding-top: 15px;
}

.property_grid_view .prop-lvel-wrap {
  padding-right: 0;
}

/* 14.02.2024 */

/* 15.02.24 css satrt */
.pdf-btn-wpr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: -20px;
  margin-right: -20px;
}

.pdf-btm-wpr .pdf-btn {
  margin-bottom: 20px;
  margin-right: 20px;
  width: calc(33.33% - 20px);
}

.best-left-divs-area .guide-bxss {
  /* padding-bottom: 30px; */
}

.best-bars-divss:last-child,
.best-left-divs-area:last-child {
  margin-bottom: 0;
}

/* 15.02.24 css end */

/* 15-02-2024 */

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
  font-weight: bold;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes {
  display: none;
  border: none;
  width: 100%;
  top: 20px;
  left: 0px;
  position: absolute;
  background: rgb(255, 255, 255);
  right: 0;
  margin-top: 8px;
}

#checkboxes label {
  display: block;
  padding: 6px;
  background: #0569ff;
  color: var(--white-color);
}

#checkboxes label:hover {
  background-color: red;
}

#checkboxes label:has(input[type="checkbox"]:checked) {
  background-color: red;
}

.multiselect {
  position: relative;
}

#checkboxes label input[type="checkbox"] {
  /* margin-right: 8px; */
  display: none;
}

.search-wraper-outer {
  padding: 40px;
}

.search-wraper-outer ul {
  justify-content: center;
}

/* .search-wraper-outer ul li{
  margin-bottom: 15px;
} */

.search-wraper-outer ul li:last-child {
  margin-bottom: 0;
}

/* 15-02-2024 */

/* 19/2/24 work start */
.slider-val-div {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border: 1px solid #eee;
  padding: 6px;
  min-width: auto;
  width: 100%;
}

.sld-val-item {
  display: flex;
  align-items: center;
  font-family: var(--body-font);
  border-right: 1px solid #ccc;
  padding: 0px 15px;
  width: 50%;
}

.sld-val-item>span {
  margin-right: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #7b7b7b;
}

.sld-val-item input {
  padding: 2px;
  height: auto;
  background: transparent;
  min-width: auto;
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
}

.slider-keypress1 {
  margin: 15px 10px 15px 0px;
}

.noUi-connect {
  background: var(--primary-color) !important;
}

.noUi-horizontal {
  height: 8px;
}

.noUi-horizontal .noUi-handle {
  width: 24px !important;
  height: 24px !important;
  top: -10px !important;
  border-radius: 100%;
  background: rgb(5 105 255);
  border: 0px;
  box-shadow: 0px 0px 5px 0px rgba(5, 105, 255, 0.3);
  border: 3px solid #fff;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none !important;
}

.noUi-horizontal .noUi-tooltip {
  font-size: 12px;
  padding: 0px;
  border: 0px;
  color: #7b7b7b;
  font-weight: 400;
  font-family: sans-serif;
  display: none;
}

.sld-val-item:last-child {
  border: 0px;
}

.noUi-target {
  height: 8px !important;
}

.accommo-left-in .custom_features_list li {
  width: 48%;
  line-height: 1.2;
}

.accommo-left-in .custom_features_list {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}

/* 19/2/24 work end */

/* 27.02.24 start */

.prop-sec .grid_prop_mid:not(:last-child) {
  margin-bottom: 25px;
}

.grid_extra_wrap.our-bx {
  position: relative;
}

.grid_extra_wrap .our-level a {
  color: var(--white-color);
}

.grid_extra_wrap .prop-mid-box-tp-img a {
  height: 280px;
}

.grid_extra_wrap .cmn-h3 a {
  color: var(--heading-color);
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid_extra_wrap .cmn-h3 a:hover {
  color: var(--primary-color);
}

.grid_extra_wrap .prop-lst {
  display: block;
}

.grid_extra_wrap .prop-lst li {
  border-right: none;
  padding: 0 0 12px;
}

.grid_extra_wrap .prop-lst li:last-child {
  padding-bottom: 0;
}

.grid_extra_wrap .prop-item-1 {
  margin-bottom: 0;
}

.grid_extra_wrap .proanchorsss {
  z-index: 1;
}

.Budget_slider_wrap {
  display: none;
  z-index: 1;
  position: absolute;
  min-width: 300px;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0px 14px 14px 0px rgba(0, 62, 156, 0.13);
}

.budget_txt {
  color: var(--heading-color);
  padding-right: 18px;
  background: url(./images/blck-dropdwn.svg) no-repeat right center;
  background-size: 12px;
  font-size: 17px;
  font-weight: 500;
}

/* 27.02.24 end */

/* support start 11/3/24 */
.single .accomo-table.cmn-table table th {
  padding-bottom: 2px;
}

.our-bx.grid_extra_wrap .our-cnt {
  z-index: inherit;
}

.grid_extra_wrap .prop-item-1 {
  position: relative;
  z-index: 2;
}

/* support end 11/3/24 */
.mapLocate_popUp .mapLocate_txt_wrp {
  padding: 18px 17px 40px;
}

.mapLocate_popUp .mapLocate_txt_wrp p {
  font-size: 14px;
  font-family: var(--body-font);
  font-style: normal;
  color: var(--body-color);
  line-height: 1.5;
  font-weight: 700;
}

.mapLocate_popUp .mapLocate_txt_wrp p span {
  font-weight: 400;
}

.mapLocate_popUp .mapLocate_txt_wrp h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.mapLocate_popUp .mapLocate_txt_wrp h3 a {
  color: inherit !important;
}

.mapLocate_popUp .mapLocate_txt_wrp p i {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
}

/*--*/

/* 12/4/24 work start */
.prt_cmn_btn_wrap {
  display: flex;
  justify-content: space-between;
  padding: 15px 0px;
  margin: -10px;
  display: none;
}

#prtWrap.active .prt_cmn_btn_wrap {
  display: flex;
}

.prt_cmn_btn {
  padding: 8px 20px;
  margin: 10px;
  border: 0px;
  background: #0569ff;
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  font-size: 12px;
}

/* 12/4/24 work end */

/* 7/5/24 work start */
.cmn-btn.header-btn.enq {
  min-width: auto;
  font-weight: bold;
}

.cmn-btn.header-btn.shrlst {
  min-width: auto;
  font-weight: bold;
}

.hdr_btn_grp {
  display: flex;
  align-items: center;
  margin: -3px;
}

.hdr_btn_grp>* {
  margin: 3px;
}

.proparty-row {
  position: relative;
}

.propary-details-ban>a {
  display: block;
}

/* 7/5/24 work end */
/* Support starts 14.05.2024  */
.cmn-btn.header-btn.enq,
.cmn-btn.header-btn.shrlst {
  background: transparent;
  padding: 0;
}

.cmn-btn.header-btn.enq img,
.cmn-btn.header-btn.shrlst img {
  filter: brightness(0) invert(1);
  width: 22px;
}

/* Support ends 14.05.2024  */

/* Support starts 15.05.2024  */
img.heart-fill {
  display: none;
}

img.heart-blank {
  display: block;
}

.added-wishlist img.heart-fill {
  display: block;
}

.added-wishlist img.heart-blank {
  display: none;
}

.single-suppliers .jacks-topbar p {
  font-style: normal;
}

/* 16/5/24 work start */
.single-suppliers .pdf-btn-wpr {
  flex-direction: column;
  align-items: flex-start;
}

.single-suppliers .pdf-btn-wpr a {
  width: auto;
}

.single-suppliers .pdf-btn-wpr a:not(:last-child) {
  margin-bottom: 10px;
}

.single-suppliers .pdf-btn img {
  margin-left: 10px;
}

/* 16/5/24 work end */

/* 28/8/24 work start */
.alpages-left-in ul {
  margin-bottom: 22px;
}

.alpages-left-in li {
  display: block;
  line-height: 1.2;
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  color: var(--black-color);
}

.alpages-left-in li:last-child {
  margin-bottom: 0;
}

.alpages-left-in li::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(./images/check-img.svg) no-repeat left center;
  background-size: 100% 100%;
}

/* 28/8/24 work end */


/* suppost ss 25/8/2025 start */
.our-recomendation .pdf-btn-wpr {
  padding-top: 0;
}

.our-recomendation {
  max-width: 100%;
}

.apartment-iframe {
  margin-top: 30px;
}

.alpages-listing li a i {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 19px;
}

.header-list {
  margin-right: 20px;
  margin-left: 15px;
}

.custom-lang-switcher {
  background: #f5f5f5;
  border-radius: 30px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  position: absolute;
}

.custom-lang-switcher .lang-item {
  width: 19px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s;
  display: none;
  padding: 0;
}

.custom-lang-switcher .lang-item img {
  width: 19px;
  display: block;
  margin: 0;
  border-radius: 100%;
  height: 19px;
  object-fit: cover;
}

.custom-lang-switcher .lang-item.active {
  outline: 2px solid #0073e6;
  outline-offset: 2px;
  display: flex;
}

.custom-lang-switcher .lang-item:hover {
  transform: scale(1.1);
}

.custom-lang-switcher:hover .lang-item {
  display: flex;
}

.cus-lang-wrap {
  width: 25px;
  height: 25px;
  position: relative;
}

.side-menu-wpr {
  display: none;
}

.main-head.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #11223c;
  transition: all 0.3s;
}

/* suppost ss 25/8/2025 end */
/* suppost ss 26/8/2025 start */

.ftr-link>li a img {
  width: 25px;
}

.ftr-tp-grd {
  flex-direction: column;
  gap: 20px;
}

.ftr-lavel {
  margin-bottom: 0 !important;
  justify-content: center;
}

.cmn-btn.blog-btn {
  padding: 11px 11px 11px 22px;
  min-width: unset;
}

.cmn-btn.blog-btn svg {
  margin-left: 10px;
  display: inline-block;
  width: 28px;
}

.blog-list {
  margin-top: 30px;
}

.blog-box .f-img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.blog-box .f-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-box .f-img:hover img {
  transform: scale(1.1);
}

.blog-info {
  background: #FFFFFF;
  box-shadow: 0px 34px 64px rgba(42, 49, 120, 0.11);
  border-radius: 10px;
  padding: 24px 15px;
  width: 90%;
  margin: -40px auto 0 auto;
  z-index: 1;
  position: relative;
}

.blog-info .date {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 500;
  font-size: 15px;
  color: #001330;
  margin-bottom: 15px;
}

.blog-info .title {
  margin-bottom: 0;
}

.blog-info .title a {
  color: #001330;
}

.blog-info .title a:hover {
  color: var(--primary-color);
}

.arrow-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  color: #000;
  border-radius: 100%;
  margin-top: -12px;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.arrow-icon-btn:hover,
.arrow-icon-btn:hover svg path {
  background-color: #0569FF;
  color: #fff;
  fill: #fff;
  border-color: #0569FF;
}

.blog-wraper {
  position: relative;
}

body,
html {
  overflow-x: hidden;
  height: auto !important;
}

.blog-shape {
  z-index: -1;
}

.blog-shape1 {
  right: -30px;
}

.blog-shape2 {
  top: 0px;
  right: unset;
  left: -5px;
}

.blog-shape3 {
  top: 50%;
  right: -30px;
}

/* suppost ss 26/8/2025 end */
/* suppost ss 27/8/2025 start */

.Budget_slider_wrap {
  padding: 15px 15px;
}

.search-wraper-outer input[type="submit"] {
  background-position: left 20px center;
  padding-left: 50px;
  padding-right: 25px;
}

.search-wraper-outer ul li:last-child {
  width: 14% !important;
}

.search-wraper-outer ul li {
  width: 12.5% !important;
}

.search-wraper-outer li select {
  font-size: 15px;
}

.budget_txt {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-wraper-outer .hasDatepicker {
  font-size: 15px;
}

/* .search-wraper-outer ul li:first-child{
  width: 10% !important;
} */
.search-wraper-outer ul li:nth-child(2) {
  width: 10.5% !important;
}

.search-wraper-outer ul li:nth-child(3) {
  width: 10% !important;
}

.search-wraper-outer ul li:nth-child(4) {
  width: 16.5% !important;
}

.search-wraper-outer ul li:nth-child(7) {
  width: 11.5% !important;
}

/* suppost ss 27/8/2025 end */
/* suppost ss 1/9/2025 start */
.search-wraper-outer input[type="submit"] {
  background-position: left 20px center !important;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
  margin-bottom: 0 !important;
}

.blog-info .title {
  padding-right: 45px;
}

/* suppost ss 1/9/2025 end */

/* 4/12/25 work start */
.lft-areaa .our-btn {
  margin-top: 0px;
  text-align: left;
}

.lft-areaa {
  margin-bottom: 24px;
}

.lft-areaa a {
  background: #FFFFFF;
  box-shadow: 0px 0px 11px rgba(0, 62, 156, 0.13);
  border-radius: 100px;
  padding: 12px 20px;
  height: auto;
  min-width: auto;
  color: #001330;
  font-size: 17px;
  text-transform: uppercase;
}

.lft-areaa a img {
  margin-right: 8px;
  margin-left: 0px;
}

.left-area-filter {
  padding: 1px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 105, 255, .1)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top, rgba(5, 105, 255, .1), rgba(255, 255, 255, 0));
  background: linear-gradient(180deg, rgba(5, 105, 255, .1), rgba(255, 255, 255, 0));
  border-radius: 12px;
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  border-radius: 10px;
  padding: 1px;
}

.events-filters {
  padding: 24px 18px;
  background: #fff;
  border-radius: 10px;
}

.events-filters form input,
.events-filters form select {
  background-color: transparent;
  margin-bottom: 10px;
  height: 45px;
  padding: 0;
  font-weight: 500;
  color: #001330;
  border-radius: 0;
  padding: 0px 15px;
  border-radius: 40px;
  border: 1px solid #C5C5C5;
  width: 100%;
}

.events-filters .select2-container {
  margin-bottom: 10px;
}

.events-filters button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white-color);
  text-transform: capitalize;
  padding: 14px 27px;
  min-width: 100%;
  border-radius: 100px;
  background: var(--primary-color);
  border: 0px;
  margin-top: 10px;
  transition: all .3s ease-in-out;
}

.events-filters button:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.events-filters .select2-container--default .select2-selection--multiple {
  background-color: transparent;
  border: 1px solid #C5C5C5;
  border-radius: 40px;
  padding: 10px;
  min-height: 45px;
  height: auto;
  display: flex;
  align-items: center;
  color: #001330;
  font-weight: 500;
}

.events-filters .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #C5C5C5;
  box-shadow: none;
}

.events-filters .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #001330;
  opacity: 0.6;
}

.events-filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #001330;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.events-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  margin-right: 6px;
  font-size: 16px;
  width: auto;
  min-width: auto;
  position: static !important;
  background: #fff !important;
  color: #000;
  margin: 0 3px 0 0 !important;
  border-radius: 100%;
}

.events-filters .select2-results__option {
  padding: 8px 12px;
  font-weight: 500;
  color: #001330;
}

.events-filters .select2-results__option--highlighted {
  background-color: #001330;
  color: #fff;
}

.events-filters .select2-dropdown {
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}

.event-main-image {
  position: relative;
  z-index: 1;
  padding-top: 50%;
}

.evnt-img-wrap {
  position: relative;
  margin-bottom: 30px;
}

.event-main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.right-areaa .cancl-btn {
  position: absolute;
  width: auto;
  height: auto;
  padding: 10px 15px;
  right: 15px;
  top: 15px;
  background: #FF0505;
  border-radius: 100px;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.event-category-name a {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #0569FF;
}

.right-areaa .event-title-single {
  font-size: 36px;
}

/* 4/12/25 work end */

/* 05-12-2025 start KM */
.event-map-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 14, 31, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.event-map-inner {
  background: transparent;
  padding: 0;
  border-radius: 0;
  width: 373px;
  position: relative;
  margin: 0 auto;
}

.event-map-inner iframe {
  height: 281px;
  border-radius: 20px;
}

.event-map-modal-wrp {
  width: 100%;
  height: 100vh;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-meta-row {
  display: flex;
  gap: 25px;
  margin: 12px 0 20px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #374044;
  font-weight: 600;
}

#close-map {
  width: 32px;
  height: 32px;
  margin-top: 0;
  background: #ffffff;
  border: none;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -11px;
  transform: rotate(45deg);
  transition: all .4s ease-in-out;
}

#close-map:hover {
  transform: rotate(-45deg);
}

.view-location-btn {
  cursor: pointer;
}

.right-areaa .event-title-single {
  margin-bottom: 12px;
}

.event-content-area {
  color: #374044;
  font-size: 18px;
  line-height: 1.5;
}

.event-content-area h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-transform: capitalize;
  color: #001330;
  margin: 0 0 8px;
}

.event-content-area p strong {
  font-weight: 600;
}

.event-partner-box {
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 14px rgba(0, 62, 156, 0.21);
  border-radius: 10px;
  padding: 38px 0 0;
}

.event-partner-box h2 {
  font-weight: 800;
  text-transform: capitalize;
  color: #001330;
  margin: 0 0 22px;
}

.event-partner-offer {
  background: #0569FF;
  border-radius: 0px 0px 10px 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.30;
  text-transform: capitalize;
  color: #FFFFFF;
  padding: 5px 15px;
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-partner-offer p {
  margin: 0;
}

.event-partner-slider {
  margin: 0 0 60px;
}

.event-partner-slider .slick-track {
  display: flex;
}

.event-partner-slider .slick-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 28px;
}

.event-partner-slider .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D9E4F4;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  transition: all .4s ease-in-out;
}

.event-partner-slider .slick-arrow:hover {
  background: #0569FF;
}

.event-partner-slider .slick-prev {
  left: -20px;
}

.event-partner-slider .slick-next {
  right: -20px;
}

.event-partner-slider .slick-prev::after,
.event-partner-slider .slick-next::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.event-partner-slider .slick-prev::after {
  background-image: url('images/logo-slider-prev-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.event-partner-slider .slick-next::after {
  background-image: url('images/logo-slider-next-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.event-partner-slider .slick-prev:hover::after,
.event-partner-slider .slick-next:hover::after {
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(3035%) hue-rotate(53deg) brightness(123%) contrast(99%);
}

.rd-head {
  padding-bottom: 26px;
}

.related-listing-card .blog-info .title a {
  text-align: left;
}

.select2-container--default .select2-search--inline .select2-search__field {
  border-radius: 0 !important;
  margin-top: 0;
  height: 21px !important;
}

#page-loaderr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  /* transparent white */
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}


#page-loaderr .loaderr {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.rf-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.sub-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  color: #0569FF;
  margin: 0 0 6px;
}

.event-listing-block .sortbyfilter form {
  margin: 0 !important;
}

.event-listing-block .sortbyfilter select {
  background-color: transparent;
  border: 1px solid #E5E5E5;
  width: 169px;
  padding-left: 22px;
  color: #001330;
  height: 48px;
}

.rf-header-inner .cmn-btn {
  min-width: unset;
  padding: 15px 34px;
  font-size: 17px;
  box-shadow: unset;
}

.rf-header {
  margin-bottom: 20px;
}

.event-item {
  background: #FFFFFF;
  box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
  border-radius: 10px;
  position: relative;
  background-clip: padding-box;
  border: solid 1px transparent;
  padding: 25px 16px 25px 23px;
  display: flex;
  flex-wrap: wrap;
}

.event-item::before {
  content: "";
  background: linear-gradient(to bottom, rgba(5, 105, 255, 0.16), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-thumb a {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.event-thumb a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: all .4s ease-in-out;
}

.event-thumb a:hover img {
  transform: scale(1.1);
}

.event-thumb {
  width: 46%;
  padding: 0 15px 0 24px;
}

.event-content-left,
.event-content-right {
  width: 27%;
}

.event-item .cmn-btn {
  padding: 16px 23px;
  min-width: unset;
  margin-top: 16px;
}

.event-item .event-category {
  margin: 0 0 2px;
  display: block;
}

.event-item .event-category a {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: #0569FF;
}

.event-item .event-category a:hover {
  color: #001330;
}

.event-item .event-title a {
  font-weight: 700;
  line-height: 1.30;
  text-transform: capitalize;
  color: #001330;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-item .event-title a:hover {
  color: #0569FF;
}

.event-item .event-title {
  margin-bottom: 10px;
}

.event-item .event-excerpt {
  font-size: 18px;
  line-height: 1.50;
  color: #374044;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-item .event-meta-row {
  gap: 10px;
  margin: 0;
}

.event-item .event-meta-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.event-location {
  cursor: pointer;
}

.events-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 70px 40px 0 70px;
  gap: 17px;
}

.events-pagination .page-numbers {
  width: 35px;
  height: 35px;
  color: #374044;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.events-pagination .page-numbers.current,
.events-pagination .page-numbers:hover {
  background: transparent;
  color: #374044;
  font-weight: 400;
  border: 1px solid #374044;
}

.events-pagination .page-numbers.next,
.events-pagination .page-numbers.prev {
  width: auto;
  height: auto;
  border: none;
  margin-right: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rf-header-inner .cmn-btn.inactive {
  border: 1px solid #E5E5E5;
  background: #ffffff;
  color: #001330;
  box-shadow: unset;
}

.rf-header-inner .cmn-btn.inactive:hover {
  background: #001330;
  color: #ffffff;
  border-color: #001330;
}

#calendar .fc-daygrid-day.fc-day-today {
  background-color: #D2E1F8;
}

#calendar a {
  color: #404753;
}

#calendar .fc-col-header-cell-cushion {
  text-transform: uppercase;
  font-weight: 500;
}

#calendar .fc-theme-standard td,
#calendar .fc-theme-standard th {
  border: 1px solid #E0E0E0;
}

#calendar .fc-daygrid-day-top {
  color: #001330;
  font-weight: 700;
  flex-direction: unset;
}

#calendar .fc-day-other .fc-daygrid-day-top {
  opacity: 1;
}

#calendar .fc-day-other .fc-daygrid-day-top a {
  color: #B5B7BA;
}

#calendar .fc-daygrid-event {
  position: relative !important;
  white-space: unset !important;
}

#calendar .fc-highlight {
  background-color: #D2E1F8 !important;
  border-color: #D2E1F8 !important;
  color: #001330 !important;
}

#calendar .fc-highlight .fc-event-main {
  color: #001330 !important;
}

#calendar .fc-daygrid-block-event .fc-event-time,
#calendar .fc-daygrid-block-event .fc-event-title {
  padding: 6px;
  font-weight: 400;
}

#calendar h2.fc-toolbar-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.30;
  text-transform: capitalize;
  color: #001330;
}

#calendar .fc-toolbar {
  justify-content: unset;
}

#calendar .fc-toolbar .fc-toolbar-chunk:first-child {
  order: 2;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(2) {
  order: 3;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(3) {
  order: 1;
  margin: 0 10px 0 -6px;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(3) button[title="This month"] {
  display: none;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group {
  margin-left: 0;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button {
  background: transparent;
  border: none;
  border-radius: 0;
  color: #B5B7BA;
  padding: 0;
  width: auto;
  height: auto;
  outline: none;
  box-shadow: unset;
}

#calendar .fc-toolbar .fc-toolbar-chunk:nth-child(3) .fc-button-group button:hover {
  color: #001330;
}

.event-card {
  padding: 39px 0 0 48px;
}

.event-col {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-shadow: 0px 34px 64px rgba(42, 49, 120, 0.11);
  border-radius: 10px;
  padding: 28px 48px 22px 30px;
  display: flex;
  flex-wrap: wrap;
}

.event-col .event-image {
  width: 50%;
}

.event-col .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.event-col .event-info {
  width: 50%;
  padding-left: 32px;
}

.rft-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.event-col .event-title {
  text-transform: capitalize;
  color: #001330;
  margin-bottom: 7px;
}

.event-col .event-excerpt {
  font-size: 15px;
  line-height: 1.47;
  color: #404753;
  margin-bottom: 8px;
}

#event-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 18px;
  color: #0569FF;
  line-height: 1;
  transition: all .4s ease-in-out;
}

#event-preview-link:hover {
  color: #001330;
}

/* 05-12-2025 end KM */

/* -- support css start --p.p 11.12.25 */
.event-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 !important;
    background: #fff !important;
    padding: 24px 18px !important;
    border-radius: 10px;
}
/* .left-area-filter:last-child{
  margin-top: 20px;
} */
.event-cat-item {
    background-color: transparent;
    border: 1px solid #C5C5C5;
    border-radius: 40px;
    padding: 13px 26px;
    min-height: 45px;
    height: auto;
    display: block;
    color: #001330;
    font-weight: 500;
    width: 100%;
    /* text-align: center; */
}
.event-cat-item.active,.event-cat-item:hover{
  background-color: var(--primary-color);
  color: var(--white-color);
}
.gallery-btn.prorltv-btn {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}
.event-meta-row .supplier-sect .event-meta-item.event-location span>a{
  color: #374044 ;
}
.apartment-alpages-warper .right-areaa>a{
  display: block;
}

/* -- support css start p.p 02.01.2026 -- */
.right-areaa .events-list-wrapper .event-meta-row {
   
    flex-direction: column;
}
.right-areaa .events-list-wrapper .events-pagination .pagination-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.events-filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 20px;
    margin-left: 0;
    white-space: pre-wrap;
}
.event-info #event-preview-excerpt {
    margin-bottom: 6px;
}
.right-areaa .event-preview-overlay {
    background: rgba(0,0,0,.85);
}
.event-details-page .event-meta-row {
    gap: 10px 25px;
    margin: 12px 0 12px;
}
.event-supplier-row .event-meta-item img{
  max-width: 19px;
  width: 100%;
}
.event-map-modal-wrp {
    max-width: 1140px;
    margin: 0 auto;
}
.event-map-inner {
    margin-left: auto;
}
.rdmore {
    display: inline-block;
    line-height: 0;
    max-width: 15px;
    width: 100%;
    margin-top: 2px;
}
.rdmore img{
  width: 100%;
  transition: none;
}
#event-preview-link:hover img{
  filter: brightness(0) saturate(100%) invert(7%) sepia(35%) saturate(4379%) hue-rotate(202deg) brightness(90%) contrast(104%);
}
/* CSS Modification 25.03.26 */
.take-sec h2{
  font-size: 36px;
  margin-bottom: 30px;
}
.holiday-left-in,.holiday-content{
  line-height: 1.5;
}
p {
  margin: 0 0 16px 0;
}
.our-cnt{
  padding-bottom: 30px;
}
.cmn-btn:hover img{
  -webkit-filter: none;
  filter: none;
}
/* CSS Modification 25.03.26 */
/* 3.3.26 */
.home .cmn-h2,.home h2{
  font-size: 36px;
} 
.guide-bxss ul:not(.tignes-listing)>li{
  margin-bottom: 12px;
} 
 .bar-row .bstrows { 
    margin-top: 10px;
}
.mbl-dwnld-blk { 
    margin-top: 30px;
}

.page-template-image-table-with-headings-no-sidebar  .best-left-divs-area,
.page-template-page-templateguide-to-merible-center-php  .best-left-divs-area,
.page-template-page-templatebest-area-template-php .best-left-divs-area {
    padding-top: 0;
}
.mbl-dwnld-divss .pdf-btn-wpr { 
      margin-right: 0;
    margin-bottom: 0; 
}
.page-template-page-templateguide-to-merible-center-php   .best-sec-hd,
.page-template-page-templatebest-area-template-php  .best-sec-hd {
    margin-bottom: 15px;
}
.page-template-image-table-with-headings-no-sidebar .best-left-divs-area:not(:first-child) .guide-bxss p{
/*  margin-top: 20px;*/
}
 
.best-left-divs-area ul:not(.tignes-listing) {
    list-style: disc !important;
    padding-left: 1.5em !important;
}

.best-left-divs-area ul:not(.tignes-listing)  li{
      list-style: disc !important;
}
.best-left-divs-area ul:not(.tignes-listing)  li {
    margin-bottom: 12px;
}
.page-template-image-table-with-headings-no-sidebar .best-left-divs-area{
  margin-bottom: 20px;
}
/* 30.3.26 */
/* 31.3.26 */
.accommo-left-in .custom_features_list,
.prop-lst-1,
.prop-lst,
.prop-tp,
  .search-wraper-outer ul,
.holiday-listing,
.wpml-ls-legacy-list-horizontal>ul,
.ftr-achr,
.ftr-lavel,
.ftr-nav-link,
.our-cnt ul,
.navbar-expand-lg .navbar-nav{
  padding-left: 0 !important;
  list-style: none !important;
}
.accommo-left-in .custom_features_list li,
.prop-lst-1 li,
.prop-lst li,
.prop-tp li,
.search-wraper-outer ul  li,
.holiday-listing  li,
.wpml-ls-legacy-list-horizontal>ul>li,
.ftr-achr li,
.ftr-lavel li,
.ftr-nav-link li,
.our-cnt ul li,
.navbar-expand-lg .navbar-nav li{ 
  list-style: none !important;
}  
ul:not(.tignes-listing){
   list-style: disc ;
    padding-left: 1.5em ;
 }
ul:not(.tignes-listing)  li{
      list-style: disc ;
}
.mt20{
  margin-bottom: 20px !important;
}
/* 31.3.26 */
/* 1.4.26 */
.apartment-alpages-warper ul:not(.tignes-listing)  li,
.chsn-proprty-sec   ul:not(.tignes-listing)  li {
    margin-bottom: 12px;
}
.apartment-alpages-warper {
    padding: 70px 0;
}
.apartment-alpages-warper h1,
.chsn-proprty-sec h1 {
    font-size: 35px;
}
.calender-box-wpr .calender-anchor p {
    display: inline-block;
    line-height: 1.2;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    padding-right: 6px;
    margin-right: 6px;
    border-right: 2px solid var(--white-color);
}
/* 1.4.26 */
/* 3.4.26 */
.bar-wrapper .blog-column .tignes-listing {
    margin-top: 20px;
}
 
ol:not(.tignes-listing)  li{
    margin-bottom: 10px;
}
.shortlist_wrappr .sec-head h1{
  font-size: 35px;
}
.defult-page-cls.post-6012,
.defult-page-cls.post-6008{
    text-align: center;
}
.our-btn { 
    margin-top: 30px;
    margin-bottom: 20px;
}
.jacks-topbar ul li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}
.entry-content ul li{
  margin-bottom: 10px;
} 
.select2-container--default .select2-results>.select2-results__options li
{
  list-style: none;

}
.select2-container--default .select2-results>.select2-results__options{
  list-style: none;
  padding-left: 0;
}
 
/* 3.4.26 */
/* CSS Modification 12.05.26 */
.main-head.fixed{
  z-index: 100;
}
/* CSS Modification 12.05.26 */



/* 13-07-26 */
.jacks-right-box{
  padding:25px;
}
.jacks-right-box .container{
  max-width:100%;
  padding:0;
}
.jacks-right-box .search-wraper-outer.searchbnbtype{
  padding:0 !important;
  box-shadow:none;
  margin-top:0;
  flex-direction:column;
}   

.jacks-right-box .search-wraper-outer.searchbnbtype .field{
  width:100%;
}

.jacks-right-box .search-wraper-outer.searchbnbtype .field:before{
  width:100%;
  height:1px;
  top:auto;
}
.jacks-right-box .search-btn-wrap {
  width:100%;
  margin-top:5px;
}
.jacks-right-box .search-btn-wrap #searchBtn{
  width:100%;
  border-radius:30px;
}



/* 13-07-26 */


/* 19-08-26 Css Start */
.filter-sidebar-inner.verticalseachbar .search-wraper-outer{
    flex-direction: column;
    border-radius: 10px;
    background-color: var(--white-color);
    -webkit-box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
    box-shadow: 0px 39px 44px rgba(0, 62, 156, 0.07);
    padding: 35px 38px;
    border-radius: 10px;
    padding:18px;
    border:1px solid rgba(0,0,0,0.05);
}

.filter-sidebar-inner.verticalseachbar .search-wraper-outer >*{
  width:100%;
  flex:initial;
}

.filter-sidebar-inner.verticalseachbar .field:before {
    width: 100%;
    height: 1px;
    bottom: 0;
    top: auto;
}
.filter-sidebar-inner.verticalseachbar .search-btn-wrap{
    width: 100%;
    padding: 0;
    margin-top:10px;
}

.filter-sidebar-inner.verticalseachbar #searchBtn {
    width: 100%;
    border-radius: 50px;
}


/* 19-08-26 Css End */



/* ========== responsive css =========== */

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
    padding: 0 12px;
  }
}

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (max-width: 1280px) {
  .holiday-main-wraper {
    overflow-x: hidden;
  }

  .banner-warepr-outer {
    padding: 15px 15px 0;
  }

  .main-head {
    top: 15px;
  }

  .alpages-row,
  .accommo-row {
    --bs-gutter-x: 40px;
  }

  .related-slider-outer {
    padding: 0 50px;
  }

  .related-slider-outer .prev-arw {
    left: 0;
  }

  .related-slider-outer .next-arw {
    right: 0;
  }

  .related-slider .related-listing-item {
    padding: 0 10px;
  }

  .related-slider .slick-list {
    margin: 0 -10px;
  }

  /* support start 27-9-23 */

  .translated-ltr .banner-warepr-outer {
    padding: 6px 6px 0;
  }

  .translated-ltr .search-wraper-outer input[type="submit"] {
    padding-left: 66px;
    padding-right: 33px;
  }

  /* support end 27-9-23 */
}

@media (max-width: 1199px) {

  h1,
  .cmn-h1 {
    font-size: 48px;
  }

  h2,
  .cmn-h2,
  .gallery-card h2 {
    font-size: 32px;
  }

  h3,
  .cmn-h3 {
    font-size: 18px;
  }

  .cmn-gap,
  .apartment-alpages-warper {
    padding: 70px 0;
  }

  .navbar-nav>li {
    margin: 0 7px;
  }

  .navbar-brand {
    width: 100px;
  }

  .banner-main-wraper {
    min-height: 450px;
  }

  .search-wraper-outer li {
    padding-right: 12px;
    margin-right: 12px;
  }

  .search-wraper-outer li select {
    font-size: 14px;
    padding-right: 14px;
  }

  .search-wraper-outer {
    padding: 15px 25px;
    max-width: 960px;
    margin-top: -42px;
  }

  .holiday-img-two {
    -webkit-box-shadow: 0px 34px 44px rgba(5, 39, 90, 0.4);
    box-shadow: 0px 34px 44px rgba(5, 39, 90, 0.4);
  }

  .take-sec {
    min-height: 360px;
  }

  .take-sec h2 {
    font-size: 42px;
  }

  /* .ftr-nav-link > li {
    padding: 0 10px;
  } */

  .ftr-logo {
    max-width: 110px;
    margin-bottom: 30px;
  }

  .ftr-cont-bx {
    width: 33.33%;
    padding: 0 15px;
  }

  .ftr-lavel>li {
    max-width: 82px;
  }

  .our-cnt {
    padding: 51px 17px 30px;
  }

  .ftr-achr>li {
    padding: 0 12px;
  }

  .footer-tp {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  /* SD STARTS 13.09.23  */
  /* Blog apage  */
  .blog-search-wpr input[type="text"],
  .blog-search-wpr input[type="search"] {
    height: 50px;
  }

  .blog-in-row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
  }

  .blog-row {
    --bs-gutter-x: 45px;
    --bs-gutter-y: 20px;
  }

  .blog-box-wpr {
    padding: 20px 15px;
  }

  .blog-box-wpr figure a {
    border-radius: 10px;
  }

  .blog-box-wpr h3,
  .blog-details-warper h3 {
    font-size: 22px;
  }

  .blog-rtl-con h4,
  .blog-list li a,
  .blog-box-wpr p {
    font-size: 16px;
  }

  .blog-main-wraper .flw-img-2 {
    right: -100px;
  }

  .blog-column .cmn-pagination {
    margin-top: 45px;
  }

  /* Nightlife page  */
  .related-listing-card .related-listing-card-txt {
    padding: 10px 15px;
    min-height: 55px;
    margin: -30px auto 0;
  }

  .related-listing-card .related-listing-img-wpr img {
    height: 100%;
  }

  .bar-btn li a {
    font-size: 15px;
  }

  .bar-btn-wrapper ul li a {
    min-width: 150px;
    height: 50px;
  }

  .nightlife-column-wpr {
    margin-top: 40px;
  }

  .bar-btn-wrapper .bar-btn:nth-child(2) {
    margin: 30px 0 0;
  }

  .copy-h3 {
    font-size: 30px;
  }

  .inner-banner h1 {
    font-size: 48px;
  }

  .banner-main-wraper.inner-banner {
    min-height: 320px;
  }

  /* Webcam Page 2:10 PM 13.09.23 */
  .cmn-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .webcam-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 40px;
  }

  .webcam-context h2,
  .webcam-context {
    margin-bottom: 30px;
  }

  /* Jacks bar Page 3:50 PM 13.09.23 */
  .jacks-row {
    --bs-gutter-x: 30px;
  }

  .recomendation-title,
  .jacks-topbar {
    margin-bottom: 35px;
  }

  /* SD ENDS  */

  .prop-tp {
    margin-bottom: 50px;
  }

  .prop-date p {
    margin-bottom: 8px;
  }

  .prop-mid-btm-hd>ul>li {
    font-size: 18px;
  }

  .accomo-table.cmn-table table td,
  .accomo-table.cmn-table table th {
    padding: 15px 0;
  }

  .propary-details.inner-banner {
    min-height: 120px;
  }

  .propary-details-ban {
    padding: 30px 15px 0px 15px;
  }

  .alpages-right-box {
    padding: 30px 19px 30px 20px;
  }

  .calender-month-box {
    width: 33.33%;
  }

  .date-day-box {
    padding: 20px 3px;
  }

  .prop-lst>li {
    padding: 0 10px;
  }

  .prop-item p {
    font-size: 13px;
  }

  .webcam-context {
    padding-top: 40px;
  }

  .prop-content {
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 62, 156, 0.1);
    box-shadow: 0px 10px 10px 0px rgba(0, 62, 156, 0.1);
  }

  /* support start 21-9-23 */
  .navbar-nav>li>a {
    font-size: 13px;
  }

  /* support end 21-9-23 */
  /* support start 22-9-23 */
  .search-wraper-outer li:last-child {
    width: 13%;
  }

  .search-wraper-outer input[type="submit"] {
    background: url(./images/search-icon.svg) no-repeat left 19px center var(--primary-color);
    background-size: 18px;
    padding-left: 42px;
    padding-right: 22px;
  }

  .search-wraper-outer input[type="submit"]:hover {
    background: url(./images/search-icon.svg) no-repeat left 19px center var(--primary-color);
    background-size: 18px;
  }

  .search-wraper-outer li select {
    padding-right: 16px;
    background-size: 11px;
    font-size: 13px;
  }

  .search-wraper-outer .hasDatepicker {
    background-size: 11px;
    padding-right: 16px;
    font-size: 13px;
  }

  /* support end 22-9-23 */
  /* support start 25-923 */
  .navbar-brand {
    width: 80px;
  }

  .navbar-nav>li {
    margin: 0 12px;
  }

  .menu-item-has-children>a {
    padding-right: 9px;
  }

  .navbar-nav>.menu-item-has-children>a::before {
    height: 9px;
    width: 8px;
    background-size: 8px;
  }

  /* support end 25-923 */
  /* support start 26-9-23 */

  .tguls li {
    width: 100%;
  }

  /* related img sec */
  .related-listing-card .related-listing-img-wpr img {
    height: 300px;
  }

  .related-listing-card .related-listing-card-txt {
    min-height: 63px;
  }

  /*  related img sec */
  .page-template-properties-list-view .prop-txt p {
    max-width: inherit;
    margin-bottom: 14px;
  }

  .bar-btn-wrapper .bar-btn:nth-child(2) {
    margin: 20px 0 0;
  }

  .pdf-btn {
    font-size: 16px;
  }

  /* support end 26-9-23 */

  /* support end 27-9-23 */
  .translated-ltr .search-wraper-outer input[type="submit"] {
    padding-left: 36px;
    padding-right: 18px;
    background-size: 15px;
    font-size: 16px;
    background-position: left 16px center;
  }

  .translated-ltr .search-wraper-outer input[type="submit"]:hover {
    background-size: 15px;
    background-position: left 16px center;
  }

  /* support end 27-9-23 */
  /* support start 28-9-23 */
  .en-lang .navbar-nav>li {
    margin: 0 26px;
  }

  /* support end 28-9-23 */

  /* support start 3-10-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 18%;
  }

  /* support end 3-10-23 */

  /* support start 6-11-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 68px;
  }

  /* support end 6-11-23 */
  /* support start 7-11-23 */

  .chsn-proprty-sec h1 {
    font-size: 40px;
  }

  /* support end 7-11-23 */
  /* 14.02.2024 */
  .property_grid_view>.prop-mid {
    width: 50%;
  }

  /* 14.02.2024 */
  /* 15-02-2024 */
  .search-wraper-outer {
    padding: 30px 25px;
    border-radius: 40px;
  }

  /* 15-02-2024 */

  /* 19/2/24 work start */
  .sld-val-item {
    padding: 0px 8px;
    width: 50%;
  }

  .sld-val-item>span {
    font-size: 12px;
  }

  .sld-val-item input {
    font-size: 12px !important;
    height: auto !important;
  }

  /* 19/2/24 work end */

  /* 27.02.24 start */

  .budget_txt {
    padding-right: 16px;
    background-size: 11px;
    font-size: 13px;
  }

  /* 27.02.24 end */
  .mapLocate_popUp .mapLocate_txt_wrp h3 {
    font-size: 18px;
  }

  .mapLocate_popUp .mapLocate_txt_wrp p {
    font-size: 13px;
  }

  .mapLocate_popUp .mapLocate_txt_wrp {
    padding: 18px 17px 30px;
  }

  /* 7/5/24 work start */
  .hdr_btn_grp a {
    font-size: 0px;
    min-width: auto;
    padding: 10px;
  }

  .hdr_btn_grp a img {
    margin: 0px;
    width: 12px;
  }

  .header-list li a {
    font-size: 12px;
  }

  .header-list li {
    margin-right: 0px;
  }

  .header-list {
    margin-right: 9px;
  }

  .eng-lang .navbar-nav>li {
    margin: 0px 10px;
    padding: 10px 0px;
  }

  .side-menu-wpr {
    padding-top: 0;
  }

  /* 7/5/24 work start */
  /* suppost ss 25/8/2025 start */
  .header-list {
    margin-right: 0px;
    margin-left: 0;
  }

  /* suppost ss 26/8/2025 start */
  .blog-box .f-img {
    height: 210px;
  }

  .page-template-event-page-list-view .right-areaa,
  .page-template-event-page-calendar-view .right-areaa {
    margin-top: 30px;
  }

  .event-card {
    padding: 30px 0 0 0;
  }

  .fc-tooltip {
    display: none !important;
  }
  /* CSS Modification 25.03.26 */
  .take-sec h2{
    font-size: 32px;
  }
  /* CSS Modification 25.03.26 */
  /* 3.3.26 */
.home .cmn-h2,.home h2{
  font-size: 32px;
} 




/* 3.3.26 */



/* 19-08-26 */
.filter-sidebar-inner.verticalseachbar .container{
  max-width:100%;
  padding:0;
}


/* 19-08-26 */
}

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li {
    padding-top: 15px;
    padding-bottom: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/

  /* support start 27-9-23 */
  /* .translated-ltr .navbar-nav > li {
    margin: 0 8px;
} */
  /* support end 27-9=23 */
}

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: block;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--white-color);
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */
  .navbar-collapse {
    background: var(--heading-color);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */
  h1,
  .cmn-h1 {
    font-size: 38px;
  }

  h2,
  .cmn-h2 {
    font-size: 28px;
  }

  h3,
  .cmn-h3 {
    font-size: 18px;
  }

  .cmn-gap,
  .apartment-alpages-warper {
    padding: 60px 0;
  }

  .sec-head {
    margin-bottom: 30px;
  }

  .navbar-right-topbar {
    margin-bottom: 15px;
  }

  .banner-main-wraper {
    min-height: 350px;
  }

  .search-wraper-outer input[type="submit"] {
    height: 48px;
  }

  .holiday-left-in::before {
    width: 100%;
  }

  .holiday-img-one {
    height: 520px;
  }

  .holiday-img-two {
    -webkit-box-shadow: 0px 20px 30px rgba(5, 39, 90, 0.4);
    box-shadow: 0px 20px 30px rgba(5, 39, 90, 0.4);
  }

  .our-cnt {
    padding: 40px 15px 20px;
  }

  .our-level {
    left: 15px;
  }

  .our-bx-btn {
    font-size: 16px;
  }

  .take-sec {
    min-height: 300px;
  }

  .take-sec h2 {
    font-size: 36px;
  }

  .our-btn {
    margin-top: 50px;
  }

  .ftr-contact .ftr-cont-bx:nth-child(1),
  .ftr-contact .ftr-cont-bx:nth-child(3) {
    width: 28%;
  }

  .ftr-contact .ftr-cont-bx:nth-child(2) {
    width: 44%;
  }

  .ftr-tp-grd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ftr-lavel {
    margin-bottom: 20px;
  }

  .footer-tp {
    padding-top: 40px;
  }

  .holiday-left-in {
    padding: 40px 20px 66px 15px;
  }

  .services-btn {
    padding-left: 20px;
  }

  .ftr-link>li a {
    width: 22px;
  }

  .search-wraper-outer li {
    width: 31%;
    margin-bottom: 12px;
  }

  /* .search-wraper-outer li:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  } */

  .search-wraper-outer {
    border-radius: 20px;
  }

  .search-wraper-outer li:last-child {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  /* SD STARTS 13.09.23  */
  /* Blog page  */
  .blog-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .blog-right-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .blog-mob-news {
    width: 70%;
    padding: 0 15px;
  }

  .blog-mob-cat {
    width: 30%;
    padding: 0 15px;
  }

  .blog-dtls-col {
    margin-bottom: 30px;
  }

  .blog-main-wraper .flw-img-2 {
    top: 10%;
  }

  /* Nightlife page  */
  .nightlife-txt h2 br {
    display: none;
  }

  .nightlife-txt h2 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .nightlife-row {
    margin-bottom: 30px;
  }

  .bar-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nightlife-column-wpr .related-listing-row {
    --bs-gutter-x: 25px;
  }

  .bar-btn-wrapper ul li a img {
    width: 20px;
  }

  .nightlife-column-wpr h2 {
    margin-bottom: 30px;
  }

  .nightlife-column-wpr h2 img {
    width: 30px;
  }

  .inner-banner h1 {
    font-size: 38px;
  }

  .banner-main-wraper.inner-banner {
    min-height: 250px;
  }

  /* Webcam Page 2:10 PM 13.09.23 */
  input[type="text"],
  input[type="search"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    border-radius: 15px;
    font-size: 16px;
    height: 50px;
  }

  input[type="submit"] {
    height: 45px;
  }

  .common-form-box {
    padding: 32px 24px 40px;
  }

  textarea {
    border-radius: 15px;
    height: 100px;
  }

  .gallery-card h2 {
    font-size: 28px;
  }

  .gallary-card-wrapper .gallery-card:last-child {
    margin-bottom: 50px;
  }

  /* Jacks bar Page 3:50 PM 13.09.23 */
  .jacks-right-box input[type="search"],
  .jacks-right-box input[type="text"] {
    height: 45px;
    border-radius: 25px;
    font-size: 16px;
  }

  .jacks-right-box {
    padding: 25px;
  }

  .jacks-main-warper .copy-h3 {
    font-size: 28px;
  }

  /* SD ENDS */

  .prop-table {
    overflow-y: auto;
  }

  .prop-table table {
    max-width: 696px;
  }

  .prop-tp {
    margin-bottom: 30px;
  }

  .prop-lvel-wrap,
  .prop-txt {
    padding-right: 0;
  }

  .prop-lvel {
    font-size: 13px;
  }

  .prop-mid-box-cnt {
    padding-left: 20px;
  }

  .prop-txt p {
    margin-bottom: 12px;
  }

  .prop-lst>li {
    padding: 0;
    border-right: 0;
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }

  .prop-lst {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .prop-table table thead tr th,
  .prop-table table tr td span {
    font-size: 16px;
  }

  .prop-mid-btm-hd>ul>li {
    font-size: 15px;
    padding: 0 10px;
  }

  .related-listing-card .related-listing-card-txt {
    -webkit-box-shadow: 0px 15px 24px 0px rgba(0, 62, 156, 0.21);
    box-shadow: 0px 15px 24px 0px rgba(0, 62, 156, 0.21);
  }

  .related-slider .slick-list {
    padding-bottom: 35px;
  }

  .propary-details.inner-banner {
    min-height: 120px;
  }
.calender-box-wpr .calender-anchor p,
  .calender-topbar ul li {
    font-size: 18px;
  }

  .calender-topbar {
    /* padding: 18px 20px; */
    padding: 15px;
  }

  .calender-head strong {
    font-size: 18px;
  }

  .calender-month-box {
    width: 50%;
  }

  .date-day-box span {
    font-size: 18px;
  }

  .accommodation-warper {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .navbar {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-collapse-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .navbar-right-topbar {
    margin-bottom: 0;
  }

  .navbar-toggler {
    margin-left: 15px;
  }

  .holiday-left-column,
  .holiday-right-column {
    width: 100%;
  }

  .webcam-context {
    padding-top: 0px;
  }

  /* .prop-map-img {
    height: 420px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
  } */

  /* support start 21-9-23 */
  .common-form-box .gform_wrapper.gravity-theme input[type="text"],
  .common-form-box .gform_wrapper.gravity-theme input[type="search"],
  .common-form-box .gform_wrapper.gravity-theme input[type="tel"],
  .common-form-box .gform_wrapper.gravity-theme input[type="password"],
  .common-form-box .gform_wrapper.gravity-theme input[type="email"],
  .common-form-box .gform_wrapper.gravity-theme select {
    border-radius: 15px;
    font-size: 16px;
    height: 50px;
  }

  .contacts_modal.mdlbx {
    width: 100%;
  }

  .navbar-nav>.menu-item-has-children>a::before {
    right: 16px;
  }

  /* support end 21-9-23 */

  /* support start 22-9-23 */
  .bar-row {
    --bs-gutter-y: 30px;
  }

  .photo-modals .modal-dialog {
    max-width: 100%;
  }

  .photo-modals {
    padding: 0 12px !important;
  }

  .search-wraper-outer input[type="submit"] {
    background: url(./images/search-icon.svg) no-repeat left 36px center var(--primary-color);
    background-size: 18px;
    padding-left: 72px;
    padding-right: 36px;
  }

  .search-wraper-outer input[type="submit"]:hover {
    background: url(./images/search-icon.svg) no-repeat left 36px center var(--primary-color);
    background-size: 18px;
  }

  /* .search-wraper-outer li:nth-last-child(2) {
    width: 31%;
  } */

  .search-wraper-outer li select {
    font-size: 16px;
  }

  .search-wraper-outer .hasDatepicker {
    font-size: 16px;
  }

  /* support end 22-9-23 */
  /* support start 25-923 */
  .defult-page-cls {
    padding: 50px 0;
  }

  .defult-page-cls .entry-title {
    margin-bottom: 15px;
  }

  /* support end 25-923 */
  /* support start 26-9-23 */
  .tguls li {
    width: 30.5%;
  }

  .meribel-sec .blog-row {
    flex-direction: column;
  }

  .merible-story-li-areas {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .merifig {
    width: 140px;
    height: 140px;
    margin-bottom: 0;
  }

  .merifig img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .conexc-wrap {
    width: calc(100% - 140px);
    padding-left: 20px;
  }

  .jacks-right-box input[type="text"].hasDatepicker {
    font-size: 16px;
  }

  /* related img sec */
  .related-listing-card .related-listing-img-wpr img {
    height: 240px;
  }

  .related-listing-card .related-listing-card-txt {
    min-height: 84px;
  }

  /*  related img sec */

  /* support end 26-9-23 */

  /* support start 27-9-23 */
  .translated-ltr .search-wraper-outer input[type="submit"] {
    background: url(./images/search-icon.svg) no-repeat left 36px center var(--primary-color);
    background-size: 18px;
    padding-left: 72px;
    padding-right: 36px;
  }

  .translated-ltr .search-wraper-outer input[type="submit"]:hover {
    background: url(./images/search-icon.svg) no-repeat left 36px center var(--primary-color);
    background-size: 18px;
  }

  .main-head .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
    background: transparent;
  }

  .main-head .sub-menu li a {
    color: var(--white-color);
  }

  .main-head .sub-menu li a:hover {
    color: var(--primary-color);
  }

  .main-head .sub-menu li a {
    padding: 10px 6px 10px 20px;
  }

  .sub-menu>li.current-menu-item>a {
    color: var(--primary-color);
  }

  .main-head .sub-menu li a:hover {
    color: var(--primary-color);
  }

  /* support end 27-9-23 */

  /* support start 28-9-23 */
  .navbar-nav.mobile {
    display: block;
    margin-top: 0 !important;
    padding-bottom: 40px;
  }

  .side-menu-wpr {
    display: none;
  }

  .navbar-collapse .navbar-nav {
    padding-bottom: 0;
  }

  .header-list li {
    padding-right: 10px;
    margin-right: 10px;
  }

  .header-list li a {
    font-size: 12px;
  }

  #google_language_translator select.goog-te-combo {
    font-size: 13px;
    width: 78px !important;
  }

  .translated-ltr .navbar-brand {
    width: 58px;
  }

  .translated-ltr .header-list {
    margin-right: 10px;
  }

  .translated-ltr .navbar-toggler {
    margin-left: 10px;
  }

  /* support end 28-9-23 */

  /* support start 3-10-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 22%;
  }

  /* support end 3-10-23 */

  /* support start 1-11-23 */

  /* support end 1-11-23 */

  /* support start 6-11-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 80px;
  }

  .date-day-box span {
    max-width: inherit;
  }

  /* support end 6-11-23 */
  /* support start 7-11-23 */
  .chsn-proprty-sec h1 {
    font-size: 35px;
  }

  /* support end 7-11-23 */
  /* 10.11.23 css */
  .nightlife-heading {
    padding-bottom: 0;
  }

  /* 10.11.23 css */

  /* 17.11.23 start */

  .dttxtss-num {
    padding: 0 15px;
  }

  .tbl-price-clsss {
    padding: 5px 15px;
  }

  .calender-row-wpr-final .date-day-box {
    padding: 6px 15px;
  }

  .calender-row-wpr-final .date-day-box p {
    margin-bottom: 0;
  }

  /* 17.11.23 end */

  /* 29.11.23 css */
  .prop-view-map-wraper .jssorb03 {
    display: none;
  }

  .prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlides {
    max-height: inherit !important;
    margin-bottom: 0px !important;
  }

  .prop-view-map-wraper .gmpMmlSlideContent .gmpMmlSlideDescription>p {
    font-size: 14px;
  }

  .prop-view-map-wraper .gmp_map_opts {
    margin: 0;
  }

  .prop-view-map-wraper .gmpMapDetailsContainer {
    height: 450px !important;
    overflow: hidden;
    padding: 0;
  }

  .prop-view-map-wraper .gmpMapProControlsCon,
  .prop-view-map-wraper .gmpMapDetailsContainer {
    width: 100% !important;
  }

  .prop-view-map-wraper .gmpMapProControlsCon .prop-view-map-wraper .gmpMnlJssorSlider .jssorb03 {
    display: none;
  }

  .prop-view-map-wraper .gmpMnlJssorSlider {
    height: auto !important;
  }

  .prop-view-map-wraper .gmpMnlJssorSlider>div {
    height: auto !important;
    position: static !important;
  }

  .prop-view-map-wraper .gmpMapProControlsCon {
    padding: 0;
    margin-top: 20px;
  }

  /* 29.11.23 css */

  /* 06.12.23 start */

  .prop-map-img {
    height: 420px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .gm-style .gm-style-iw-d,
  .gm-style .gm-style-iw-c {
    max-height: inherit !important;
  }

  /* support start 22/12/23 */
  .calender-row-wpr-final .ddboxwraptp {
    min-width: 105px;
  }

  /* support end 22/12/23 */
  /* 06.12.23 end */

  /* 14.02.2024 */
  .property_grid_view>.prop-mid {
    width: 100%;
  }

  /* 14.02.2024 */

  /* 27.02.24 start */

  .property_grid_view>.prop-mid.grid_prop_mid {
    width: 50%;
  }

  .search-wraper-outer ul li {
    width: 33.33%;
    margin-bottom: 12px;
  }

  .search-wraper-outer ul li:nth-last-child(2) {
    width: 33.33%;
    border-right: 1px solid #c7c7c7;
    margin-bottom: 0;
  }

  .search-wraper-outer ul li:last-child {
    width: 50%;
    margin-bottom: 0;
    margin-left: auto;
  }

  .search-wraper-outer li:nth-child(3n) {
    border-right: 0;
  }

  .budget_txt {
    font-size: 16px;
  }

  /* 27.02.24 end */
  .mapLocate_popUp .mapLocate_txt_wrp {
    padding: 15px 15px 20px;
  }

  /* suppost ss 26/8/2025 start */
  .ftr-contact .ftr-cont-bx:nth-child(1) {
    width: 44%;
  }

  /* suppost ss 27/8/2025 start */

  .search-wraper-outer ul li:first-child,
  .search-wraper-outer ul li:nth-child(2),
  .search-wraper-outer ul li:nth-child(3),
  .search-wraper-outer ul li:nth-child(5),
  .search-wraper-outer ul li:nth-child(6) {
    width: 23% !important;
  }

  .search-wraper-outer ul li:nth-child(4) {
    width: 31% !important;
    border-right: 0;
  }

  .search-wraper-outer ul li {
    width: 23% !important;
  }

  .search-wraper-outer ul li:last-child {
    width: 31% !important;
  }

  .search-wraper-outer ul li:nth-child(5),
  .search-wraper-outer ul li:nth-child(6),
  .search-wraper-outer ul li:nth-child(7),
  .search-wraper-outer ul li:nth-child(8) {
    margin-bottom: 0 !important;
  }

  .search-wraper-outer li:nth-child(3n) {
    border-right: 1px solid #c7c7c7;
  }

  .search-wraper-outer ul li:nth-child(7) {
    width: 23% !important;
  }

  .right-areaa {
    margin-top: 30px;
  }

  .event-meta-item,
  .event-content-area {
    font-size: 16px;
  }

  .right-areaa .event-title-single {
    font-size: 34px;
  }

  .event-category-name a {
    font-size: 18px;
  }

  .event-content-area h5 {
    font-size: 18px;
    margin: 0 0 4px;
  }

  .event-partner-offer {
    font-size: 18px;
    min-height: 56px;
  }

  .event-partner-slider {
    margin: 0 0 30px;
  }

  .sub-title {
    font-size: 18px;
  }

  .event-item .event-meta-row img {
    width: 16px;
    height: 16px;
  }

  .event-item .event-excerpt,
  .event-item .event-category a {
    font-size: 16px;
  }

  .event-item .cmn-btn {
    padding: 12px 18px;
    font-size: 16px;
  }

  .event-thumb {
    width: 42%;
    padding: 0 15px 0 15px;
  }

  .event-content-left,
  .event-content-right {
    width: 29%;
  }

  .events-pagination {
    padding: 40px 20px 0 40px;
    justify-content: center;
  }

  .event-thumb a {
    border-radius: 10px;
  }

  .event-item {
    padding: 18px 15px;
  }
  /* CSS Modification 25.03.26 */
  .take-sec h2{
    font-size: 28px;
  }
/* CSS Modification 25.03.26 */
  /* 3.3.26 */
.home .cmn-h2,.home h2{
  font-size: 28px;
} 




/* 3.3.26 */
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  h1,
  .cmn-h1,
  .inner-banner h1 {
    font-size: 30px;
  }

  h2,
  .cmn-h2 {
    font-size: 24px;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .cmn-gap {
    padding: 50px 0;
  }

  .header-list li a {
    font-size: 0;
  }

  .header-list li {
    padding-right: 10px;
    margin-right: 10px;
  }

  .header-list {
    margin-right: 20px;
  }

  .take-sec {
    min-height: 250px;
  }

  .take-sec h2 {
    font-size: 32px;
  }

  .header-btn img {
    width: 12px;
    margin-right: 5px;
  }

  .header-btn {
    padding: 10px 14px;
    min-width: 130px;
  }

  .banner-main-wraper {
    min-height: 300px;
  }

  .ftr-logo {
    max-width: 100px;
    margin-bottom: 20px;
  }

  .ftr-contact .ftr-cont-bx:nth-child(1),
  .ftr-contact .ftr-cont-bx:nth-child(3),
  .ftr-contact .ftr-cont-bx:nth-child(2) {
    width: 50%;
    margin-bottom: 20px;
    padding: 0;
  }

  .ftr-contact .ftr-cont-bx:nth-child(2) {
    border-right: 0;
  }

  .ftr-contact {
    margin-bottom: 10px;
  }

  .ftr-achr>li:first-child {
    padding-right: 0;
    border-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }

  .ftr-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ftr-achr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ftr-achr>li {
    line-height: 1;
  }

  .ftr-lavel>li {
    max-width: 60px;
  }

  .ftr-link>li a {
    width: 20px;
  }

  .footer-btm p {
    font-size: 14px;
  }

  .search-wraper-outer {
    margin-top: 30px;
    -webkit-box-shadow: 0 24px 60px 30px rgba(0, 62, 156, 0.13);
    box-shadow: 0 24px 60px 30px rgba(0, 62, 156, 0.13);
  }

  .search-wraper-outer ul li {
    width: 100%;
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #c7c7c7;
  }

  .search-wraper-outer li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* SD STARTS 13.09.23  */
  /* Blog page  */
  .blog-box-wpr h3,
  .blog-details-warper h3 {
    font-size: 18px;
  }

  .blog-rtl-con h4,
  .blog-list li a,
  .blog-box-wpr p {
    font-size: 14px;
  }

  .blog-in-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .blog-box-wpr h3 {
    min-height: 35px;
  }

  .blog-right-mob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .blog-mob-cat,
  .blog-mob-news {
    width: 100%;
  }

  /* Nightlife page  */
  .bar-btn li {
    margin-bottom: 20px;
  }

  .bar-btn-wrapper .bar-btn:nth-child(2) {
    margin: 0;
  }

  /* Webcam Page 2:10 PM 13.09.23 */
  .gallery-card h2 {
    font-size: 24px;
  }

  /* Jacks bar Page 3:50 PM 13.09.23 */
  .jacks-main-warper .copy-h3 {
    font-size: 24px;
  }

  .jacks-column-right {
    margin-bottom: 30px;
  }

  .recomendation-title,
  .jacks-topbar {
    margin-bottom: 30px;
  }

  .pdf-btn {
    padding: 10px 26px;
    font-size: 14px;
  }

  /* SD ENDS */

  .prop-mid-box-tp-img {
    width: 100%;
  }

  .prop-mid-box-cnt {
    padding-left: 0;
    width: 100%;
    padding-top: 25px;
  }

  .prop-mid-btm-hd>ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 10px;
    margin-bottom: -15px;
  }

  .prop-mid-btm-hd>ul>li {
    width: 50%;
    margin-bottom: 15px;
    text-align: center;
  }

  /* .prop-mid-btm-hd>ul>li:last-child {
        margin-bottom: 0;
    } */

  .prop-mid-btm-hd>ul>li:nth-child(2) {
    border-right: 0;
  }

  .prop-mid-btm-hd>ul>li:first-child {
    padding-left: 10px;
  }

  .prop-listing-pagination {
    margin-top: 50px;
  }

  .alpages-topbar {
    margin-bottom: 25px;
  }

  .alpages-topbar .alpages-listing {
    margin-bottom: 15px;
  }
.alpages-left-in h1,
  .alpages-left-in h2 {
    margin-bottom: 15px;
  }

  .alpages-right-box {
    padding: 20px 15px 20px 20px;
  }
.calender-box-wpr .calender-anchor p,
  .calender-topbar ul li {
    font-size: 16px;
    display: block;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  .calender-head {
    padding: 10px 5px;
  }

  .date-day-box {
    padding: 20px 0;
  }

  .date-day-box span {
    margin-bottom: 15px;
  }

  .cmn-table table th {
    font-size: 18px;
  }

  .accomo-table.cmn-table table td,
  .accomo-table.cmn-table table th {
    padding: 10px 0;
  }

  .common-form-box {
    padding: 20px 20px 30px;
  }

  .accommodation-warper {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .alpages-row,
  .accommo-row {
    --bs-gutter-x: 20px;
  }

  .accomo-table.cmn-table table th {
    min-width: 240px;
  }
 
  .calender-topbar ul li {
    margin-bottom: 8px;
  }

  .calender-topbar ul li:last-child {
    margin-bottom: 0;
  }

  .cmn-table table th {
    vertical-align: middle;
  }

  .our-cnt {
    padding: 35px 15px 20px;
  }

  .price {
    font-size: 18px;
  }

  .jacks-row {
    --bs-gutter-x: 20px;
  }

  .nightlife-column-wpr .related-listing-row {
    --bs-gutter-x: 18px;
  }

  .blog-search-wpr input[type="text"],
  .blog-search-wpr input[type="search"] {
    font-size: 16px;
  }

  /* support start 19-9-23 */
  .our-bx>figure>a {
    height: auto;
  }

  /* support end 19-9-23 */
  /* support start 22-9-23 */
  .search-wraper-outer li:nth-last-child(2) {
    width: 100%;
  }

  /* support end 22-9-23 */
  /* support start 26-9-23 */
  .tguls li {
    width: 48%;
  }

  .custm-checkbox-ss label {
    width: 50%;
  }

  /* related img sec */
  .related-listing-card .related-listing-img-wpr img {
    height: 100%;
  }

  .related-listing-card .related-listing-card-txt {
    min-height: 55px;
  }

  /*  related img sec */
  .nightlife-head .flw-img-2 {
    top: auto;
    bottom: 0;
    z-index: -1;
  }

  /* support end 26-9-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 30%;
  }

  .calender-row-wpr-final .date-day-box p {
    margin-bottom: 15px;
  }

  /* support end 3-10-23 */

  /* support 4-10-23 */
  .header-list li.property_currency_exchange .currency-switcher-form .wSelect-option-icon {
    font-size: 11px;
    font-family: "Arial", sans, sans-serif;
  }

  .header-list li.property_currency_exchange .currency-switcher {
    width: 43px !important;
    font-size: 12px;
    font-family: "Arial", sans, sans-serif;
  }

  .navbar-brand {
    width: 75px;
  }

  /* support 4-10-23 */

  /* support start 20-10-23 */
  .feature-frmbx-ss label {
    width: 100%;
  }

  .search-bar-wpr-in .features_first_row:not(:last-child) {
    margin-bottom: 23px;
  }

  /* support end 20-10-23 */

  /* support start 1-11-23 */
  .prop-mid-box-tp-slider-wrap {
    width: 100%;
  }

  /* support end 1-11-23 */
  /* support start 6-11-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 60px;
  }

  .date-day-box span {
    font-size: 14px;
  }

  .date-day-box span {
    max-width: 57px;
  }

  /* support end 6-11-23 */
  /* support start 7-11-23 */
  .apartment-alpages-warper h1,
  .chsn-proprty-sec h1 {
    font-size: 30px;
  }

  /* support end 7-11-23 */
  /* support start 8-11-23 */
  .prop-mid-box-tp-img a {
    height: auto;
  }

  /* support end 8-11-23 */

  /* 17.11.23 start */

  .calender-row-wpr-final .date-day-box p {
    margin-bottom: 0;
  }

  /* 17.11.23 end */

  /* 31.01.24 start */

  .send-frnd-popup-innr h2 {
    margin-bottom: 15px;
  }

  .details-wrppr h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .details_field_wrappr input[type="text"],
  .details_field_wrappr input[type="email"] {
    width: 70%;
  }

  .details_field_wrappr label {
    width: 30%;
  }

  .shortlist_url_wrap {
    margin-bottom: 20px;
  }

  /* 31.01.24 end */
  /* 06.02.24 css */
  .search-wraper-outer ul li:nth-child(4n) {
    width: 100%;
  }

  .search-wraper-outer {
    padding: 25px;
  }

  /* 06.02.24 css */

  /* 15.02.24 css start */
  .pdf-btm-wpr .pdf-btn {
    width: calc(50% - 20px);
  }

  /* 15.02.24 css end */

  /* 27.02.24 start */

  .property_grid_view>.prop-mid.grid_prop_mid {
    width: 100%;
  }

  .grid_extra_wrap .prop-mid-box-tp-img a {
    height: auto;
  }

  .search-wraper-outer ul li:nth-last-child(2) {
    width: 100%;
    border-right: none;
    margin-bottom: 10px;
  }

  .search-wraper-outer ul li:last-child {
    text-align: center;
  }

  .Budget_slider_wrap {
    min-width: inherit;
    width: 100%;
    padding: 20px;
  }

  /* 27.02.24 end */

  /* 7/5/24 work start */
  .header-list li a img {
    margin-right: 0px;
  }

  .navbar-brand {
    padding-right: 10px;
  }

  .header-list li li a {
    font-size: 10px;
    padding: 2px 8px;
  }

  .header-list li div {
    position: absolute;
    top: 100%;
    right: 0px;
  }

  .header-list li ul li {
    border: 0p;
  }

  /* 7/5/24 work start */
  /* suppost ss 26/8/2025 start */
  .ftr-lavel>li {
    max-width: 50px;
  }

  .ftr-lavel>li {
    margin-right: 10px;
  }

  .arrow-icon-btn {
    margin-top: -15px;
  }

  .blog-info .title {
    padding-right: 45px;
  }

  /* suppost ss 27/8/2025 start */
  .search-wraper-outer ul li {
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  .search-wraper-outer ul li:first-child,
  .search-wraper-outer ul li:nth-child(2),
  .search-wraper-outer ul li:nth-child(3),
  .search-wraper-outer ul li:nth-child(5),
  .search-wraper-outer ul li:nth-child(6) {
    width: 100% !important;
  }

  .search-wraper-outer ul li:nth-child(4) {
    width: 100% !important;
  }

  .search-wraper-outer ul li:nth-child(5),
  .search-wraper-outer ul li:nth-child(6),
  .search-wraper-outer ul li:nth-child(7),
  .search-wraper-outer ul li:nth-child(8) {
    margin-bottom: 15px !important;
  }

  .search-wraper-outer li:nth-child(3n) {
    border-right: 0;
  }

  .search-wraper-outer ul li:last-child {
    width: 100% !important;
  }

  .search-wraper-outer ul li:nth-child(7) {
    width: 100% !important;
  }

  .event-main-image img {
    border-radius: 10px;
  }

  .right-areaa .cancl-btn {
    font-size: 13px;
    padding: 5px 12px;
    right: 6px;
    top: 6px;
  }

  .event-category-name a {
    font-size: 14px;
  }

  .right-areaa .event-title-single {
    font-size: 22px;
  }

  .event-meta-item {
    font-size: 13px;
    gap: 6px;
  }

  .event-content-area {
    font-size: 16px;
  }

  .event-meta-item img {
    width: 14px;
  }

  .event-meta-row {
    gap: 12px;
  }

  .event-content-area h5 {
    font-size: 16px;
  }

  .event-partner-box {
    padding: 25px 0 0;
  }

  .event-partner-slider .slick-arrow {
    width: 28px;
    height: 28px;
  }

  .event-partner-slider .slick-next {
    right: -8px;
  }

  .event-partner-slider .slick-prev {
    left: -8px;
  }

  .event-partner-offer {
    font-size: 14px;
    min-height: 44px;
  }

  .single-event .best-left-divs-area {
    padding-top: 0;
  }

  .rf-header-inner {
    justify-content: space-between;
    gap: 10px;
  }

  .events-pagination {
    padding: 30px 0 0 0;
  }

  .event-col {
    padding: 18px 20px;
  }

  .event-col .event-info {
    padding-left: 15px;
  }

  #event-preview-link {
    font-size: 16px;
  }

  #event-preview-link svg {
    width: 14px;
    height: auto;
  }

  .event-col .event-excerpt {
    font-size: 13px;
  }
.both-main-wrap .event-item {
    flex-direction: column;
}
.both-main-wrap .event-item .event-thumb {
    width: 100%;
    padding: 0 0 15px;
}
.both-main-wrap .event-item .event-content-left {
    width: 100%;
}
/* CSS Modification 25.03.26 */
.take-sec h2{
  font-size: 24px;
}

/* CSS Modification 25.03.26 */
  /* 3.3.26 */
.home .cmn-h2,.home h2{
  font-size: 24px;
} 




/* 3.3.26 */
}

@media (max-width: 575px) {
  .banner-warepr-outer {
    padding: 0;
  }

  .banner-main-wraper {
    border-radius: 0;
  }

  .main-head {
    top: 0;
  }

  .holiday-img-one {
    height: 400px;
  }

  .holiday-img-two {
    width: 290px;
    height: 200px;
  }

  .holiday-right-in {
    padding-left: 50px;
    padding-bottom: 40px;
  }

  .flw-img-1 {
    left: 12px;
  }

  .take-sec h2 {
    font-size: 28px;
  }

  .ftr-contact .ftr-cont-bx:nth-child(1),
  .ftr-contact .ftr-cont-bx:nth-child(3),
  .ftr-contact .ftr-cont-bx:nth-child(2) {
    width: 60%;
  }

  .ftr-contact .ftr-cont-bx:nth-child(1) {
    border-right: 0;
  }

  .ftr-contact .ftr-cont-bx {
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    border-bottom: 1px dashed var(--white-color);
  }

  .ftr-contact .ftr-cont-bx:last-child {
    border-bottom: 0;
  }

  /* SD STARTS 13.09.23  */
  /* Blog page  */
  .blog-details-warper {
    margin-bottom: 35px;
  }

  .blog-box-wpr h3 {
    min-height: 25px;
  }

  /* Nightlife page  */
  .nightlife-column-wpr {
    margin-top: 20px;
  }

  .bar-btn-wrapper ul li a {
    min-width: 130px;
    height: 40px;
  }

  .copy-h3 {
    font-size: 25px;
  }

  .prop-txt .price {
    font-size: 20px;
  }

  .prop-lvel-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .prop-mid-box-cnt {
    position: relative;
  }

  .prop-lvel-wrap .fav-btn {
    position: absolute;
    top: -40px;
    right: 16px;
  }

  .outline-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  /* SD ENDS */
  .calender-month-box {
    width: 100%;
  }

  .cmn-table table th {
    font-size: 16px;
  }

  .accomo-table.cmn-table table td,
  .accomo-table.cmn-table table th {
    padding: 6px 0;
  }

  .accomo-table.cmn-table table th {
    min-width: 220px;
  }

  .apartment-alpages-warper {
    padding: 45px 0;
  }

  /* SD STARTS 13.09.23  */
  /* Blog page  */
  .blog-details-warper {
    margin-bottom: 35px;
  }

  .blog-box-wpr h3 {
    min-height: 25px;
  }

  /* Nightlife page  */
  .nightlife-column-wpr {
    margin-top: 20px;
  }

  .bar-btn-wrapper ul li a {
    min-width: 130px;
    height: 40px;
  }

  .copy-h3 {
    font-size: 25px;
  }

  /* Webcam Page 2:10 PM 13.09.23 */
  .gallery-card {
    margin-bottom: 30px;
  }

  /* Jacks bar Page 3:50 PM 13.09.23 */
  .jacks-topbar h2 img {
    width: 30px;
  }

  /* SD ENDS */
  /* support start 25-923 */
  .defult-page-cls {
    padding: 40px 0;
  }

  .defult-page-cls .entry-title {
    margin-bottom: 10px;
  }

  /* support end 25-923 */
  /* support start 26-9-23 */
  .tguls li {
    width: 100%;
  }

  .table-responsive table {
    width: 600px;
  }

  .custm-checkbox-ss label {
    padding: 10px 20px;
  }

  /* support end 26-9-23 */

  .header-btn {
    font-size: 0;
    min-width: 30px;
  }

  .header-btn img {
    margin-right: 0;
  }

  /* support start 20-10-23 */
  .custm-checkbox-ss label {
    padding-left: 38px;
  }

  .feature-frmbx-ss label {
    padding-left: 18px;
  }

  .feature-frmbx-ss .ftrchk-ss {
    padding-left: 38px;
  }

  /* support end 20-10-23 */
  /* support start 8-11-23 */
  .dttxtss-num {
    font-size: 14px;
  }

  /* support end 8-11-23 */

  .sub-title {
    font-size: 16px;
  }

  .sortbyfilter {
    width: 100%;
  }

  .event-listing-block .sortbyfilter select {
    width: 100%;
  }

  .rf-header-inner .cmn-btn {
    font-size: 16px;
    width: 46%;
  }

  .event-content-left,
  .event-content-right {
    width: 100%;
  }

  .event-thumb {
    width: 100%;
    padding: 0 0 22px;
    order: 1;
  }

  .event-content-left {
    order: 2;
    padding: 0 0 14px;
  }

  .event-content-right {
    order: 3;
  }

  .events-pagination .page-numbers {
    font-size: 16px;
  }

  .events-pagination {
    gap: 10px;
  }

  .event-col .event-image {
    width: 100%;
  }

  .event-col .event-info {
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
  }
  .event-card #event-preview-close {
    top: 20px;
    right: 8px;
}
}

@media (max-width: 479px) {

  h1,
  .cmn-h1,
  .inner-banner h1 {
    font-size: 24px;
  }

  h2,
  .cmn-h2 {
    font-size: 22px;
  }

  h2 br {
    display: none;
  }

  h3,
  .cmn-h3 {
    font-size: 16px;
  }

  .cmn-gap {
    padding: 45px 0;
  }

  .navbar-brand {
    width: 70px;
  }

  .header-btn {
    padding: 10px 8px !important;
    min-width: 30px;
    font-size: 0 !important;
    height: 30px;
  }

  .header-list li select {
    font-size: 12px;
  }

  .header-list li {
    padding-right: 5px;
    margin-right: 10px;
  }

  .header-list {
    margin-right: 10px;
  }

  .header-btn img {
    margin-right: 0;
  }

  .holiday-left-in {
    padding: 20px 15px 45px 15px;
  }

  .cmn-btn {
    font-size: 16px;
    padding: 14px 25px;
  }

  .services-btn {
    margin-top: -22px;
    text-align: center;
  }

  .holiday-listing li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .holiday-content {
    width: 100%;
    padding-left: 0;
    text-align: center;
    padding-top: 15px;
  }

  .holiday-right-in {
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .holiday-img-one {
    height: 320px;
  }

  .holiday-img-two {
    width: 250px;
    height: 150px;
  }

  .take-sec {
    min-height: 200px;
  }

  .video-play-btn {
    width: 50px;
    height: 50px;
  }

  .ftr-logo {
    max-width: 80px;
  }

  .ftr-nav-link>li {
    padding: 0 10px;
    display: block;
    width: 50%;
  }

  .ftr-achr>li a {
    font-size: 12px;
  }

  .ftr-achr>li {
    padding: 0 6px;
    border-right: 1px solid var(--white-color);
  }

  .footer-btm p {
    font-size: 13px;
  }

  .our-btn {
    margin-top: 30px;
  }

  .search-wraper-outer input[type="submit"] {
    height: 44px;
  }

  /* SD STARTS 13.09.23  */
  /* Blog page  */

  .blog-box-wpr h3,
  .blog-details-warper h3 {
    font-size: 16px;
  }

  .cmn-pagination li .prev span,
  .page-number {
    font-size: 14px;
  }

  /* Nightlife page  */
  .bar-btn li a {
    font-size: 13px;
  }

  /* Webcam Page 2:10 PM 13.09.23 */
  .gallery-card h2 {
    font-size: 22px;
  }

  input[type="text"],
  input[type="search"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    border-radius: 10px;
    font-size: 14px;
    height: 45px;
  }

  .common-form-box {
    padding: 25px 20px 40px;
  }

  .form-row {
    --bs-gutter-y: 20px;
  }

  textarea {
    border-radius: 10px;
  }

  input[type="submit"] {
    font-size: 16px;
  }

  /* Jacks bar Page 3:50 PM 13.09.23 */
  .jacks-main-warper .copy-h3 {
    font-size: 22px;
  }

  .jacks-map-img {
    margin-bottom: 30px;
  }

  .jacks-right-box input[type="search"],
  .jacks-right-box input[type="text"] {
    height: 40px;
  }

  /* SD ENDS */

  .prop-listing-pagination {
    margin-top: 30px;
  }

  .prop-mid-btm-hd>ul {
    margin-bottom: -10px;
  }

  .prop-mid-btm-hd>ul>li {
    width: 100%;
    padding: 0;
    border-right: 0;
    margin-bottom: 10px;
  }

  .prop-table table thead tr th,
  .prop-table table tr td span {
    font-size: 15px;
  }

  .prop-lvel {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .prop-listing-pagination .pagination-nmbr,
  .prop-listing-pagination .pagination-btn-wpr .nxt-btn {
    font-size: 16px;
  }

  .prop-listing-pagination .pagination-btn-wpr button {
    width: 30px;
    height: 30px;
  }

  .prop-tp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -12px;
    padding-bottom: 30px;
  }

  .prop-tp>li {
    margin-bottom: 12px;
  }

  .prop-tp>li:last-child {
    margin-right: 0;
    width: 100%;
  }

  .view {
    padding: 12px 25px;
    width: 100%;
  }

  .prop-map-wpr .prop-tp {
    margin-bottom: 0;
  }

  .related-slider-outer {
    padding: 0 0 30px;
  }

  .related-slider-outer .slider-arw {
    top: inherit;
    bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .related-slider-outer .prev-arw {
    left: calc(50% - 45px);
  }

  .related-slider-outer .next-arw {
    right: calc(50% - 45px);
  }

  .common-form-box {
    padding: 15px 12px;
  }

  .submit-btn {
    margin-top: 20px;
  }

  .date-day-box {
    padding: 10px 0;
  }

  .propary-details.inner-banner {
    min-height: 100px;
  }

  .alpages-topbar .alpages-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin-bottom: -12px; */
  }

  .alpages-listing li {
    margin: 0 10px;
    margin-bottom: 12px;
  }

  .alpages-listing li a,
  .alpages-listing li button,
  .alpages-listing li button i {
    font-size: 15px;
  }

  .accomo-table.cmn-table table th {
    min-width: 110px;
    padding-right: 10px;
    font-size: 13px;
  }

  .cmn-table table th {
    min-width: 90px;
    font-size: 13px;
  }

  .accomo-table.cmn-table table td {
    font-size: 13px;
  }

  .date-day-box span,
  .date-day-box p {
    font-size: 14px;
  }

  .date-day-box span {
    margin-bottom: 8px;
  }

  .calender-head strong {
    font-size: 16px;
  }

  .ftr-contact .ftr-cont-bx:nth-child(1),
  .ftr-contact .ftr-cont-bx:nth-child(3),
  .ftr-contact .ftr-cont-bx:nth-child(2) {
    width: 80%;
  }

  /* support start 26-9-23 */
  .merifig {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }

  .conexc-wrap {
    width: 100%;
    padding-left: 0;
  }

  .jacks-right-box input[type="text"].hasDatepicker {
    font-size: 14px;
  }

  /* support end 26-9-23 */
  /* support start 3-10-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 34%;
  }

  .calender-row-wpr-final .date-day-box p {
    margin-bottom: 8px;
  }

  /* support end 3-10-23 */

  /* support start 6-11-23 */
  /* .ddboxwraptp {
    width: auto;
  } */
  .calender-row-wpr-final .date-day-box {
    min-width: 80px !important;
  }

  /* support end 6-11-23 */
  /* support start 7-11-23 */
  .apartment-alpages-warper h1,
  .chsn-proprty-sec h1 {
    font-size: 28px;
  }

  /* support end 7-11-23 */
  /* 29.11.23 css */
  .prop-view-map-wraper .gmpMnlJssorSlider .gmpMnlJssorSlides .gmpMnlJssorSlide {
    width: 100% !important;
  }

  /* 29.11.23 css */

  /* 31.01.24 start */

  .details_field_wrappr label {
    width: 100%;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .details_field_wrappr input[type="text"],
  .details_field_wrappr input[type="email"] {
    width: 100%;
  }

  .details_field_wrappr:not(:last-child) {
    margin-bottom: 10px;
  }

  .details-wrppr {
    margin-bottom: 15px;
  }

  #send-friend-popUp {
    padding: 30px 15px;
  }

  /* 31.01.24 end */

  /* 15.02.24 css satrt */
  .pdf-btn-wpr {
    margin-bottom: -12px;
    margin-right: -0;
  }

  .pdf-btm-wpr .pdf-btn {
    width: 100%;
    margin-bottom: 12px;
    margin-right: 0;
  }

  /* 15.02.24 css end */
  /* suppost ss 25/8/2025 start */
  .alpages-listing li a {
    font-size: 14px;
  }

  /* suppost ss 25/8/2025 end */
  /* CSS Modification 25.03.26 */
.take-sec h2{
  font-size: 22px;
}

/* CSS Modification 25.03.26 */
  /* 1.3.26 */
.home .cmn-h2,.home h2{
  font-size: 22px;
}  
/* 1.3.26 */
/* 3.4.26 */
.shortlist_wrappr .sec-head h1 {
    font-size: 28px;
}
.bar-wrapper .blog-column .tignes-listing {
    margin-top: 10px;
}
/* 3.4.26 */
}

@media (max-width: 374px) {

  /* support start 26-9-23 */
  .custm-checkbox-ss label {
    width: 100%;
  }

  /* support end 26-9-23 */
  .calender-row-wpr-final .date-day-box {
    min-width: 40%;
  }

  .header-list li.property_currency_exchange .currency-switcher {
    width: 31px !important;
    font-size: 11px;
  }

  .navbar-brand {
    width: 45px;
  }

  .header-btn {
    height: 25px;
    width: 25px;
    min-width: 25px;
  }

  .header-list li {
    margin-right: 5px;
  }

  /* support start 9-11-23 */
  .tbl-price-clsss-left .dttxtss,
  .tbl-price-clsss-right .dttxtss {
    font-size: 13px;
  }

  /* support end 9-11-23 */
  /* Support starts 14.05.2024  */
  .cmn-btn.header-btn.enq,
  .cmn-btn.header-btn.shrlst {
    padding: 0 !important;
  }

  .cmn-btn.header-btn.enq img,
  .cmn-btn.header-btn.shrlst img {
    width: 20px;
  }

  /* Support ends 14.05.2024  */
}

body.page-id-6008 .entry-title,
body.page-id-6012 .entry-title {
  display: none;
}