@import url("https://db.onlinewebfonts.com/c/08c591e5cbbceed1d74d10622ce7118a?family=Strawford");

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap");

@import url("https://fonts.cdnfonts.com/css/arial-2");

.list.list-column,
.pagination {
  display: flex;
  flex-wrap: wrap;
}

.cmn--btn,
a,
img,
.name {
  transition: all 0.3s;
}

.list.list-style-two li::before,
.list.list-style-check li::before {
  position: absolute;
  font-weight: 900;
  font-size: 16px;
  font-family: "Line Awesome Free";
}

:root {
  --heading-font: "Strawford", sans-serif;
  --body-font: "Roboto", sans-serif;
  --heading: 178 78% 13%;
  --body: 0 0% 15%;
  --border: 0 0% 90%;
  --base-h: 178;
  --base-s: 78%;
  --base-l: 13%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-100: var(--base-h) var(--base-s) calc(var(--base-l) + 20%);
  --base-200: var(--base-h) var(--base-s) calc(var(--base-l) + 15%);
  --base-300: var(--base-h) var(--base-s) calc(var(--base-l) + 10%);
  --base-400: var(--base-h) var(--base-s) calc(var(--base-l) + 5%);
  --base-600: var(--base-h) var(--base-s) calc(var(--base-l) - 5%);
  --base-700: var(--base-h) var(--base-s) calc(var(--base-l) - 10%);
  --base-800: var(--base-h) var(--base-s) calc(var(--base-l) - 15%);
  --base-900: var(--base-h) var(--base-s) calc(var(--base-l) - 20%);
  --accent-h: 31;
  --accent-s: 43%;
  --accent-l: 60%;
  --accent: var(--accent-h) var(--accent-s) var(--accent-l);
  --light-h: 148;
  --light-s: 0%;
  --light-l: 95%;
  --light: var(--light-h) var(--light-s) var(--light-l);
  --primary: 245 82% 67%;
  --secondary: 210 7% 56%;
  --success: 147 67% 47%;
  --danger: 360 78% 62%;
  --warning: 29 100% 63%;
  --info: 200 90% 53%;
  --dark: 206 70% 11%;
  --white: 0 0% 100%;
  --black: 0 0% 0%;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--body));
  font-family: var(--body-font);
  font-weight: 300;
  background-color: #fffbf2;
}

a {
  text-decoration: none;
  color: hsl(var(--body));
}

a:hover {
  color: hsl(var(--base));
}

span,
sub,
sup,
a {
  display: inline-block;
}

.bg_img {
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.bg_fixed {
  background-attachment: fixed !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scrollToTop {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--white));
  z-index: 9999;
  top: 40px;
  right: 30px;
  border-radius: 50%;
  font-size: 14px;
  position: absolute;
  border: 1px solid #fff;
  transform: translateY(150px);
}

@media (max-width: 991px) {
  .scrollToTop {
    display: none;
  }
}

.scrollToTop:hover {
  color: hsl(var(--white));
}

.scrollToTop.active {
  transform: translateY(0);
  animation: bounceInDown 2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 300;
  line-height: 1.3;
  color: hsl(var(--heading));
  font-family: var(--heading-font);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: hsl(var(--heading));
}

h1 {
  font-size: 45px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 35px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 26px;
}

@media (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-inline: 15px;
  }
}

.text--primary {
  color: hsl(var(--primary)) !important;
}

.text--secondary {
  color: hsl(var(--secondary)) !important;
}

.text--success {
  color: hsl(var(--success)) !important;
}

.text--danger {
  color: hsl(var(--danger)) !important;
}

.text--warning {
  color: hsl(var(--warning)) !important;
}

.text--info {
  color: hsl(var(--info)) !important;
}

.text--dark {
  color: hsl(var(--dark)) !important;
}

.text--muted {
  color: hsl(var(--muted)) !important;
}

.text--base {
  color: hsl(var(--base)) !important;
}

.text--body {
  color: hsl(var(--body)) !important;
}

/* background color css start */
.bg--primary {
  background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
  background-color: hsl(var(--secondary)) !important;
}

.bg--success {
  background-color: hsl(var(--success)) !important;
}

.bg--danger {
  background-color: hsl(var(--danger)) !important;
}

.bg--warning {
  background-color: hsl(var(--warning)) !important;
}

.bg--info {
  background-color: hsl(var(--info)) !important;
}

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

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

.bg--base {
  background-color: hsl(var(--base)) !important;
}

.bg--accent {
  background-color: hsl(var(--accent)) !important;
}

/* background color css end */
.pt-120 {
  padding-top: clamp(70px, 5vw, 120px);
}

.pt-100 {
  padding-top: clamp(55px, 5vw, 100px);
}

.pt-80 {
  padding-top: clamp(50px, 5vw, 80px);
}

.pt-60 {
  padding-top: clamp(35px, 5vw, 60px);
}

.pt-50 {
  padding-top: clamp(35px, 5vw, 50px);
}

.pt-40 {
  padding-top: clamp(25px, 5vw, 40px);
}

.pb-120 {
  padding-bottom: clamp(70px, 5vw, 120px);
}

.pb-100 {
  padding-bottom: clamp(55px, 5vw, 100px);
}

.pb-80 {
  padding-bottom: clamp(50px, 5vw, 80px);
}

.pb-60 {
  padding-bottom: clamp(35px, 5vw, 60px);
}

.pb-50 {
  padding-bottom: clamp(35px, 5vw, 50px);
}

.pb-40 {
  padding-bottom: clamp(25px, 5vw, 40px);
}

.cmn--btn {
  border: none;
  box-shadow: none;
  padding: 9px 30px;
  font-weight: 600;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0px;
  z-index: 1;
  font-family: var(--heading-font);
  color: white;
  background: hsl(var(--base));
  border-radius: 50px;
  text-align: center;
}

.cmn--btn:hover {
  background: hsl(var(--base-600));
  color: white;
}

.badge--base {
  background-color: hsl(var(--base) / 0.15);
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
}

.badge--accent {
  background-color: hsl(var(--accent) / 0.15);
  border: 1px solid hsl(var(--accent));
  color: hsl(var(--accent));
}

.badge--primary {
  background-color: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.badge--secondary {
  background-color: hsl(var(--secondary) / 0.15);
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--secondary));
}

.badge--success {
  background-color: hsl(var(--success) / 0.15);
  border: 1px solid hsl(var(--success));
  color: hsl(var(--success));
}

.badge--danger {
  background-color: hsl(var(--danger) / 0.15);
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--danger));
}

.badge--warning {
  background-color: hsl(var(--warning) / 0.15);
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--warning));
}

.badge--info {
  background-color: hsl(var(--info) / 0.15);
  border: 1px solid hsl(var(--info));
  color: hsl(var(--info));
}

.badge--dark {
  background-color: hsl(var(--dark) / 0.15);
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--dark));
}

.badge--white {
  background-color: hsl(var(--white) / 0.15);
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white));
}

.badge {
  border-radius: 18px;
  padding: 4px 15px;
}

.badge.badge--icon {
  padding: 6px;
  border-radius: 5px;
}

.badge.badge--lg {
  padding: 6px 16px;
}

.badge.badge--md {
  padding: 4px 12px;
}

.badge.badge--sm {
  padding: 3px 10px;
}

.badge--fill-primary {
  background-color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--white));
}

.badge--fill-primary:hover {
  color: hsl(var(--white));
}

.badge--fill-secondary {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--secondary));
  color: hsl(var(--white));
}

.badge--fill-secondary:hover {
  color: hsl(var(--white));
}

.badge--fill-success {
  background-color: hsl(var(--success));
  border: 1px solid hsl(var(--success));
  color: hsl(var(--white));
}

.badge--fill-success:hover {
  color: hsl(var(--white));
}

.badge--fill-danger {
  background-color: hsl(var(--danger));
  border: 1px solid hsl(var(--danger));
  color: hsl(var(--white));
}

.badge--fill-danger:hover {
  color: hsl(var(--white));
}

.badge--fill-warning {
  background-color: hsl(var(--warning));
  border: 1px solid hsl(var(--warning));
  color: hsl(var(--white));
}

.badge--fill-warning:hover {
  color: hsl(var(--white));
}

.badge--fill-info {
  background-color: hsl(var(--info));
  border: 1px solid hsl(var(--info));
  color: hsl(var(--white));
}

.badge--fill-info:hover {
  color: hsl(var(--white));
}

.badge--fill-white {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--white));
  color: hsl(var(--white));
}

.badge--fill-white:hover {
  color: hsl(var(--white));
}

.badge--fill-dark {
  background-color: hsl(var(--dark));
  border: 1px solid hsl(var(--dark));
  color: hsl(var(--white));
}

.badge--fill-dark:hover {
  color: hsl(var(--white));
}

.badge--fill-base {
  background-color: hsl(var(--base));
  border: 1px solid hsl(var(--base));
  color: hsl(var(--white));
}

.badge--fill-base:hover {
  color: hsl(var(--white));
}

.table {
  margin: 0;
  font-size: 15px;
  background-color: hsl(var(--white));
  box-shadow: 0 0 8px hsl(var(--base) / 0.06);
}

.table thead tr th {
  background: hsl(var(--base));
  text-align: center;
  font-size: 15px;
  padding: 15px;
  color: hsl(var(--white));
  font-family: var(--heading-font);
  font-weight: 500;
}

.table thead tr th:first-child {
  text-align: left;
  border-radius: 5px 0 0 0;
}

.table thead tr th:last-child {
  border-radius: 0 5px 0 0;
  text-align: right;
}

.table tbody {
  border: 0 !important;
}

.table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 20px 15px;
  border-width: 1px;
  font-family: var(--heading-font);
}

.table tbody tr td::before {
  content: attr(data-label);
  font-family: var(--heading-font);
  font-size: 15px;
  color: hsl(var(--heading));
  font-weight: 500;
  display: none;
}

.table tbody tr td:first-child {
  text-align: left;
}

.table tbody tr td:last-child {
  text-align: right;
}

.table tbody tr:nth-child(even) {
  background: hsl(var(--light));
}

.table .amount span {
  margin-right: 4px;
}

@media (max-width: 767px) {
  .table--responsive--md thead {
    display: none;
  }

  .table--responsive--md tbody tr {
    display: block;
  }

  .table--responsive--md tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 767px) and (max-width: 991px) {
  .table--responsive--md tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .table--responsive--md tbody tr td:last-child {
    border: none;
  }

  .table--responsive--md tbody tr td::before {
    display: block;
  }
}

@media (min-width: 768px) {
  .table--responsive--md tbody tr td {
    border: 0;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg thead {
    display: none;
  }

  .table--responsive--lg tbody tr {
    display: block;
  }

  .table--responsive--lg tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .table--responsive--lg tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 991px) {
  .table--responsive--lg tbody tr td:last-child {
    border: none;
  }

  .table--responsive--lg tbody tr td::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .table--responsive--lg tbody tr td {
    border: none;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl thead {
    display: none;
  }

  .table--responsive--xl tbody tr {
    display: block;
  }

  .table--responsive--xl tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid hsl(var(--border));
  }
}

@media (max-width: 1199px) and (max-width: 991px) {
  .table--responsive--xl tbody tr td {
    font-size: 14px !important;
  }
}

@media (max-width: 1199px) {
  .table--responsive--xl tbody tr td:last-child {
    border: none;
  }

  .table--responsive--xl tbody tr td::before {
    display: block;
  }
}

@media (min-width: 1200px) {
  .table--responsive--xl tbody tr td {
    border: 0;
  }
}

.form-label {
  font-size: 15px;
}

.form--control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid hsl(var(--border));
  outline: 0 !important;
  box-shadow: none !important;
}

.form--control:focus {
  border: 1px solid hsl(var(--base));
}

.form--control[readonly] {
  border-color: hsl(var(--border));
  background-color: hsl(var(--light));
}

textarea.form--control {
  height: 130px;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: hsl(var(--heading));
  transition: background-color 5000s ease-in-out 0s;
}

.custom--radio {
  position: relative;
  padding-left: 0;
}

.custom--radio input[type="radio"] {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  cursor: pointer;
}

.custom--radio input[type="radio"]:checked ~ label::before {
  border-width: 1px;
  border-color: hsl(var(--base)) !important;
}

.custom--radio input[type="radio"]:checked ~ label::after {
  opacity: 1;
}

.custom--radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
}

.custom--radio label::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}

.custom--radio label::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: hsl(var(--base)) !important;
  opacity: 0;
  border-radius: 50%;
}

/* form css end*/
.custom--card {
  border: 1px solid hsl(var(--border));
  border-radius: 5px;
}

.custom--card .card-header,
.custom--card .card-footer {
  background: hsl(var(--base));
  text-align: center;
}

.custom--card .card-header .title,
.custom--card .card-footer .title {
  color: hsl(var(--white));
  margin: 0;
}

.custom--card .card-header,
.custom--card .card-footer {
  padding: 15px 25px;
  border-color: hsl(var(--border)) !important;
}

@media (max-width: 575px) {
  .custom--card .card-header,
  .custom--card .card-footer {
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .custom--card .card-header,
  .custom--card .card-footer {
    padding: 8px 15px;
  }
}

.custom--card .card-body {
  padding: 25px;
}

@media (max-width: 575px) {
  .custom--card .card-body {
    padding: 20px;
  }
}

@media (max-width: 450px) {
  .custom--card .card-body {
    padding: 15px;
  }
}

.custom--card.card--lg .card-header,
.custom--card.card--lg .card-footer {
  padding: 20px 35px;
}

@media (max-width: 767px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 15px 25px;
  }
}

@media (max-width: 575px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 10px 20px;
  }
}

@media (max-width: 450px) {
  .custom--card.card--lg .card-header,
  .custom--card.card--lg .card-footer {
    padding: 8px 15px;
  }
}

.custom--card.card--lg .card-body {
  padding: 35px;
}

@media (max-width: 767px) {
  .custom--card.card--lg .card-body {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .custom--card.card--lg .card-body {
    padding: 20px;
  }
}

@media (max-width: 450px) {
  .custom--card.card--lg .card-body {
    padding: 15px;
  }
}

.custom--card.card--md .card-header,
.custom--card.card--md .card-footer {
  padding: 10px 20px;
}

.custom--card.card--md .card-body {
  padding: 20px 20px;
}

.custom--modal .modal-footer,
.custom--modal .modal-body,
.custom--modal .modal-header {
  border-color: hsl(var(--border)) !important;
}

.custom--modal .modal-footer .modal-title,
.custom--modal .modal-header .modal-title {
  margin: 0;
  color: hsl(var(--heading));
}

.custom--modal .modal-footer .btn-close,
.custom--modal .modal-header .btn-close {
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: hsl(var(--danger)) !important;
}

.pagination {
  justify-content: center;
  gap: 12px;
}

.pagination .page-item {
  text-align: center;
}

.pagination .page-item .page-link {
  font-weight: 600;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border-color: hsl(var(--border));
  box-shadow: none;
  color: hsl(var(--body));
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-color: transparent;
}

.pagination .page-item.disabled {
  cursor: no-drop !important;
}

.pagination .page-item.disabled .page-link {
  color: hsl(var(--body));
  background: hsl(var(--dark) / 0.1);
  border: none;
}

.list.list-column {
  flex-direction: column;
}

.list.list-style-check li {
  position: relative;
  padding: 7px 0;
  padding-left: 28px;
  font-size: 14px;
}

.list.list-style-check li.active {
  color: hsl(var(--heading));
}

.list.list-style-check li.active::before {
  content: "\f00c";
}

.list.list-style-check li.disabled {
  color: hsl(var(--body) / 0.65);
}

.list.list-style-check li.disabled::before {
  content: "\f00d";
}

.list.list-style-check li::before {
  left: 0;
  top: 6px;
}

.list.list-style-one li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
}

.list.list-style-one li::before {
  position: absolute;
  content: "";
  left: 0;
  width: 10px;
  height: 10px;
  top: 12px;
  background-color: hsl(var(--base));
  border-radius: 50%;
}

.list.list-style-two li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
}

.list.list-style-two li::before {
  content: "\f101";
  left: 0;
  top: 6px;
  color: hsl(var(--base));
}

@media (min-width: 576px) {
  .list.list-50-sm li {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .list.list-50-md li {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .list.list-50-lg li {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .list.list-50-xl li {
    width: 50%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fffbf2;
  padding: 23px 0;
  transition: all ease 0.3s;
  border-bottom: 1px solid #eeeae3;
}

.header .container {
  max-width: 100%;
  padding-left: 100px;
  padding-right: 50px;
}

@media (max-width: 991px) {
  .header .container {
    padding-inline: 17px;
  }
}

#header-flex {
  gap: 2rem;
}

@media (min-width: 992px) {
  #header-container {
    padding-inline: 25px;
  }

  #header-flex {
    flex-direction: row-reverse;
  }
}

.header.sticky {
  background-color: #fffbf2;
  box-shadow: 1.433px 3.734px 11.83px 1.17px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .header {
    padding: 13.5px 0;
    background-color: #fffbf2;
  }
}

.header .menu-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
}

@media (min-width: 992px) {
  .header .menu-logo {
    bottom: 120px;
  }
}

.header-right-content {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 2rem;
}

.guesty-mobile-panel {
  display: contents;
}

.guesty-mobile-panel__toggle {
  display: none;
}

.guesty-mobile-panel.is-compact .guesty-mobile-panel__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  background-color: hsl(var(--base));
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  margin-inline-start: auto;
}

.guesty-mobile-panel__chevron {
  display: flex;
  transition: transform 0.3s ease;
}

.guesty-mobile-panel.is-open .guesty-mobile-panel__chevron {
  transform: rotate(180deg);
}

.guesty-mobile-panel__text {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/* Header height (top) and available height (max-height) are set inline via JS,
   matching .menu-sidebar-wrapper's positioning so the panel drops right below
   the sticky header regardless of its current height. */
.guesty-mobile-panel.is-compact #search-widget_IO312PWQ {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999999;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}

.guesty-mobile-panel.is-compact.is-open #search-widget_IO312PWQ {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (min-width: 992px) {
  .lang-text-icons-wrapper ul {
    display: none;
  }
}

.lang-text-icons-wrapper {
  flex-shrink: 0;
}

.lang-text-icons-wrapper ul {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 15px;
}

.lang-text-icons-wrapper a {
  display: flex;
}

.lang-text-icons-wrapper img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
  object-fit: contain;
}

.lang-text-icons-wrapper span {
  font-family: var(--heading-font);
}

@media (max-width: 991px) {
  .lang-text-icons-wrapper .lang-switcher {
    display: none;
  }
}

.logo a {
  max-width: 200px;
}

@media (max-width: 991px) {
  .logo a {
    max-width: 90px;
    height: 35px;
  }

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

.left-toggler {
  cursor: pointer;
  width: 45px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

@media (max-width: 991px) {
  .left-toggler {
    width: 23px;
    margin-left: 0;
  }
}

.left-toggler li {
  width: 45px;
  height: 2px;
  background-color: hsl(var(--base));
  line-height: 1;
  padding: 0;
  margin: 0;
  margin-left: auto;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.left-toggler li:not(:last-child) {
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .left-toggler li {
    width: 23px;
    height: 1px;
  }

  .left-toggler li:not(:last-child) {
    margin-bottom: 3px;
  }
}

@media (min-width: 992px) {
  .left-toggler.active li:first-child {
    transform: rotate(-45deg) translate(-9px, 1px);
  }

  .left-toggler.active li:last-child {
    transform: rotate(45deg) translate(-7px, 1px);
  }

  .left-toggler.active li:nth-child(2) {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .left-toggler.active li:first-child {
    transform: rotate(-45deg) translate(-7px, 1px);
  }

  .left-toggler.active li:last-child {
    transform: rotate(45deg) translate(-4.5px, 1px);
  }

  .left-toggler.active li:nth-child(2) {
    opacity: 0;
  }
}

.menu-sidebar-wrapper {
  background-color: #073937;
  position: fixed;
  bottom: 0;
  top: 99px;
  right: 0px;
  width: 307px;
  height: 100%;
  z-index: 999;
  transform: translateX(100%);
  transition: transform ease 0.3s;
}

@media (max-width: 991px) {
  .menu-sidebar-wrapper {
    width: 100%;
    top: 69px;
    overflow-y: auto;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

.menu-sidebar-wrapper.active {
  transform: translateX(0);
}

.direction-rtl .menu-sidebar-wrapper .close-btn-wrapper {
  left: auto;
  right: 0;
}

.direction-rtl .menu-sidebar-wrapper .menu a::before {
  border-radius: 50px 0 0 50px;
  left: -30px;
  right: -50px;
}

.menu-sidebar-wrapper .menu {
  padding-inline: 30px;
  padding-block: 50px;
}

@media (max-width: 991px) {
  .menu-sidebar-wrapper .menu {
    padding-inline: 30px;
    padding-block: 40px;
    padding-bottom: 30px;
  }
}

.menu-sidebar-wrapper .menu a {
  font-size: 15px;
  font-weight: 400;
  transition: all ease 0.3s;
  padding-block: 12px;
  color: white;
  z-index: 1;
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.menu-sidebar-wrapper .menu a::before {
  position: absolute;
  content: "";
  background-color: white;
  border-radius: 0px 50px 50px 0px;
  right: -30px;
  left: -50px;
  top: 0;
  bottom: 0;
  opacity: 0;
  font-weight: 700;
  z-index: -1;
}

.menu-sidebar-wrapper .menu a.active {
  color: rgb(7, 57, 55);
  font-weight: 700;
}

.menu-sidebar-wrapper .menu a.active::before {
  opacity: 1;
}

.menu-sidebar-wrapper .menu li {
  position: relative;
}

.menu-sidebar-wrapper .menu li:not(:last-child) {
  border-bottom: 1px solid rgba(242, 226, 196, 0.168627451);
}

.menu-sidebar-wrapper .close-btn-wrapper {
  position: absolute;
  left: 0px;
  top: -107px;
  width: 98px;
  height: 109px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #073937;
  z-index: 333;
}

@media (max-width: 991px) {
  .menu-sidebar-wrapper .close-btn-wrapper {
    display: none;
  }
}

.menu-sidebar-wrapper .close-btn-wrapper .close-btn {
  cursor: pointer;
  padding: 10px;
  border-radius: 20px;
  filter: invert(1);
}

@media (max-width: 991px) {
  .menu-sidebar-wrapper .whatsapp-wrapper {
    display: none;
  }
}

.menu-sidebar-wrapper .mobile-social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 10px;
  margin-top: auto;
  margin-bottom: 110px;
}

.menu-sidebar-wrapper .mobile-social-media a {
  color: white;
  font-weight: 400;
  font-size: 15px;
}

@media (min-width: 992px) {
  .menu-sidebar-wrapper .book-btn {
    display: none;
  }
}

.menu-sidebar-wrapper .book-btn a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  width: 100%;
  display: block;
  text-align: center;
  background-color: white;
  padding: 16.5px;
  color: rgb(7, 57, 55);
  line-height: 1;
  font-size: 15px;
  font-weight: 700;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  min-height: 100%;
  background: transparent;
  opacity: 0;
  transition: all ease 0.3s;
  z-index: -1;
}

.overlay.active {
  background: rgba(31, 31, 31, 0.4);
  opacity: 1;
  z-index: 99;
}

.footer-bg-img {
  width: 100%;
  height: 632px;
  position: absolute;
}

.footer-bg-img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 200px;
  background: rgba(255, 255, 255, 0.6705882353);
}

.footer-bg-img::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 200px;
  background-color: rgba(0, 0, 0, 0.8392156863);
}

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

@media (max-width: 991px) {
  .footer-bg-img {
    height: calc(100% - 110px);
  }

  .footer-bg-img::after {
    height: 112px;
  }

  .footer-bg-img::before {
    top: 112px;
  }
}

.footer-bottom {
  position: relative;
  z-index: 3;
  padding-top: 275px;
}

@media (max-width: 991px) {
  .footer-bottom {
    padding-top: 148px;
  }
}

.footer-bottom .container {
  max-width: 100%;
  padding-left: 116px;
  padding-right: 100px;
}

@media (max-width: 1199px) {
  .footer-bottom .container {
    padding-inline: 20px;
  }
}

.footer-wrappper2 {
  gap: 50px 50px;
}

.footer-left {
  display: flex;
}

@media (max-width: 1199px) {
  .footer-left {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .footer-left {
    width: 100%;
  }
}

.stay-up-to-date {
  margin-inline-start: 100px;
}

@media (max-width: 1399px) {
  .stay-up-to-date {
    margin-left: 50px;
  }
}

@media (max-width: 1199px) {
  .stay-up-to-date {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.stay-up-to-date h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.stay-up-to-date p {
  color: #9d9999;
  max-width: 250px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .stay-up-to-date p {
    max-width: 100%;
  }
}

.stay-up-to-date .form-group {
  display: flex;
  gap: 12px 12px;
}

.stay-up-to-date .form-control {
  padding-left: 15px;
  border-radius: 50px;
  background-color: transparent;
  color: #9d9999;
  border: 1px solid #9d9999;
}

@media (max-width: 991px) {
  .footer-logo {
    max-width: 166px;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 100%;
  }
}

.footer-right {
  width: 432px;
}

@media (max-width: 991px) {
  .footer-right {
    width: 100%;
  }
}

.footer-widget h3,
.footer-widget h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .footer-widget h3,
  .footer-widget h2 {
    font-size: 14px;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .footer-widget h3 {
    display: none;
  }
}

.footer-widget p {
  color: #9d9999;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 40px;
}

.footer-links {
  width: 150px;
  margin-top: 16px;
}

.footer-links li {
  line-height: 1.8;
  padding: 1px 0;
}

@media (max-width: 991px) {
  .footer-links li {
    line-height: 1.3;
  }
}

.footer-links li a {
  color: #9d9999;
  font-weight: 400;
}

.footer-links li a:hover {
  color: hsl(var(--base-300));
}

.footer-links li.active a {
  color: hsl(var(--base-300));
}

@media (min-width: 992px) {
  .footer-links span {
    display: none;
  }
}

@media (max-width: 991px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    width: 100%;
    gap: 0px 10px;
    justify-content: center;
  }

  .footer-links span {
    color: #9d9999;
    padding-left: 5px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

.phone-number {
  margin-bottom: 10px;
}

.phone-number a {
  color: #9d9999;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}

.phone-number img {
  margin-right: 5px;
  transform: translateY(-3px);
}

.email-wrapper a {
  font-size: 14px;
  color: #9d9999;
  text-decoration: underline;
}

.email-wrapper {
  margin-bottom: 27px;
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.social-media li a {
  color: #fff;
  font-size: 16px;
}

.social-media li a path {
  fill: #fff;
}

@media (max-width: 991px) {
  .footer-widget {
    width: 100%;
    text-align: center;
  }

  .footer-widget p {
    margin-bottom: 7px;
    margin-top: 4px;
  }

  .phone-number {
    margin-bottom: 0;
  }

  .phone-number img {
    height: 18px;
  }

  .phone-number a {
    font-size: 16px;
  }

  .email-wrapper {
    margin-bottom: 37px;
  }

  .social-media {
    margin-bottom: 35px;
    justify-content: center;
  }
}

button.slick-prev.slick-arrow {
  display: none !important;
}

.footer-style-two .footer-bg-img-two {
  position: absolute;
  height: 452px;
  width: 100%;
}

@media (max-width: 991px) {
  .footer-style-two .footer-bg-img-two {
    height: calc(100% - 150px);
  }
}

.footer-style-two .footer-bg-img-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-style-two .footer-bg-img-two::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.7764705882);
}

.footer-style-two .footer-bottom {
  padding-top: 75px;
}

@media (max-width: 991px) {
  .footer-style-two .footer-bottom {
    padding-top: 40px;
  }
}

.banner-img img {
  width: 100%;
  height: clamp(360px, 45vw, 612px);
  object-fit: cover;
  object-position: right center;
}

@media (max-width: 991px) {
  .banner-img img {
    height: clamp(280px, 55vw, 400px);
    object-position: calc(100% + 120px) center;
  }
}

.overlay-bg {
  position: relative;
}

.overlay-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2509803922);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  width: 100%;
}

@media (max-width: 991px) {
  .banner-content {
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    width: fit-content;
  }
}

.banner-content h1 {
  color: #fff;
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 20px;
  }
}

.banner-content h1 span {
  font-size: 60px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .banner-content h1 span {
    font-size: 28px;
  }
}

.banner-content h1 .second-span {
  margin-left: 120px;
}

@media (max-width: 991px) {
  .banner-content h1 .second-span {
    margin-left: 80px;
  }
}

.banner-content h1 b {
  margin-left: 330px;
}

@media (max-width: 991px) {
  .banner-content h1 b {
    margin-left: 220px;
  }
}

@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 23px;
  }
}

.banner-slider {
  width: 100%;
}

.banner-slider .slick-list {
  overflow: visible;
  padding-left: 30%;
  padding-right: 30%;
  margin-inline: 0;
}

@media (max-width: 991px) {
  .banner-slider .slick-list {
    /*padding-left: 8%;
        padding-right: 8%;*/
    padding: 0;
  }

  .banner-slider .slick-list .banner-img {
    padding-inline: 0 !important;
  }
}

.banner-slider .slick-list .banner-img {
  padding-inline: 6px;
}

.banner-slider .slick-list .banner-img img {
  height: 400px;
}

.banner-slider .arrow-right,
.banner-slider .arrow-left {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  padding: 15px;
  border: 1px solid hsl(var(--white));
  background-color: hsl(var(--white));
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .banner-slider .arrow-right,
  .banner-slider .arrow-left {
    width: 45px;
    height: 45px;
    padding: 13px;
    left: 20px;
  }
}

.banner-slider .arrow-right path,
.banner-slider .arrow-left path {
  fill: hsl(var(--base));
}

.banner-slider .arrow-right {
  left: auto;
  right: 30px;
}

@media (max-width: 991px) {
  .banner-slider .arrow-right {
    right: 20px;
  }
}

.slick-dots {
  margin: 0;
  position: relative;
  z-index: 3;
  bottom: -10px;
}

.slick-dots li {
  border-radius: 3px;
  transition: all ease 0.3s;
}

.slick-dots li button {
  width: 28px;
  height: 4px;
  border: 1px solid hsl(var(--base));
  padding: 0;
  transition: all ease 0.3s;
  border-radius: 3px;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  border-radius: 3px;
  background-color: hsl(var(--base));
}

.banner-section {
  background: #fffbf2;
  padding: 0 !important;
}

.apartment-style-two .apartment-top-content ul li img {
  max-width: 24px;
  max-height: 24px;
}

.banner-section .custom-container {
  max-width: 1430px;
  padding-inline: 15px;
  margin-inline: auto;
}

.banner-section .banner-top-content {
  padding-top: 40px;
  text-align: center;
}

.banner-section .banner-top-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.banner-section .banner-top-content h3 {
  font-size: 20px;
  margin-bottom: 22px;
}

.banner-section .banner-top-content p {
  font-size: 14px;
  font-family: "PerpetuaTitlingMTLight";
}

.banner-section .banner-top-content p span {
  padding-inline: 5px;
}

@media (max-width: 991px) {
  .banner-section .banner-top-content h2 {
    font-size: 20px;
  }

  .banner-section .banner-top-content h3 {
    font-size: 14px;
  }

  .banner-section .banner-top-content p {
    font-size: 10px;
  }
}

.banner-section .border-radius-img {
  border-radius: 5px;
  border-top-right-radius: 140px;
  border-bottom-left-radius: 27px;
}

@media (max-width: 991px) {
  .banner-section .border-radius-img {
    border-radius: 5px;
  }
}

.banner-section .border-radius-img .banner-img {
  border-radius: 5px;
  border-top-right-radius: 140px;
  border-bottom-left-radius: 27px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .banner-section .border-radius-img .banner-img {
    border-radius: 5px;
  }
}

.banner-section .border-radius-img img {
  border-radius: 5px;
  border-bottom-left-radius: 27px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .banner-section .border-radius-img img {
    border-radius: 5px;
    height: 200px;
  }
}

.hotel-slider-section .slick-dots {
  bottom: 55px;
}

.wow {
  animation-duration: 1s;
}

.accommodation-section {
  position: relative;
  padding: 100px 0;
}

@media (max-width: 991px) {
  .accommodation-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1400px) {
  .accommodation-section .container {
    max-width: 1224px;
  }
}

.accommodation-section .whatsapp-icon {
  position: fixed;
  bottom: 50px;
  right: 60px;
  cursor: pointer;
  z-index: 222;
  height: 50px;
  width: 50px;
}

.accommodation-section .whatsapp-icon::before {
  position: absolute;
  content: "";
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 991px) {
  .accommodation-section .whatsapp-icon {
    display: none;
  }
}

.accommodation-top-content {
  max-width: 580px;
  margin-bottom: 50px;
}

.accommodation-top-content h2 {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .accommodation-top-content {
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .accommodation-top-content h3 {
    padding-bottom: 10px;
  }

  .accommodation-top-content span {
    font-size: 13px;
  }

  .accommodation-top-content {
    text-align: center;
  }

  .accommodation-top-content p {
    margin-bottom: 27px;
  }
}

.room-wrapper {
  gap: 17px;
}

@media (max-width: 991px) {
  .room-wrapper {
    flex-wrap: wrap;
  }
}

.room-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

.room-wrapper .room-thumb {
  max-width: 715px;
  height: 464px;
}

@media (max-width: 991px) {
  .room-wrapper .room-thumb {
    max-width: 100%;
    width: 100%;
    height: 187px;
  }
}

.room-wrapper .room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  border-top-left-radius: 160px;
  border-bottom-right-radius: 34px;
}

@media (max-width: 991px) {
  .room-wrapper .room-thumb img {
    border-top-left-radius: 55px;
    border-bottom-right-radius: 14px;
  }
}

.room-wrapper .room-thumb h2,
.room-wrapper .room-thumb h3 {
  text-align: center;
  margin-bottom: 18px;
}

.room-wrapper .room-content {
  max-width: 468px;
}

@media (max-width: 991px) {
  .room-wrapper .room-content {
    max-width: 100%;
    width: 100%;
  }

  .room-wrapper .room-content img {
    height: 138px !important;
    width: 100%;
    border-radius: 5px !important;
  }
}

.room-wrapper .room-content .content {
  padding-left: 35px;
  padding-top: 42px;
}

.room-wrapper .room-content .content h3,
.room-wrapper .room-content .content h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

@media (max-width: 991px) {
  .room-wrapper .room-content .content h3,
  .room-wrapper .room-content .content h2 {
    text-align: center;
    font-size: 20px !important;
  }
}

.room-wrapper .room-content .content p {
  margin-bottom: 0;
}

.room-wrapper .room-content .content p:not(:last-child) {
  margin-bottom: 25px;
}

.room-wrapper .room-content .content a {
  color: hsl(var(--white));
  font-size: 13px;
  padding-inline: 13px;
  padding-top: 7px;
  padding-bottom: 6px;
  border-radius: 25px;
  background-color: hsl(var(--base));
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0px;
  transition: all ease 0.3s;
}

.room-wrapper .room-content .content a i {
  padding-left: 10px;
  font-size: 12px;
}

.room-wrapper .room-content .content a:hover {
  padding-left: 37px;
}

@media (max-width: 991px) {
  .room-wrapper .room-content .content {
    padding-top: 10px;
    padding-left: 0px;
    text-align: center;
  }

  .room-wrapper .room-content .content a {
    display: block;
    font-weight: 500;
    padding: 12px;
    border-radius: 12px;
  }

  .room-wrapper .room-content .content p {
    text-align: left;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .room-wrapper .room-content .content p:not(:last-child) {
    margin-bottom: 25px;
  }
}

.room-wrapper .room-content img {
  border-radius: 4px;
  object-fit: cover;
  height: 222px;
}

@media (max-width: 991px) {
  .room-wrapper.style-two h2 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center !important;
  }
}

.room-wrapper.style-two .room-thumb img {
  border-radius: 3px;
  border-bottom-right-radius: 160px;
  border-top-left-radius: 34px;
}

@media (max-width: 991px) {
  .room-wrapper.style-two .room-thumb img {
    border-bottom-right-radius: 55px;
    border-top-left-radius: 14px;
  }
}

@media (max-width: 991px) {
  .room-wrapper.style-two .room-content .content {
    text-align: center;
  }
}

.room-wrapper.style-two .room-content img {
  border-top-right-radius: 33px;
}

@media (max-width: 991px) {
  .room-wrapper.style-two {
    text-align: center;
    flex-direction: column-reverse;
  }
}

.selected-section {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
  background-color: #eaece2;
  overflow: hidden;
}

@media (max-width: 991px) {
  .selected-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .selected-section .container {
    max-width: 1600px;
    padding-inline: 40px;
  }
}

@media (max-width: 991px) {
  .selected-section {
    padding-bottom: 26px;
  }
}

.selected-section .arrow-left,
.selected-section .arrow-right {
  position: absolute;
  left: 40px;
  top: -65px;
  width: 114px;
  height: 114px;
  background-color: rgb(234, 236, 226);
  padding: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transition: all ease 0.3s;
}

.selected-section .arrow-left path,
.selected-section .arrow-right path {
  fill: hsl(var(--base));
}

@media (max-width: 991px) {
  .selected-section .arrow-left,
  .selected-section .arrow-right {
    display: none !important;
  }
}

.selected-section .arrow-left {
  opacity: 0;
}

.selected-section .arrow-right {
  left: auto;
  right: -40px;
}

.selected-top-title {
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .selected-top-title {
    text-align: center;
    margin-bottom: 25px;
  }
}

.selected-slider {
  padding-right: 0px;
}

@media (max-width: 991px) {
  .selected-slider {
    padding-right: 0px;
  }
}

.selected-slider:hover .arrow-left {
  opacity: 1;
  z-index: 44;
}

.selected-slider .slick-list {
  padding-right: 0 !important;
}

@media (max-width: 991px) {
  .selected-slider .slick-list {
    padding-right: 32px !important;
    padding-left: 0 !important;
  }
}

.selected-slider .slick-track,
.selected-slider .slick-list {
  display: block;
}

.selected-slider .single-item {
  padding-inline: 4px;
  height: 100%;
}

.selected-slider .single-item .single-item__inner {
  height: 100%;
}

.selected-slider .single-item img {
  border-radius: 6px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .selected-slider .single-item img {
    height: 268px;
  }
}

.selected-slider .single-item .content {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 24px;
}

.selected-slider .single-item .content h3 {
  font-size: 16px !important;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .selected-slider .single-item .content {
    display: inherit !important;
    padding: 15px !important;
    padding-bottom: 22px !important;
  }

  .selected-slider .single-item .content p {
    padding-left: 3px;
  }

  .selected-slider .single-item .content a {
    margin-top: 18px;
  }
}

.selected-slider .single-item .content p {
  margin-bottom: 0px;
}

.bqa-section {
  background-color: #fffbf2;
  padding-top: 86px;
  padding-bottom: 115px;
}

@media (max-width: 991px) {
  .bqa-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.bqa-section .bqa-item-wrapper {
  justify-content: center;
}

@media (min-width: 992px) {
  .bqa-section.style--two .bqa-item-wrapper {
    padding-inline: 40px;
  }
}

@media (min-width: 1200px) {
  .bqa-section.style--two .bqa-item-wrapper {
    padding-inline: 60px;
  }
}

.bqa-section .container {
  max-width: 100%;
  padding-inline: 90px;
}

@media (max-width: 991px) {
  .bqa-section .container {
    padding-inline: 12px;
  }
}

@media (min-width: 1200px) {
  .bqa-section .col-xl-4:nth-child(2) .bqa-item {
    padding-top: 50px;
  }
}

.cmn-top-content {
  max-width: 655px;
  margin-inline: auto;
  margin-bottom: 76px;
}

.page-id-32546 .cmn-top-content,
.page-id-32357 .cmn-top-content {
  margin-bottom: 40px !important;
}

.page-template-managment-php .cmn-top-content {
  margin-top: 76px;
}

.cmn-top-content h2 {
  margin-bottom: 6px;
}

.cmn-top-content span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: hsl(var(--base));
  margin-bottom: 28px;
}

.cmn-top-content p {
  margin-bottom: 0;
}

.cmn-top-content p:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .cmn-top-content {
    margin-bottom: 40px;
  }

  .cmn-top-content h2 {
    margin-bottom: 15px;
  }

  .cmn-top-content span {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
  }

  .cmn-top-content p {
    margin-bottom: 0px;
  }
}

.bqa-item {
  text-align: center;
  max-width: 280px;
  margin-inline: auto;
}

.bqa-item img {
  margin-bottom: 17px;
  height: 35px;
  object-fit: contain;
}

.bqa-item h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.bqa-item p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .bqa-item p {
    font-size: 13px;
  }

  .bqa-item h6 {
    font-size: 12px;
  }
}

.location-section {
  padding: 100px 0 30px;
  /* background-color: #fffbf2; */
}

@media (max-width: 991px) {
  .location-section {
    padding-top: 56px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1400px) {
  .location-section .container {
    max-width: 1328px !important;
  }
}

.location-section .location-area:not(:last-child) {
  margin-bottom: 36px;
}

@media (min-width: 992px) {
  .location-section .location-area {
    margin-bottom: 28px;
  }

  .location-section .location-area:nth-child(odd) .location-content {
    padding-left: 24px;
  }

  .location-section .location-area:nth-child(even) {
    flex-direction: row-reverse;
  }

  .location-section .location-area:nth-child(even) .location-content {
    padding-right: 24px;
  }

  .location-section .location-area:nth-child(even) .location-wrapper {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 180px;
  }
}

@media (max-width: 991px) {
  .location-section .location-area {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .location-section .location-area h2 {
    margin-bottom: 24px;
    text-align: center;
  }
}

.location-content h2 {
  margin-bottom: 24px;
}

.location-content p {
  margin-bottom: 0;
}

.location-content p:not(:last-child) {
  margin-bottom: 18px;
}

.location-content .cmn--btn {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .location-content h2 {
    margin-bottom: 24px;
    text-align: center;
  }

  .location-content .cmn--btn {
    width: 100%;
    margin-top: 10px;
  }
}

.location-wrapper {
  border-radius: 8px;
  border-top-left-radius: 180px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  height: 463px;
}

@media (max-width: 991px) {
  .location-wrapper {
    border-radius: 60px 0 10px 0;
    height: 350px;
    margin-bottom: 18px;
  }
}

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

.review-section {
  display: none;
  position: relative;
  padding-top: 90px;
  padding-bottom: 112px;
}

@media (max-width: 991px) {
  .review-section {
    padding-top: 55px;
    padding-bottom: 55px;
    overflow-x: hidden;
  }
}

.review-section .arrow-right,
.review-section .arrow-left {
  position: absolute;
  width: 35px;
  height: 35px;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 33;
  cursor: pointer;
  transition: all ease 0.3s;
}

.review-section .arrow-right path,
.review-section .arrow-left path {
  fill: #fff;
}

@media (max-width: 991px) {
  .review-section .arrow-right,
  .review-section .arrow-left {
    display: none;
  }
}

.review-section .arrow-left {
  opacity: 0;
}

.review-section .review-slider:hover .arrow-left {
  opacity: 1;
}

.review-section .arrow-right {
  left: auto;
  right: -50px;
}

.review-section .container {
  max-width: 100%;
  padding-inline: 100px;
}

@media (max-width: 991px) {
  .review-section .container {
    padding-left: 0;
    padding-right: 5px;
  }
}

.review-section .container {
  z-index: 3;
  position: relative;
}

.review-section.style--two .cmn-top-content {
  margin-bottom: 48px;
}

@media (max-width: 991px) {
  .review-section.style--two .cmn-top-content {
    margin-bottom: 36px;
  }
}

.review-section.style--two .review-title {
  color: hsl(var(--base));
}

.review-section.style--two .single-review-item {
  color: #262626;
  border-color: hsl(var(--base));
}

.review-title {
  color: #fff;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .review-title {
    margin-bottom: 28px;
    padding-left: 20px;
  }
}

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

.review-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7490196078);
}

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

.author-name-date {
  border-top: 1px solid #8aa195;
  padding-top: 35px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .author-name-date {
    padding-top: 28px;
    margin-top: 25px;
  }

  .author-name-date p {
    font-size: 10px;
    font-style: italic;
  }
}

.author-name-date span {
  font-weight: 700;
}

.author-name-date p {
  margin-bottom: 0;
}

.review-slider {
  margin-left: -12px;
  margin-right: -3px;
}

@media (max-width: 991px) {
  .review-slider .slick-list {
    padding-right: 16px !important;
    padding-left: 0 !important;
  }
}

.single-review-item {
  background-color: transparent;
  border: 1px solid white;
  padding-top: 30px;
  padding-inline: 60px;
  padding-bottom: 35px;
  border-radius: 32px;
  text-align: center;
  margin-inline: 12px;
  color: white;
}

.single-review-item sup {
  margin-left: 0px;
  margin-right: auto;
  text-align: left;
  transform: translateY(-10px) !important;
  transform: translateX(-7px);
}

.single-review-item sub {
  transform: rotate(180deg) translateY(-5px);
}

.single-review-item p {
  text-align: center;
}

.single-review-item > img {
  margin-bottom: 40px;
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 991px) {
  .single-review-item {
    margin-inline: 4px;
    padding-top: 18px;
    padding-inline: 15px;
    padding-bottom: 25px;
    opacity: 0.9;
  }

  .single-review-item img {
    margin-bottom: 20px;
  }
}

.about-bqa {
  padding-top: 120px;
  padding-bottom: 85px;
}

.star {
  gap: 5px;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .star {
    margin-bottom: 18px;
  }
}

.star li {
  color: #e6b022;
  font-size: 15px;
}

.about-bqa-content {
  text-align: center;
  max-width: 650px;
  margin-inline: auto;
}

.about-bqa-content h2 {
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .about-bqa-content h2 {
    margin-bottom: 18px;
  }
}

.about-bqa-content .sub-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-bqa-content .sub-text {
    font-size: 14px;
  }
}

.about-bqa-content p:not(:last-child) {
  margin-bottom: 20px;
}

.about-thumb-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin-inline: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .about-thumb-wrapper {
    padding-inline: 5px;
    padding-top: 18px;
    padding-bottom: 52px;
    max-width: 290px;
    margin-inline: auto;
  }
}

@media (max-width: 991px) {
  .about-thumb-wrapper .thumb-item {
    width: 123px;
    height: 67px;
  }

  .about-thumb-wrapper .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-thumb-wrapper .thumb-item:last-child {
    width: 125px;
  }

  .about-thumb-wrapper .thumb-item:last-child img {
    object-fit: contain;
  }
}

.about-thumb-wrapper .border-y {
  background-color: #9b9b9b;
  width: 1px;
  height: 125px;
}

@media (max-width: 991px) {
  .about-thumb-wrapper .border-y {
    height: 88px;
  }
}

.thumb-text-section {
  position: relative;
  padding: 280px 0;
  width: 100%;
}

.thumb-text-section .container {
  z-index: 3;
  position: relative;
  text-align: center;
}

.thumb-text-section h2 {
  font-size: 30px;
  color: rgb(249, 244, 234);
  line-height: 1.833;
  text-align: center;
  letter-spacing: 5px;
}

@media (max-width: 991px) {
  .thumb-text-section {
    padding-bottom: 123px;
    padding-top: 110px;
  }
}

@media (max-width: 991px) and (max-width: 575px) {
  .thumb-text-section h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
}

.bqa-thumb {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

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

.bqa-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3764705882);
}

.attraction-section {
  padding-top: 110px;
  padding-bottom: 125px;
  background-color: #fffbf2;
  position: relative;
}

@media (min-width: 992px) {
  .attraction-section .read-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .attraction-section {
    padding-top: 45px;
    padding-bottom: 42px;
  }

  .attraction-section .read-btn {
    margin-top: 30px;
    margin-inline: 15px;
  }
}

.attraction-section .arrow-left,
.attraction-section .arrow-right {
  position: absolute;
  left: -40px;
  top: -65px;
  width: 114px;
  height: 114px;
  background-color: #fffbf2;
  padding: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all ease 0.3s;
}

@media (max-width: 991px) {
  .attraction-section .arrow-left,
  .attraction-section .arrow-right {
    display: none !important;
  }
}

.attraction-section .arrow-left path,
.attraction-section .arrow-right path {
  fill: hsl(var(--base));
}

.attraction-section .arrow-left {
  opacity: 0;
}

.attraction-section .arrow-right {
  left: auto;
  right: -40px;
}

.attraction-section .container {
  max-width: 100%;
  padding-inline: 90px;
}

@media (max-width: 991px) {
  .attraction-section .container {
    padding-inline: 0px;
    padding-right: 8px;
  }
}

@media (max-width: 991px) {
  .attraction-slider .slick-list {
    padding-left: 65px;
  }
}

.attraction-slider:hover .arrow-left {
  opacity: 1;
  z-index: 4;
}

.single-attraction-item {
  padding-inline: 5px;
}

.single-attraction-item a {
  display: block;
}

@media (max-width: 991px) {
  .single-attraction-item {
    padding-inline: 3.5px;
  }
}

.single-attraction-item img {
  width: 100%;
  height: 353px;
  object-fit: cover;
  border-radius: 5px;
}

.single-attraction-item p {
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  padding-top: 20px;
  padding-inline: 30px;
  color: #003319;
}

@media (max-width: 991px) {
  .single-attraction-item p {
    font-size: 12px;
    padding-top: 10px;
    padding-inline: 10px;
  }
}

.attraction-title h2 {
  margin-bottom: 36px;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .attraction-title h2 {
    text-align: center;
    margin-bottom: 28px;
    padding-inline: 21px;
  }
}

.faq-section {
  display: none;
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .faq-section {
    padding-inline: 5px;
    padding-top: 45px;
    padding-bottom: 70px;
  }
}

.faq-section .container {
  max-width: 1256px;
}

.faq-section-title {
  margin-bottom: 36px;
  letter-spacing: 2px;
}

@media (min-width: 992px) {
  .faq-section-title {
    margin-bottom: 48px;
  }

  .faq-section-title br {
    display: none;
  }
}

@media (max-width: 991px) {
  .faq-section-title {
    margin-bottom: 28px;
    text-align: center;
  }
}

.faq-wrapper .faq-title {
  font-weight: 400;
  position: relative;
  padding-left: 6px;
  color: #000000;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-title {
    padding-left: 0px;
  }
}

.faq-wrapper .faq-title i {
  background-color: hsl(var(--base));
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 10px;
  position: absolute;
  right: 7px;
  top: 2px;
  transform: rotate(90deg);
  transition: all ease 0.3s;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-title i {
    width: 15px;
    height: 15px;
    font-size: 8px;
    right: 0px;
  }
}

.faq-wrapper .faq-item {
  border-bottom: 1px solid #000000;
  padding: 15px 0;
  cursor: pointer;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-item {
    padding: 10px 0px;
  }
}

.faq-wrapper .faq-item.open i {
  transform: rotate(-90deg);
}

.faq-wrapper .faq-item.active .faq-content {
  display: block;
}

.faq-wrapper .faq-item:first-child {
  border-top: 1px solid #000000;
}

.faq-wrapper .faq-item p {
  max-width: 910px;
  margin-bottom: 0px;
}

.faq-wrapper .faq-item .faq-content {
  padding-bottom: 5px;
  padding-left: 6px;
  margin-top: 10px;
  display: none;
}

.blog-section {
  padding-bottom: 100px;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .blog-section {
    padding-bottom: 60px;
    padding-top: 60px;
    padding-inline: 5px;
  }
}

@media (min-width: 1400px) {
  .blog-section .container {
    max-width: 1282px;
  }
}

.blog-section .blog-title {
  margin-bottom: 36px;
}

.blog-section .read-btn {
  margin-top: 95px;
}

@media (max-width: 991px) {
  .blog-section .read-btn {
    margin-top: 40px;
  }

  .blog-section .read-btn a {
    display: block;
  }
}

@media (max-width: 991px) {
  .blog-section .blog-title {
    margin-bottom: 27px;
    text-align: center;
  }
}

.blog-section.style--two {
  background-color: #eaece2;
}

.blog-section.style--two .blog-item img {
  height: 200px;
}

@media (max-width: 991px) {
  .blog-item {
    padding-bottom: 7px;
  }
}

.blog-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
}

.blog-item__content {
  padding-top: 15px;
  padding-inline: 5px;
}

.blog-item__content h3 {
  font-size: 16px;
  color: #003319;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

[dir="rtl"] .blog-item__content h3,
.direction-rtl .blog-item__content h3 {
  font-size: 18px;
}

.blog-item__content p {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .blog-item__content p {
    margin-bottom: 12px;
  }
}

.blog-item__content a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
}

.blog-item__content a:hover {
  transform: translateX(10px);
}

.blog-single-page .blog-title {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .blog-single-page .blog-title {
    margin-bottom: 36px;
  }
}

.blog-single-page .row {
  --bs-gutter-y: 80px;
}

@media (max-width: 991px) {
  .blog-single-page .row {
    --bs-gutter-y: 50px;
  }
}

.blog-details-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .blog-details-page {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

.blog-details-page .more-articles-title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  margin-bottom: 24px;
  margin-top: 24px;
  font-size: 14px;
}

.blog-details-page .blog-item .blog-item__content p {
  margin-bottom: 15px;
}

.blog-details-page .blog-item .blog-item__content h3 {
  color: hsl(var(--base-300));
}

.blog-details-page .blog-item .blog-item__content a {
  color: var(--black);
  font-weight: 400;
}

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

.blog-details-page .blog-single .blog-thumb {
  border-radius: 90px 8px 30px 8px;
}

@media (min-width: 992px) {
  .blog-details-page .blog-single .blog-thumb {
    width: 100% !important;
    height: 550px !important;
    max-width: 100% !important;
    object-fit: fill !important;
    display: block !important;
  }
}

.blog-details-page .blog-single h2 {
  font-size: 26px;
  color: hsl(var(--black) / 0.8);
}

.blog-details-page .blog-single span {
  font-size: 16px;
  color: hsl(var(--base));
  margin-bottom: 16px;
}

.blog-details-page .blog-single p {
  margin-top: 24px;
  color: hsl(var(--base));
}

.blog-details-page b.blog-date {
  display: inline-block;
  font-size: 13px;
  font-style: italic;
  color: #6b6b6b;
  margin-top: 30px;
  margin-bottom: 40px;
}

.see-all-articles {
  font-size: 16px;
  color: hsl(var(--base));
  font-weight: 500;
}

.our-apartment {
  padding-top: 87px;
  padding-bottom: 190px;
}

@media (max-width: 991px) {
  .our-apartment {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.our-apartment .container {
  max-width: 1224px;
}

.cmn-top-apartment-content {
  max-width: 660px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .cmn-top-apartment-content {
    margin-bottom: 30px;
  }
}

.cmn-top-apartment-content h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .cmn-top-apartment-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .cmn-top-apartment-content p br {
    display: none;
  }
}

.cmn-top-apartment-content p:last-child {
  margin-bottom: 0px;
}

.apartment-item {
  height: 382px;
  position: relative;
  overflow: hidden;
  transition: all ease 0.5s;
}

@media (max-width: 991px) {
  .apartment-item {
    height: 320px;
  }
}

.apartment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.apartment-item .title {
  background: rgba(0, 0, 0, 0.55);
  border-bottom-left-radius: 4px;
}

.apartment-item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all ease 0.3s;
}

.apartment-item .title h3 {
  font-size: 18px;
  text-align: center;
  padding: 11.5px;
  color: #fff;
}

@media (max-width: 991px) {
  .apartment-item .title h3 {
    font-size: 15px;
  }
}

.apartment-item:hover a {
  top: 0;
  width: 100%;
  height: 100%;
}

.apartment-item:hover .title {
  opacity: 0;
  visibility: hidden;
}

.apartment-item a {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  transition: all ease 0.3s;
  display: flex;
  justify-content: flex-end;
}

.apartment-item a .content {
  margin-top: auto;
  padding-bottom: 30px;
  max-width: 400px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-inline: auto;
  padding-top: 50px;
}

.apartment-item a .content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.apartment-item a .content p {
  color: #fff;
  margin-bottom: 70px;
}

.apartment-item a .content span {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 991px) {
  .apartment-item a .content {
    padding-top: 35px;
  }

  .apartment-item a .content h2 {
    font-size: 20px;
  }

  .apartment-item a .content p {
    padding-inline: 10px;
    margin-bottom: 35px;
  }
}

.our-apartment div[class="col-lg-6"]:nth-of-type(odd) .apartment-item {
  border-radius: 4px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.our-apartment div[class="col-lg-6"]:nth-child(even) .apartment-item {
  border-radius: 4px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

@media (max-width: 991px) {
  .our-apartment div[class="col-lg-6"]:nth-child(1) .apartment-item,
  .our-apartment div[class="col-lg-6"]:nth-child(2) .apartment-item,
  .our-apartment div[class="col-lg-6"]:nth-child(3) .apartment-item,
  .our-apartment div[class="col-lg-6"]:nth-child(4) .apartment-item {
    border-radius: 5px !important;
  }

  .our-apartment
    div[class="col-lg-6"]:nth-child(1)
    .apartment-item
    .apartment-hover-content,
  .our-apartment
    div[class="col-lg-6"]:nth-child(2)
    .apartment-item
    .apartment-hover-content,
  .our-apartment
    div[class="col-lg-6"]:nth-child(3)
    .apartment-item
    .apartment-hover-content,
  .our-apartment
    div[class="col-lg-6"]:nth-child(4)
    .apartment-item
    .apartment-hover-content {
    border-radius: 5px !important;
  }
}

.our-apartment div[class="col-lg-6"]:nth-child(1) .apartment-item {
  border-radius: 4px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 115px;
}

.our-apartment
  div[class="col-lg-6"]:nth-child(1)
  .apartment-item
  .apartment-hover-content {
  border-radius: 4px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 115px;
}

.our-apartment div[class="col-lg-6"]:nth-child(2) .apartment-item {
  border-radius: 4px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 115px;
}

.our-hotel {
  padding-bottom: 163px;
}

@media (max-width: 991px) {
  .our-hotel {
    padding-bottom: 80px;
  }
}

.information-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .information-section {
    padding-top: 60px;
  }
}

.information-section .container {
  max-width: 1424px !important;
}

@media (max-width: 991px) {
  .information-section .information-content-wrapper {
    flex-direction: column-reverse;
  }
}

.information-thumb-right {
  max-width: 592px;
}

@media (max-width: 1300px) {
  .information-thumb-right {
    width: 47%;
  }
}

.information-thumb-right {
  height: 382px;
  border-radius: 4px;
  border-top-right-radius: 115px;
  border-bottom-left-radius: 25px;
}

@media (max-width: 991px) {
  .information-thumb-right {
    width: 100%;
    height: 320px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
  }
}

.information-thumb-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.information-content-left {
  max-width: 655px;
}

@media (max-width: 1300px) {
  .information-content-left {
    width: 47%;
  }
}

@media (max-width: 991px) {
  .information-content-left {
    width: 100%;
  }
}

.information-content-left .info-top-content {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .information-content-left .info-top-content {
    margin-bottom: 30px;
    text-align: center;
  }
}

.information-content-left .info-top-content h2 {
  font-size: 26px;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .information-content-left .info-top-content h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

.information-content-left .info-top-content p {
  margin-bottom: 0;
}

.information-content-left .info-top-content p:not(:last-child) {
  margin-bottom: 16px;
}

.information-content-left .content-wrapper:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .information-content-left .content-wrapper:not(:last-child) {
    margin-bottom: 30px;
  }
}

.information-content-left .content-wrapper p {
  margin-bottom: 0;
}

.information-content-left .content-wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .information-content-left .content-wrapper {
    text-align: center;
  }
}

.information-content-left h3 {
  font-weight: 500;
  color: #262626;
  font-size: 18px;
  font-family: var(--body-font);
  margin-bottom: 9px;
}

@media (max-width: 991px) {
  .information-content-left h3 {
    font-size: 16px;
  }
}

.faq-bg-section {
  background-color: #fffbf2;
  padding-bottom: 150px;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .faq-bg-section {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.attraction-section-two {
  padding-top: 92px;
}

@media (max-width: 991px) {
  .attraction-section-two {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.attraction-section-two .container {
  max-width: 1430px !important;
  padding-inline: 20px;
}

@media (max-width: 991px) {
  .attraction-section-two .container {
    padding-inline: 12px;
  }
}

.attraction-section-two .attraction-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 110px 0;
}

@media (max-width: 991px) {
  .attraction-section-two .attraction-wrapper {
    gap: 0;
  }
}

.attraction-section-two .attraction-item {
  width: 20%;
  padding-inline: 4.5px;
}

@media (max-width: 991px) {
  .attraction-section-two .attraction-item {
    width: 100%;
  }

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

.attraction-section-two .attraction-item .thumb {
  height: 353px;
}

@media (max-width: 991px) {
  .attraction-section-two .attraction-item .thumb {
    height: 250px;
  }
}

.attraction-section-two .attraction-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.attraction-section-two .attraction-item .content {
  padding-inline: 5px;
}

.attraction-section-two .attraction-item .content span {
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--base));
}

.attraction-section-two .attraction-item .content span img {
  padding-left: 7px;
  transition: all ease 0.3s;
}

.attraction-section-two .attraction-item .content span:hover img {
  padding-left: 18px;
}

.attraction-section-two .attraction-item h6 {
  margin-bottom: 0;
  font-weight: 400;
  padding-top: 22px;
  color: #003319;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Roboto";
  padding-right: 10px;
}

.attraction-section-two .attraction-item p {
  padding-right: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.attraction-section-two .mt-110 {
  margin-top: 110px;
}

@media (max-width: 991px) {
  .attraction-section-two .mt-110 {
    margin-top: 30px;
  }
}

.pt--127px {
  padding-top: 127px;
}

@media (max-width: 991px) {
  .pt--127px {
    padding-top: 20px;
  }
}

.contact-section {
  padding-top: 125px;
  padding-bottom: 164px;
  background-color: #fffbf2;
}

@media (max-width: 991px) {
  .contact-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.contact-section .container {
  max-width: 1227px;
}

.contact-top-content {
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.contact-top-content h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.contact-top-content p {
  color: hsl(var(--base));
}

@media (max-width: 991px) {
  .contact-top-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-top-content h2 {
    font-size: 20px;
  }

  .contact-top-content span {
    font-size: 13px;
  }
}

.contact-wrapper {
  background-color: #eaece2;
  justify-content: space-evenly;
}

.contact-left-info {
  padding-inline: 25px;
}

@media (max-width: 991px) {
  .contact-left-info {
    margin-inline: auto;
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}

.divided-border {
  height: 320px;
  width: 1px;
  background-color: hsl(var(--base));
}

@media (max-width: 991px) {
  .divided-border {
    display: none;
  }
}

.contact-item {
  display: block;
  text-align: center;
}

.contact-item:not(:last-child) {
  margin-bottom: 28px;
}

.contact-item img {
  margin-bottom: 8px;
}

.contact-item span {
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}

.contact-item a {
  text-decoration: underline;
  color: hsl(var(--base));
}

.contact-item p {
  margin-bottom: 0px;
}

.contact-form {
  padding-top: 62px;
  padding-bottom: 60px;
  border-radius: 8px;
  margin-inline: auto;
  padding-inline: 30px;
  width: 65%;
}

@media (max-width: 991px) {
  .contact-form {
    padding-inline: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.contact-form .subtitle-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form .pera {
  margin-bottom: 26px;
}

.contact-form input[type="text"],
.contact-form textarea {
  height: 45px;
  border-radius: 2px;
  border: 1px solid hsl(var(--black) / 0.4);
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  padding-inline: 24px;
  background-color: #f8f4eb;
  color: #a39e9e;
}

@media (max-width: 991px) {
  .contact-form input[type="text"],
  .contact-form textarea {
    height: 40px;
    padding-inline: 15px;
  }
}

.contact-form input[type="text"]::placeholder,
.contact-form textarea::placeholder {
  color: #a39e9e;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
  border: 1px solid hsl(var(--base));
}

.contact-form textarea {
  height: 104px;
  padding-top: 10px;
}

.contact-form .form-group {
  margin-bottom: 11px;
}

.contact-form .send-btn {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .contact-form .send-btn {
    margin-top: 30px;
  }
}

.contact-form .send-btn a {
  color: #fff;
  background-color: hsl(var(--base));
  padding-inline: 48px;
  padding-block: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 11px;
  transition: all ease 0.3s;
}

.contact-form .send-btn a:hover {
  box-shadow: 0px 3px 10px hsl(var(--base) / 0.7);
  transform: translateY(-5px);
}

.contract-right-form {
  width: 800px;
}

@media (max-width: 1199px) {
  .contract-right-form {
    width: 650px;
  }
}

@media (max-width: 991px) {
  .contract-right-form {
    width: 100%;
  }
}

.checkbox-text-wrapper {
  line-height: 1;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.checkbox-text-wrapper label,
.checkbox-text-wrapper input {
  cursor: pointer;
  font-size: 13px;
  color: #a39e9e;
  font-weight: normal;
}

.checkbox-text-wrapper label {
  padding-left: 3px;
}

.checkbox-text-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid hsl(var(--black) / 0.4);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.checkbox-text-wrapper input[type="checkbox"]:checked {
  border-color: hsl(var(--base));
  background-color: hsl(var(--base));
}

.managment-section {
  background-color: #e5c68a;
}

.managment-wrapper {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 21px;
}

.managment-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 33.3333333333%;
  position: relative;
}

.managment-item:not(:last-child)::before {
  position: absolute;
  content: "";
  right: 20%;
  width: 1px;
  height: 30px;
  background-color: hsl(var(--base));
}

@media (max-width: 991px) {
  .managment-item:not(:last-child)::before {
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.managment-item h1 {
  font-weight: 700;
  color: hsl(var(--base));
  font-family: "PerpetuaBold";
  font-size: 64px;
  line-height: 1;
}

@media (max-width: 991px) {
  .managment-item h1 {
    font-size: 36px;
    width: 100%;
    text-align: center;
  }
}

.managment-content {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  font-family: "perpeta";
  line-height: 1;
  color: hsl(var(--base));
  padding-left: 10px;
}

@media (max-width: 991px) {
  .managment-content {
    font-size: 14px;
    width: 100%;
    text-align: center;
    padding-left: 0px;
  }
}

@media (max-width: 991px) {
  .bqa-section-two {
    padding-bottom: 80px;
  }
}

.location-section.about-section {
  padding-top: 90px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .location-section.about-section {
    padding-block: 56px;
  }
}

.location-section.about-section .about-top-content {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .location-section.about-section .about-top-content {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {
  .location-section.about-section .location-content h2 {
    font-size: 26px;
  }
}

.location-section.about-section .location-area {
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .location-section.about-section .location-area {
    margin-bottom: 48px;
  }
}

.location-section.about-section .location-area:last-child {
  margin-bottom: 0;
}

.about-overview-section {
  padding-top: 70px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .about-overview-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.about-overview-section .container {
  max-width: 1237px;
  padding-inline: 15px;
}

.about-content-left {
  width: 665px;
}

@media (max-width: 1399px) {
  .about-content-left {
    width: 550px;
  }
}

@media (max-width: 991px) {
  .about-content-left {
    width: 100%;
  }
}

.about-content-left .sub-text {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 44px;
}

@media (max-width: 991px) {
  .about-content-left .sub-text {
    margin-bottom: 30px;
    font-size: 15px;
  }
}

.about-content-left .star {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .about-content-left .star {
    margin-bottom: 25px;
  }
}

.about-content-left h2 {
  margin-bottom: 20px;
}

.about-content-left .content-content {
  max-width: 620px;
}

.about-content-left .content-content p {
  margin-bottom: 0;
}

.about-content-left .content-content p:not(:last-child) {
  margin-bottom: 25px;
}

.about-content-right {
  width: 420px;
}

@media (max-width: 991px) {
  .about-content-right {
    width: 100%;
  }

  .about-content-right .about-thumb-wrapper {
    margin-bottom: 0;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .about-content-right .about-thumb-wrapper .thumb-item img {
    object-fit: contain;
  }
}

.our-service-wrapper span {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 25px;
}

.sevice-item-wrapper {
  gap: 36px 10px;
}

.service-item {
  text-align: center;
  font-size: 14px;
  width: 100px;
}

@media (max-width: 991px) {
  .service-item {
    width: 90px;
  }
}

.service-item .icon {
  width: 100%;
  height: 98px;
}

@media (max-width: 991px) {
  .service-item .icon {
    height: 88px;
  }
}

.service-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fffbf2;
  border-radius: 4px;
  border-top-right-radius: 17px;
}

.service-item .content {
  line-height: 1.2;
  margin-top: 11px;
  color: #000000;
}

.let-talk-wrapper {
  background-color: #e5c68a;
  padding-inline: 100px;
  padding-top: 20px;
  padding-bottom: 25px;
  border-radius: 7px;
  box-shadow: -1.798px 0.877px 4px 0px rgba(0, 0, 0, 0.14);
  margin-top: -32px;
}

@media (max-width: 991px) {
  .let-talk-wrapper {
    padding-inline: 20px;
  }
}

.let-talk-wrapper form {
  gap: 12px;
}

.let-talk-wrapper .form-group {
  width: 26.3333333333%;
}

@media (max-width: 991px) {
  .let-talk-wrapper .form-group {
    width: 100%;
  }
}

.let-talk-wrapper input {
  height: 45px;
  border-radius: 3px;
  border: 1px solid hsl(var(--border));
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  padding-inline: 12px;
  font-style: italic;
}

@media (max-width: 991px) {
  .let-talk-wrapper input {
    height: 40px;
    padding-inline: 15px;
  }
}

.let-talk-wrapper input::placeholder {
  color: #dfd8d8;
}

.let-talk-wrapper input:focus {
  border: 1px solid hsl(var(--base));
}

.let-talk-wrapper a {
  color: #fff;
  background-color: hsl(var(--base));
  padding-inline: 89px;
  padding-block: 11px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 11px;
  transition: all ease 0.3s;
}

.let-talk-wrapper a:hover {
  box-shadow: 0px 3px 10px hsl(var(--base) / 0.7);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .let-talk-wrapper .send-btn {
    width: 100%;
    text-align: center;
  }

  .let-talk-wrapper .send-btn a {
    display: block;
  }
}

.let-talk-text {
  color: #262626;
  font-size: 14px;
  margin-bottom: 20px;
}

.let-talk-text span {
  font-weight: 500;
  font-size: 18px;
  padding-right: 10px;
}

.let-talk .container {
  max-width: 1430px;
  padding-inline: 15px;
}

.team-section {
  padding-top: 95px;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  .team-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.team-section .container {
  max-width: 1230px;
  padding-inline: 15px;
}

.team-wrapper {
  margin-inline: -11px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 46px;
}

@media (max-width: 991px) {
  .team-wrapper {
    row-gap: 20px;
    margin-inline: -5px;
  }
}

.team-item {
  width: 100%;
  text-align: center;
  padding-inline: 11px;
  width: 20%;
}

@media (max-width: 991px) {
  .team-item {
    width: 50%;
    padding-inline: 5px;
  }
}

.team-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .team-item img {
    height: 200px;
  }
}

.team-item p {
  margin-bottom: 0px;
  font-weight: 400;
  color: #000000;
  font-size: 22px;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .team-item p {
    font-size: 18px;
    margin-top: 12px;
    line-height: 1;
    margin-bottom: 5px;
  }
}

.team-item span {
  font-weight: 400;
  font-size: 14px;
  color: #777773;
  line-height: 1;
}

.team-top-content {
  max-width: 670px;
  margin-inline: auto;
  margin-bottom: 75px;
}

@media (max-width: 991px) {
  .team-top-content {
    margin-bottom: 35px;
  }
}

.team-top-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .team-top-content h2 {
    font-size: 20px;
  }
}

.team-top-content p {
  margin: 0;
}

.apartment-details-section {
  position: relative;
  padding-bottom: 80px;
  padding-top: 80px;
}

@media (max-width: 991px) {
  .apartment-details-section {
    padding-top: 35px;
  }
}

.apartment-details-right {
  width: 594px;
}

.apartment-details-right .apartment-details-thumb img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  border-bottom-left-radius: 115px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .apartment-details-right .apartment-details-thumb img {
    height: 300px;
    border-radius: 5px;
  }
}

.apartment-details-right .map iframe {
  width: 100%;
  height: 390px;
  border-radius: 8px;
  border-bottom-left-radius: 115px;
  overflow: hidden;
}

[dir="ltr"] #map {
  border-radius: 8px;
  border-bottom-right-radius: 115px;
}

@media (max-width: 991px) {
  .apartment-details-right .map iframe {
    height: 300px;
    border-radius: 5px;
  }
}

.apartment-details-right .apartment-detials-content {
  margin-top: 85px;
}

@media (max-width: 991px) {
  .apartment-details-right .apartment-detials-content {
    margin-top: 30px;
  }
}

.apartment-details-right .apartment-detials-content span {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
}

.apartment-details-right .apartment-detials-content p {
  margin-bottom: 20px;
}

.apartment-details-section {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .apartment-details-section {
    padding-bottom: 20px;
  }
}

.apartment-details-section .container {
  max-width: 1437px;
  padding-inline: 15px;
}

.apartment-text {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .apartment-text {
    margin-bottom: 20px;
  }
}

.apartment-slider-part {
  padding-bottom: 63px;
}

.apartment-slider-part .container {
  max-width: 1430px;
  padding-inline: 15px;
}

.apartment-details-left {
  width: 650px;
}

@media (max-width: 991px) {
  .apartment-details-left {
    width: 100%;
    margin-inline: auto;
  }
}

.apartment-details-left .top-content {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .apartment-details-left .top-content {
    margin-bottom: 35px;
    text-align: center;
    margin-inline: auto;
  }
}

.apartment-details-left .top-content .left {
  width: 400px;
}

.apartment-details-left .top-content h2 {
  font-size: 35px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .apartment-details-left .top-content h2 {
    font-size: 20px;
  }
}

.apartment-details-left .top-content p {
  font-size: 13px;
  font-weight: 500;
}

.apartment-details-left .top-content .right {
  margin-top: 8px;
}

@media (max-width: 991px) {
  .apartment-details-left .top-content .right {
    text-align: center;
    margin-inline: auto;
  }
}

.apartment-details-left .discription {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .apartment-details-left .discription {
    text-align: center;
    margin-bottom: 40px;
  }
}

.apartment-details-left .discription h3 {
  color: hsl(var(--black));
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .apartment-details-left .discription h3 {
    margin-top: 36px;
  }
}

.apartment-details-left .discription p {
  margin-bottom: 0;
}

.apartment-details-left .discription p:not(:last-child) {
  margin-bottom: 20px;
}

.apartment-details-left .things-to-know-content {
  max-width: 620px;
}

@media (max-width: 991px) {
  .apartment-details-left .things-to-know-content {
    max-width: 100%;
  }
}

.apartment-details-left .things-to-know-content .things-text {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
}

.apartment-details-left .things-to-know-content ul {
  margin-bottom: 20px;
}

.apartment-details-left .things-to-know-content span {
  font-weight: 500;
  margin-bottom: 0px;
}

.apartment-details-left .things-to-know-content p {
  margin-bottom: 22px;
}

.apartment-details-left .sevice-item-wrapper {
  gap: 30px;
}

@media (max-width: 991px) {
  .apartment-details-left .sevice-item-wrapper {
    gap: 20px 10px;
  }
}

.apartment-details-section .back-btn {
  position: absolute;
  top: -69px;
  right: 50px;
}

@media (max-width: 991px) {
  .apartment-details-section .back-btn {
    top: -60px;
    right: 30px;
  }
}

.apartment-details-section .back-btn a {
  font-weight: 400;
}

.apartment-details-section .back-btn a:hover img {
  transform: translateX(10px);
}

.apartment-details-section .back-btn img {
  padding-right: 10px;
  transform: translateY(-0.5px);
}

.view-all-apartments {
  padding: 10px 20px;
  border-radius: 50px;
  color: hsl(var(--base));
  background-color: rgb(255, 251, 242);
  box-shadow: -3.41px 3.657px 4.9px 0.1px rgba(0, 0, 0, 0.27);
  font-weight: 600;
  position: absolute;
  left: 20px;
  bottom: 20px;
  transition: all 0.3s linear;
}

.view-all-apartments:hover {
  background-color: rgb(233, 225, 206);
}

.pt--145px {
  padding-top: 145px;
}

@media (max-width: 991px) {
  .pt--145px {
    padding-top: 50px;
  }
}

.pb--98px {
  padding-bottom: 98px;
}

@media (max-width: 991px) {
  .pb--98px {
    padding-bottom: 80px;
  }
}

.new-room-width-full .apartments-main-amenities-wrapper .list-item-wrapper {
  gap: 0 120px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .new-room-width-full .apartments-main-amenities-wrapper .list-item-wrapper {
    gap: 10px 10px;
  }
}

.new-room-width-full .apartments-main-amenities-wrapper ul {
  width: 200px;
}

@media (max-width: 991px) {
  .new-room-width-full .apartments-main-amenities-wrapper ul {
    width: 140px;
  }
}

.new-room-width-full .things-to-know-content {
  max-width: 620px;
}

.new-room-width-full .things-to-know-content .things-text {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
}

.new-room-width-full .things-to-know-content ul {
  margin-bottom: 20px;
}

.new-room-width-full .things-to-know-content span {
  font-weight: 500;
  margin-bottom: 0px;
}

.new-room-width-full .things-to-know-content p {
  margin-bottom: 22px;
}

.apartments-main-amenities-wrapper {
  padding-block: 75px;
  padding-bottom: 85px;
}

.apartments-main-amenities-wrapper span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 40px;
}

.apartments-main-amenities-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 125px;
}

@media (max-width: 991px) {
  .apartments-main-amenities-wrapper ul {
    gap: 15px 35px;
  }
}

.apartments-main-amenities-wrapper ul li img {
  padding-right: 10px;
}

@media (max-width: 991px) {
  .apartments-main-amenities-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .apartments-main-amenities-wrapper span {
    margin-bottom: 20px;
  }
}

.single-apartment-item-slider {
  width: 427px;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .single-apartment-item-slider:not(:last-child) {
    margin-bottom: 22px;
  }
}

.single-apartment-item-slider .apartment-item-slider__thumb {
  height: 278px;
  position: relative;
}

@media (max-width: 991px) {
  .single-apartment-item-slider .apartment-item-slider__thumb {
    height: auto;
  }
}

.single-apartment-item-slider .apartment-item-slider__thumb .slick-list {
  padding: 0;
}

.single-apartment-item-slider .apartment-item-slider__thumb .arrow-left,
.single-apartment-item-slider .apartment-item-slider__thumb .arrow-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  left: 18px;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.single-apartment-item-slider .apartment-item-slider__thumb .arrow-left path,
.single-apartment-item-slider .apartment-item-slider__thumb .arrow-right path {
  fill: hsl(var(--base));
}

.single-apartment-item-slider .apartment-item-slider__thumb .arrow-right {
  left: auto;
  right: 18px;
}

.single-apartment-item-slider .apartment-item-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.single-apartment-item-slider .apartment-content {
  background-color: #fffbf2;
  padding-inline: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.single-apartment-item-slider .apartment-content .subtitle {
  font-size: 16px;
  font-weight: 400;
}

.single-apartment-item-slider .apartment-content p {
  margin-bottom: 0;
  font-size: 12px;
  color: #000000;
}

.single-apartment-item-slider .apartment-content p span {
  padding-inline: 5px;
}

.book-btn-wrapper {
  margin-inline: auto;
  width: 240px;
  margin-top: 100px;
}

@media (max-width: 991px) {
  .book-btn-wrapper {
    margin-top: 40px;
  }
}

.book-btn-wrapper a {
  background-color: hsl(var(--base));
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 240px;
  height: 40px;
  display: flex;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.book-btn-wrapper a:hover {
  box-shadow: 0px 3px 15px hsl(var(--base) / 0.7);
  transform: translateY(-7px);
}

.back-btn-link {
  font-size: 14px;
  color: hsl(var(--base));
  font-weight: 500;
}

.apartment-style-two {
  padding-top: 80px;
  padding-bottom: 150px;
  background-color: #fffbf2;
}

@media (max-width: 991px) {
  .apartment-style-two {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .apartment-style-two .things-to-know-content {
    text-align: center;
  }
}

.apartment-style-two .container {
  max-width: 1430px;
  padding-inline: 15px;
}

.apartment-style-two .apartment-top-content hr {
  opacity: 0.1;
}

.apartment-style-two .apartment-top-content sup {
  transform: translate(-2px, 10px);
  margin-left: -2px;
}

.apartment-style-two .apartment-top-content ul {
  display: flex;
  gap: 30px 45px;
}

.apartment-style-two .apartment-top-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.apartment-style-two .apartment-details-wrapper {
  align-items: flex-end;
}

.apartment-style-two .apartment-details-left {
  max-width: 720px;
  width: 100%;
}

@media (max-width: 1199px) {
  .apartment-style-two .apartment-details-left {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .apartment-style-two .apartment-details-left {
    max-width: 100%;
  }
}

.apartment-style-two .apartment-details-left .discription {
  margin-bottom: 40px;
}

.apartment-style-two .apartment-details-left ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
  margin-bottom: 30px;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .apartment-style-two .apartment-details-left ul {
    grid-template-columns: 1fr;
  }
}

.apartment-style-two .apartment-details-left ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 2px;
}

.apartment-style-two .apartment-details-left ul li img {
  max-width: 30px;
  width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.apartment-style-two .apartment-details-right {
  max-width: 450px;
}

@media (max-width: 1199px) {
  .apartment-style-two .apartment-details-right {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 991px) {
  .apartment-style-two .apartment-details-right {
    max-width: 100%;
  }
}

.apartment-style-two .apartments-main-amenities-wrapper {
  padding-top: 0px;
}

.apartment-style-two .apartments-main-amenities-wrapper span {
  margin-bottom: 20px;
}

.apartment-style-two .apartments-main-amenities-wrapper ul {
  gap: 22px 90px;
}

@media (max-width: 991px) {
  .apartment-style-two .apartments-main-amenities-wrapper ul {
    gap: 15px 35px;
  }
}

.apartment-gallery-wrapper .apartment-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 40px;
}

.apartment-gallery-wrapper .apartment-types li a {
  color: hsl(var(--base));
}

.apartment-gallery-wrapper .apartment-types li a.active {
  font-weight: 500;
}

.apartment-gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apartment-gallery-inner .gallery-item img {
  width: 100%;
}

.location-section-two {
  margin-bottom: 160px;
}

@media (max-width: 991px) {
  .location-section-two {
    margin-bottom: 64px;
  }
}

.map-property-wrapper {
  display: flex;
  gap: 40px 40px;
  max-height: 760px;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  overflow: -moz-scrollbars-none;
  /* Older Firefox versions */
}

.map-property-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  .map-property-wrapper {
    flex-direction: column;
  }
}

.map-property-wrapper .row {
  width: 60%;
}

@media (max-width: 991px) {
  .map-property-wrapper .row {
    width: unset;
  }
}

.map-property-wrapper .map {
  overflow: hidden;
  border-radius: 8px 0 0 120px;
}

@media (min-width: 992px) {
  .map-property-wrapper .map {
    width: 40%;
    position: absolute;
    right: 0;
    bottom: -60px;
    top: 80px;
  }
}

/* RTL overrides */
[dir="rtl"] .map-property-wrapper .map {
  border-radius: 0 8px 120px 0;
}

@media (min-width: 992px) {
  [dir="rtl"] .map-property-wrapper .map {
    right: unset;
    left: 0;
  }
}

.map-property-wrapper .map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.map-property-wrapper .form-select {
  background-color: transparent;
  border-radius: 50px;
  font-size: 13px;
  border-color: #e6b022;
  background-image: url("../images/icons/arrow-down.png");
  background-size: 10px;
  color: #9b9b9b;
  box-shadow: none !important;
}

.property-item {
  padding: 10px;
  border-radius: 8px;
  background-color: hsl(var(--white));
  box-shadow: 0.358px 0.934px 8.01px 0.99px rgba(0, 0, 0, 0.02);
}

.property-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.property-item__content {
  padding: 10px;
}

.property-item h3 {
  font-size: 18px;
  color: hsl(var(--base));
}

.property-item p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 13px;
}

.apartment-gallery {
  padding-top: 55px;
  padding-bottom: 103px;
}

@media (max-width: 991px) {
  .apartment-gallery {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.apartment-gallery .container {
  max-width: 1430px;
  padding-inline: 15px;
}

.apartment-gallery .apartment-thumb-wrapper {
  gap: 63px 0;
}

@media (max-width: 1399px) {
  .apartment-gallery .apartment-thumb-wrapper {
    gap: 30px;
    justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .apartment-gallery .apartment-thumb-wrapper {
    gap: 20px;
  }
}

.apartment-gallery .gallery-item {
  min-height: 278px;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .apartment-gallery .gallery-item {
    height: 200px;
  }
}

.apartment-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apartment-gallery .gallery-item:nth-child(1),
.apartment-gallery .gallery-item:nth-child(4) {
  grid-column: span 2 / span 2;
}

.apartment-gallery .book-btn-wrapper {
  margin-top: 80px;
}

@media (max-width: 991px) {
  .apartment-gallery .book-btn-wrapper {
    margin-top: 50px;
  }
}

.room-slider-section .apartment-slider-wrapper {
  gap: 60px 0px;
}

@media (max-width: 991px) {
  .room-slider-section .apartment-slider-wrapper {
    gap: 0px;
    justify-content: center !important;
  }
}

.room-slider-section .single-apartment-item-slider .apartment-content {
  padding: 20px 30px;
}

.room-slider-section .single-apartment-item-slider .apartment-content p {
  font-size: 16px;
  color: #000000;
}

@media (max-width: 991px) {
  .room-slider-section .single-apartment-item-slider .apartment-content {
    padding: 15px;
  }

  .room-slider-section .single-apartment-item-slider .apartment-content p {
    font-size: 14px;
  }
}

.location-section.about-section.property-management-section {
  margin-top: 120px;
  padding-top: 0;
  z-index: 1;
}

.location-section.about-section.property-management-section
  .property-management-bg {
  position: absolute;
  height: 100%;
  bottom: 0;
  top: 0;
  object-fit: cover;
  max-width: 100%;
  right: 0;
  z-index: -1;
}

.location-section.about-section.property-management-section
  .location-area
  > .col-lg-6 {
  padding: 0;
}

.location-section.about-section.property-management-section .image-wrapper {
  margin-top: -60px;
}

.location-section.about-section.property-management-section .location-area {
  margin-inline: 0;
  flex-direction: row;
}

.location-section.about-section.property-management-section
  .location-area
  .location-wrapper {
  height: 640px;
  border-radius: 180px 8px 60px 0px;
}

@media (max-width: 991px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-wrapper {
    height: 450px;
  }
}

.location-section.about-section.property-management-section
  .location-area
  .location-content {
  padding-left: 100px !important;
  padding-right: 80px;
  padding-top: 90px;
}

@media (max-width: 1399px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content {
    padding-left: 60px !important;
  }
}

@media (max-width: 1199px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content {
    padding-left: 50px !important;
    padding-right: 50px;
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content {
    padding-left: 20px !important;
    padding-right: 20px;
    padding-top: 10px;
  }
}

.location-section.about-section.property-management-section
  .location-area
  .location-content
  h1 {
  transform: translateX(-30px);
}

@media (min-width: 1400px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content
    h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content
    h1 {
    transform: translateX(0px);
  }
}

@media (min-width: 992px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content
    h2 {
    font-size: 35px;
  }
}

.location-section.about-section.property-management-section
  .location-area
  .location-content
  h3 {
  font-size: 35px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content
    h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .location-section.about-section.property-management-section
    .location-area
    .location-content
    .cmn--btn {
    margin-top: 30px;
  }
}

.property-management-bqa .bqa-item {
  max-width: 300px;
}

.property-management-bqa .bqa-item img {
  height: unset;
  max-height: 60px;
}

.property-management-bqa .bqa-item h3 {
  font-weight: 400;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .property-management-bqa .bqa-item h3 {
    font-size: 24px;
  }
}

.how-we-do-it-section {
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-bottom: 100px;
}

.how-we-do-it-section.last {
  margin-bottom: 100px;
}

.how-we-do-it-section .how-we-do-it-bg {
  background-size: cover;
  padding-bottom: 150px;
  border-bottom-left-radius: 160px;
}

.how-we-do-it-section .how-we-do-it-wrapper {
  max-width: 520px;
  padding: 60px;
  padding-bottom: 70px;
  border-radius: 0 0 80px 0;
  background-color: #fffbf2;
  position: relative;
}

@media (max-width: 575px) {
  .how-we-do-it-section .how-we-do-it-wrapper {
    padding: 30px;
  }
}

.how-we-do-it-section .how-we-do-it-wrapper span {
  font-size: 150px;
  color: rgba(230, 176, 34, 0.2);
  line-height: 1;
  font-family: "Arial Black", sans-serif;
  font-style: italic;
  position: absolute;
  left: 10px;
  top: 5px;
}

@media (max-width: 575px) {
  .how-we-do-it-section .how-we-do-it-wrapper span {
    font-size: 100px;
    left: -10px;
  }
}

.how-we-do-it-section .how-we-do-it-wrapper h2 {
  margin-bottom: 25px;
  line-height: 1;
}

@media (min-width: 576px) {
  .how-we-do-it-section .how-we-do-it-wrapper h2 {
    font-size: 35px;
  }
}

.how-we-do-it-section .how-we-do-it-wrapper p {
  margin-bottom: 30px;
}

.how-we-do-it-section.style--two {
  border-radius: 0 0 160px 0;
}

.how-we-do-it-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
}

.how-we-do-it-section-two .property-management-bg {
  top: 0 !important;
}

@media (max-width: 991px) {
  .how-we-do-it-section-two {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 991px) {
  .how-we-do-it-section-two.location-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow: hidden !important;
  }
}

@media (min-width: 992px) {
  .how-we-do-it-section-two.location-section {
    margin-top: 80px !important;
  }

  .how-we-do-it-section-two.location-section .row {
    margin-inline: 0;
  }

  .how-we-do-it-section-two.location-section .row .col-lg-6 {
    padding: 0;
  }
}

.how-we-do-it-section-two.location-section h2 span {
  font-size: 150px;
  color: rgba(230, 176, 34, 0.2);
  font-style: italic;
  line-height: 0.5;
  font-family: "Arial Black", sans-serif;
  position: absolute;
  left: 50px;
  top: 50px;
}

@media (max-width: 575px) {
  .how-we-do-it-section-two.location-section h2 span {
    font-size: 100px;
    top: 20px;
    left: 35px;
  }
}

@media (min-width: 992px) {
  .how-we-do-it-section-two.location-section h2 {
    font-size: 35px !important;
  }
}

@media (min-width: 992px) {
  .how-we-do-it-section-two .location-wrapper {
    transform: translateY(-80px);
  }
}

.how-we-do-it-section-two .location-content {
  position: relative;
}

@media (min-width: 992px) {
  .how-we-do-it-section-two .location-content {
    max-width: 750px;
    padding-top: 80px !important;
  }
}

.how-we-do-it-section-two .location-content span {
  font-size: 150px;
  color: rgba(230, 176, 34, 0.2);
  font-style: italic;
  line-height: 0.5;
  font-family: "Arial Black", sans-serif;
  position: absolute;
  left: 50px;
  top: 30px;
}

@media (max-width: 575px) {
  .how-we-do-it-section-two .location-content span {
    font-size: 100px;
    top: 10px;
    left: 10px;
  }
}

.how-we-do-it-section-two .how-we-do-it-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-inline: auto;
  max-width: fit-content;
  gap: 24px 50px;
}

@media (min-width: 1200px) {
  .how-we-do-it-section-two .how-we-do-it-wrapper {
    padding-left: 160px;
  }
}

.how-we-do-it-section-two .how-we-do-it-wrapper .title-wrapper {
  max-width: 360px;
  position: relative;
}

.how-we-do-it-section-two .how-we-do-it-wrapper .title-wrapper span {
  font-size: 150px;
  color: rgba(230, 176, 34, 0.2);
  font-style: italic;
  line-height: 0.5;
  font-family: "Arial Black", sans-serif;
  position: absolute;
  left: -50px;
  top: -50px;
}

@media (max-width: 575px) {
  .how-we-do-it-section-two .how-we-do-it-wrapper .title-wrapper span {
    font-size: 100px;
    top: -25px;
    left: -10px;
  }
}

.how-we-do-it-section-two .how-we-do-it-wrapper p {
  max-width: 500px;
}

@media (max-width: 991px) {
  .how-we-do-it-section-two.location-section .location-area {
    position: relative;
  }

  .how-we-do-it-section-two.location-section
    .location-area
    > .col-lg-6:first-child {
    order: 2;
  }

  .how-we-do-it-section-two.location-section
    .location-area
    > .col-lg-6:last-child {
    order: 1;
  }
}

.image-compare-wrapper {
  overflow: hidden;
  border-radius: 12px;
  margin-top: 30px;
}

.image-compare-wrapper .beer-slider {
  overflow: visible;
}

.image-compare-wrapper .beer-slider > img,
.image-compare-wrapper .beer-reveal > img:first-child {
  min-height: 500px;
  object-fit: cover;
}

@media (max-width: 575px) {
  .image-compare-wrapper .beer-slider > img,
  .image-compare-wrapper .beer-reveal > img:first-child {
    min-height: 300px;
  }
}

.image-compare-wrapper .beer-reveal {
  border-right: 2px solid hsl(var(--white));
  outline: 2px solid hsl(var(--white));
}

.how-we-do-it-section-three {
  background-color: transparent;
  padding-top: 100px !important;
  overflow: hidden;
}

@media (max-width: 991px) {
  .how-we-do-it-section-three {
    padding-top: 64px !important;
  }
}

.how-we-do-it-section-three h2 {
  margin-bottom: 10px !important;
}

@media (min-width: 992px) {
  .how-we-do-it-section-three h2 {
    font-size: 35px !important;
  }
}

.how-we-do-it-section-three .location-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 100px 8px 30px 8px;
}

@media (min-width: 992px) {
  .how-we-do-it-section-three .location-wrapper {
    transform: translateY(-20px);
  }
}

.how-we-do-it-section-three .location-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .how-we-do-it-section-three .location-content {
    padding-bottom: 30px;
    padding-top: 30px !important;
  }
}

.how-we-do-it-section-three .location-content::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: -100px;
  right: -150px;
  background-color: #eaece2;
  z-index: -1;
}

.how-we-do-it-section-three .location-content .infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  margin-top: 40px;
}

.how-we-do-it-section-three .location-content .infos li {
  text-align: center;
}

.how-we-do-it-section-three .location-content .infos li h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 !important;
}

.how-we-do-it-section-three .location-content .infos li p {
  line-height: 1;
  margin: 0;
}

.how-we-do-it-section-three .location-content .info-two {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 500;
  min-width: 150px;
}

@media (min-width: 1400px) {
  .how-we-do-it-section-three .location-content .info-two {
    border-right: 1px solid hsl(var(--white));
  }
}

.how-we-do-it-section-three .location-content .info-two-wrapper {
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .how-we-do-it-section-three .location-content .info-two-wrapper {
    margin-bottom: 60px;
  }
}

.how-we-do-it-section-three .location-content .info-row {
  padding-top: 30px;
}

@media (min-width: 992px) {
  .how-we-do-it-section-three .location-content .info-row {
    padding-top: 0px;
  }
}

@media (min-width: 1400px) {
  .how-we-do-it-section-three .location-content .info-three {
    padding-left: 40px;
  }
}

.how-we-do-it-section-three .location-content .info-three p {
  margin: 0;
  font-weight: 500;
}

.how-we-do-it-section-three .location-content .info-three h3 {
  font-size: 28px !important;
  font-weight: 600;
  margin: 0 !important;
}

.how-we-do-it-section-three .location-content .info-three h3 span {
  font-size: 22px;
}

.isotope-filter-section {
  padding-top: 80px;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  .isotope-filter-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.isotope-filter-section .container {
  max-width: 1430px;
  padding-inline: 15px;
}

.isotope-filter-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -20px;
  /* negative margin to cancel child margins */
  margin-top: 15px;
}

.isotope-filter-grid-item {
  width: calc(33.333% - 40px);
  /* 3 columns */
  margin: 25px 20px;
  /* Y X gap */
}

@media (max-width: 1199px) {
  .isotope-filter-grid-item {
    width: calc(50% - 40px);
    /* 2 columns */
  }
}

@media (max-width: 575px) {
  .isotope-filter-grid-item {
    width: calc(100% - 40px);
    /* 2 columns */
    margin: 12px 20px;
  }
}

.filter-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  font-family: var(--heading-font);
}

.filter-menu li {
  display: inline-block;
  cursor: pointer;
  padding: 6px 0px;
  border-radius: 5px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.filter-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: hsl(var(--base));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.filter-menu li.active::before,
.filter-menu li:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* about page - slick fixes */
.banner-slider .banner-img,
.banner-slider .banner-img img {
  width: 100%;
  height: auto;
}

.banner-slider .slick-slide {
  float: left;
  height: auto;
}

.banner-slider .slick-track {
  display: flex !important;
}

.banner-img {
  width: 100%;
}

/* When there's only one image, don't carousel */
.banner-slider.single-image-only .banner-img {
  width: 100%;
  display: block;
}

.banner-slider.single-image-only {
  width: 100%;
}

.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  display: none;
}

.gallery-overlay.active {
  display: block;
}

@media screen and (orientation: portrait) {
  #logoImg {
    margin-top: 5px;
  }
}

/* GILAD FIXES 12.4.26 */

.postid-32376 .header,
.postid-32531 .header {
  margin-bottom: 0;
}

[dir="rtl"] #homepage-post-summary {
  font-size: 16px;
}

.location-text-fix p {
  margin-left: 5px;
  margin-right: unset;
}

[dir="ltr"] .location-text-fix p {
  margin-left: unset;
  margin-right: 5px;
}

.mb-inContent h1 {
  margin-bottom: 10px;
}

@media (min-width: 900px) {
  .review-section .arrow-left,
  .review-section .arrow-right {
    top: 40% !important;
  }

  [dir="rtl"] .location-padding {
    padding-left: 24px;
    padding-right: 24px;
  }

  [dir="rtl"] .location-values-title {
    margin-bottom: 12px;
  }

  .location-o8o-item {
    margin-top: 1rem !important;
  }

  .page-id-32555 .cmn-top-content span,
  .page-id-11343 .cmp-top-content span {
    font-weight: 300 !important;
    font-size: 15px;
  }

  .page-id-11343 .bqa-item h3,
  .page-id-32555 .bqa-item h3 {
    font-weight: 400 !important;
  }

  [dir="rtl"] .ms-md-auto {
    margin-right: auto !important;
    margin-left: unset !important;
  }

  .location-isotope-item {
    width: calc(33% - 40px);
  }

  .location-property-text {
    font-weight: 500;
  }

  .blog-details-page b.blog-date {
    margin-bottom: 20px !important;
  }
}

.phone-number {
  display: flex;
}

@media screen and (orientation: portrait) {
  .phone-number {
    justify-content: center;
  }

  .location-values-title {
    /*text-align: center;*/
  }

  .location-property-text {
    font-size: 20px !important;
  }

  .page-id-32555 .bqa-item h3,
  .page-id-11343 .bqa-item h3 {
    font-size: 25px !important;
    font-weight: 400 !important;
  }

  .page-id-32555 .bqa-item p,
  .page-id-11343 .bqa-item p {
    font-weight: 300;
    font-size: 15px;
  }

  .lang-text-icons-wrapper span {
    display: inline-block !important;
  }

  .contact-form {
    margin: 0;
    width: 100%;
  }

  .amenities-list {
    margin: 0 0 !important;
  }

  .apartment-style-two .apartment-top-content h2 {
    flex: 0 0 100%;
  }

  .city-align {
    text-align: center;
  }

  .city-property-item-w-100 {
    width: 100%;
  }

  .location-price-m {
    margin-right: unset;
    margin-left: 10px;
  }
}

.page-id-32555 .cmn-top-content span,
.page-id-11343 .cmp-top-content span {
  font-weight: 300 !important;
  font-size: 15px;
}

.contact-item img {
  width: 19px;
  height: 27px;
  object-fit: cover;
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
}

#wpforms-submit-32195,
#wpforms-submit-31194 {
  color: #fff;
  background-color: hsl(var(--base));
  padding-inline: 48px;
  padding-block: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 11px;
  transition: all ease 0.3s;
  margin-top: 30px;
  margin-bottom: 11px;
  height: unset;
  line-height: unset;
}

#wpforms-submit-32195:hover,
#wpforms-submit-31194:hover {
  box-shadow: 0px 3px 10px hsl(var(--base) / 0.7);
  transform: translateY(-5px);
}

#wpforms-submit-31194 {
  margin-top: 0;
}

#wpforms-31194-field_8 .wpforms-field-label-inline,
#wpforms-32195-field_6 .wpforms-field-label-inline,
#wpforms-31194-field_6 .wpforms-field-label-inline {
  font-size: 13px;
  font-weight: 400;
  color: rgb(163, 158, 158);
}

#wpforms-32195-field_5,
#wpforms-31194-field_5 {
  border-radius: 2px;
  border: 1px solid hsl(var(--black) / 0.4);
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  background-color: #f8f4eb;
  color: #a39e9e;
}

#wpforms-32195-field_4,
#wpforms-32195-field_3,
#wpforms-31194-field_4,
#wpforms-31194-field_3,
#wpforms-31194-field_2,
#wpforms-31194-field_1 {
  border-radius: 2px;
  border: 1px solid hsl(var(--black) / 0.4);
  outline: 0 !important;
  box-shadow: none !important;
  width: 100%;
  background-color: #f8f4eb;
  color: #a39e9e;
  width: 100%;
  max-width: 100%;
}

#wpforms-31194-field_2 {
  direction: rtl;
}

#wpforms-32195-field_6_1,
#wpforms-31194-field_6_1 {
  width: 16px;
  height: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid hsl(var(--black) / 0.4);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

/*# sourceMappingURL=main.css.map */

.amenities-list {
  margin: 0 30px;
}

[dir="rtl"] .blog-item__content a:hover {
  transform: translateX(-10px);
}

.single-review-item img {
  width: unset;
}

.location-property-item {
  width: 100%;
}

.city-price-m {
  margin-right: unset;
  margin-left: 10px;
}

.whatsapp-icon {
  display: none;
}

@media (max-width: 991px) {
  .whatsapp-icon {
    display: block;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
  }

  .whatsapp-icon img {
    width: 50px;
    height: 50px;
  }

  .page-template-homepage .main-image {
    height: 187px !important;
  }

  .footer-wrapper2 {
    gap: 10px 50px !important;
  }
}

.fa-chevron-right::before {
  content: "\f054";
}

.phone-number img {
  height: 25px !important;
  width: 25px !important;
}

.featured-property-image {
  height: 688px !important;
}

@media screen and (orientation: portrait) {
  .featured-property-image {
    height: 277px !important;
  }

  .location-section.about-section.property-management-section
    .location-area
    .location-wrapper {
    border-radius: 180px 8px 60px 0px;
  }

  [dir="rtl"]
    .location-section.about-section.property-management-section
    .location-area
    .location-wrapper {
    border-radius: 8px 180px 0px 60px;
  }
}

#wpforms-32825-field_1,
#wpforms-32829-field_1 {
  max-width: 100%;
  width: 100%;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #9d9999;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #9d9999;
}

#wpforms-32825-field_1::placeholder,
#wpforms-32829-field_1::placeholder {
  color: #9d9999;
}

#wpforms-32825-field_2-container,
#wpforms-32829-field_2-container {
  margin-top: 10px;
}

#wpforms-32825-field_2-container .wpforms-field-label,
#wpforms-32829-field_2-container .wpforms-field-label {
  margin-bottom: 0px;
}

#wpforms-32825-field_2-container legend,
#wpforms-32825-field_2 .wpforms-field-label-inline,
#wpforms-32829-field_2-container legend,
#wpforms-32829-field_2 .wpforms-field-label-inline {
  color: white;
}

#rooms-sort {
  padding-right: 30px;
}

[dir="rtl"] #rooms-sort {
  padding-left: 30px;
  padding-right: 0.375rem;
}

.cmn--btn-wpforms {
  border: none !important;
  box-shadow: none !important;
  padding: 9px 30px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  z-index: 1 !important;
  font-family: var(--heading-font) !important;
  color: white !important;
  background: hsl(var(--base)) !important;
  border-radius: 50px !important;
  text-align: center !important;
}

.cmn--btn-wpforms {
  transition: all 0.3s !important;
}

#wpforms-form-32825,
#wpforms-form-32829 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 10px;
}

#wpforms-form-32825 .wpforms-field-container,
#wpforms-form-32829 .wpforms-field-container {
  display: contents;
}

#wpforms-32825-field_1-container,
#wpforms-32829-field_1-container {
  grid-column: 1;
  grid-row: 1;
}

#wpforms-32825-field_2-container,
#wpforms-32829-field_2-container {
  grid-column: 1 / 3;
  grid-row: 2;
}

#wpforms-form-32825 .wpforms-submit-container,
#wpforms-form-32829 .wpforms-submit-container {
  grid-column: 2;
  grid-row: 1;
}

#wpforms-32829 .wpforms-submit-container,
#wpforms-form-32825 .wpforms-submit-container {
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-32829-field_2 {
  margin-left: 5px;
}

.phone-number {
  color: #9d9999;
}

.menu-logo {
  width: unset;
  max-width: unset;
}

@media (max-width: 991px) {
  .social-media {
    margin-top: 15px;
    margin-bottom: 20px !important;
  }
}

/* Fix Slick RTL double-direction conflict on Chrome */
[dir="rtl"] .slick-list,
[dir="rtl"] .slick-track {
  direction: ltr;
}

[dir="rtl"] .slick-slide {
  direction: rtl;
}

@media (min-width: 991px) {
  .menu-sidebar-wrapper {
    left: 0;
    right: unset;
    transform: translateX(-100%);
  }
}

#header-container
  .guesty-root-element
  .guesty-widget__item:not(:has(.guesty-search-submit-btn)) {
  margin-inline-end: 20px !important;
}

#header-container .guesty-root-element.guesty-widget__container {
  justify-content: center;
}

#header-container
  .guesty-mobile-panel.is-compact
  .guesty-root-element.guesty-widget__container {
  padding: 2rem;
}

.guesty-root-element #guesty-search-widget__datepicker {
  gap: 20px;
}

#header-container .guesty-root-element .selectr-selected,
#header-container .guesty-root-element input {
  border: none !important;
  background-color: transparent !important;
  border-bottom: 1px solid hsl(var(--base)) !important;
  border-radius: 0 !important;
  color: hsl(var(--base)) !important;
}

#header-container
  .guesty-root-element
  #guesty-search-widget__datepicker
  [id^="date-picker-wrapper"] {
  background-color: transparent;
  border-radius: 0;
}

.guesty-root-element
  #guesty-search-widget__datepicker
  [id^="date-picker-wrapper"]
  input::placeholder {
  color: hsl(var(--base)) !important;
}

.guesty-root-element
  .lightpick__day.is-in-range:not(.is-start-date):not(.is-end-date) {
  color: #eaece2;
}

#header-container
  .guesty-root-element
  .guesty-widget__item:has(.guesty-search-submit-btn) {
  margin-right: 0 !important;
}

#header-container .guesty-root-element .guesty-search-submit-btn {
  border-radius: 50px !important;
  width: 150px !important;
  border-radius: 50px !important;
}

.text-page-section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .text-page-section {
    padding: 48px 0 56px;
  }
}

.text-page-content {
  max-width: 750ch;
}

.text-page-content p:last-child {
  margin-bottom: 0;
}
