:root {
  --base-color: #ffffff;
  --primary-color: #64b9c1;
  --secondary-color: #4c2f48;
  --text-color: #000000;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaBlack.otf);
  font-weight: 900;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaHeavy.otf);
  font-weight: 800;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaBold.otf);
  font-weight: 700;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaMedium.otf);
  font-weight: 500;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/Arquitecta.otf);
  font-weight: 450;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaLight.otf);
  font-weight: 300;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaThin.otf);
  font-weight: 200;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaBold.otf);
  font-weight: 700;
}

@font-face {
  font-family: "Arquitecta";
  src: url(../fonts/ArquitectaBold.otf);
  font-weight: 700;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: var(--base-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:active {
  background-color: var(--primary-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arquitecta";
  font-weight: 700;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  user-select: none;
}

.container {
  width: 100%;
  max-width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 70px;
  transition: all 0.3s;
}

/* Toggle */
.hamburger {
  display: none;
}

.hamburger .line {
  width: 28px;
  height: 2px;
  background-color: #ecf0f1;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-11 {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#hamburger-11.active {
  animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

#hamburger-11.active .line:nth-child(1),
#hamburger-11.active .line:nth-child(2),
#hamburger-11.active .line:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#hamburger-11.active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-11.active .line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#hamburger-11.active .line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* Toggle End*/

/* Header scroll animate */

.site-header.bg-active {
  top: -150px;
}

.site-header.bg-active.animate {
  top: 0;
}

/* Header scroll animate end */
.site-header {
  width: 100%;
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
}

body.home .site-header {
  position: fixed;
}

.head-top {
  width: 100%;
  background: var(--base-color);
  padding: 12px 0px;
}

.head-top-cntnt ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
}

.head-top-cntnt ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.head-top-cntnt ul li a img {
  height: 25px;
  width: 25px;
  display: block;
  object-fit: contain;
}

body.home .head-bottom {
  background: transparent;
}

body.home .bg-active .head-bottom {
  background: var(--secondary-color);
}

.head-bottom {
  position: relative;
  background: var(--secondary-color);
  transition: all 0.3s;
}

.header-row {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 30px;
  padding: 20px 0px;
}

.header-row .header-logo a {
  display: block;
  width: fit-content;
}

.header-row .header-logo img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-width: 192px;
}

.header-nav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 45px;
  flex-wrap: wrap;
}

.nav-overlay,
.nv-close {
  display: none;
}

.menu-header-menu-container {
  height: 100%;
}

.header-nav ul .cta {
  display: none;
}

.header-nav ul li a {
  color: var(--base-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.head-more {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 23px;
}

.head-cta a,
body.home .bg-active .head-cta a {
  width: fit-content;
  display: block;
  padding: 14px 32px;
  border-radius: 6px;
  background: var(--base-color);
  color: var(--secondary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
}

body.home .head-cta a {
  background: var(--secondary-color);
  color: var(--base-color);
}

.head-cta a:hover,
body.home .bg-active .head-cta a:hover {
  background: var(--base-color);
  color: var(--secondary-color);
}

.head-search a {
  display: block;
}

.head-search img {
  height: 44px;
  width: 44px;
  display: block;
  object-fit: contain;
}

li.menu-item:has(ul.sub-menu) {
  position: relative;
}

ul.sub-menu {
  position: absolute;
  left: 0px;
  width: 160px;
  flex-direction: column;
  background-color: #fff;
  color: #000;
  padding: 6px 0px;
  border-radius: 3px;
  box-shadow: 0px 0px 13px #808080a6;
  align-items: start;
  gap: 0px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s;
}

ul.sub-menu > li > a {
  color: #000;
  padding: 4px 12px;
  width: 100%;
  display: block;
  text-align: start;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  transition: all 0.3s;
}

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

/* ul.sub-menu>li>a:hover {
  background-color: #074d5e;
  color: #fff;
} */

li.menu-item:hover ul.sub-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/* header End */

.main-banner-sec {
  width: 100%;
  padding: 160px 0px 217px;
  background-color: var(--primary-color);
  background-image: url(../images/home-banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  /* margin-top: 50px; */
}

.banner-cntnt-holder {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.banner-cntnt-holder h1 {
  color: var(--base-color);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  max-width: 720px;
  margin: 0px auto 24px;
}

.banner-cntnt-holder p {
  color: var(--base-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  max-width: 720px;
  margin: 0 auto;
}

.banner-select-form {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: var(--base-color);
  margin-top: 50px;
}

.select-form-holder {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 20px;
  align-items: center;
}

.select-form-c1 ul {
  display: flex;
  gap: 10px;
}

.select-form-c1 ul li {
  flex: 0.72;
  padding: 10px;
  border-radius: 5px;
  background: #f8f8f8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.select-form-c1 ul li:is(:first-child, :last-child) {
  flex: 1;
}

.select-top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.select-top img {
  max-width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  /* filter: brightness(0) saturate(100%) invert(23%) sepia(16%) saturate(1810%)
    hue-rotate(283deg) brightness(89%) contrast(94%); */
}

.select-top span {
  font-family: "Arquitecta";
  color: #000;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.select-main {
  margin-top: auto;
}

.select-form-c1 ul li.price .select-main {
  display: flex;
  column-gap: 10px;
}

.select-main select {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  padding: 2px;
  background-color: transparent;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  background-image: url(../images/down.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: right center;
  cursor: pointer;
}

.select-form-c2 {
  padding: 10px 0;
  display: flex;
  gap: 10px;
}

.select-form-c2 :is(button, #resetbtn) {
  display: block;
  border: none;
  border-radius: 6px;
  background: var(--secondary-color);
  box-shadow: inset 0px 0px 0px 1px var(--secondary-color);
  padding: 14px 35px;
  color: var(--base-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
}

.select-form-c2 :is(button, #resetbtn):hover {
  color: var(--secondary-color);
  background: var(--base-color);
}

.home-plans-section {
  width: 100%;
  background: var(--base-color);
  padding: 120px 0px 100px;
}

.home-plans-title h2 {
  color: var(--secondary-color);
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.81px;
  margin-bottom: 60px;
}

.property-cards-holder {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 30px;
}

.property-card {
  position: relative;
  height: 100%;
  padding: 0;
  border-radius: 0;
  /* background: #D5E5F180; */
}

.property-card-image img {
  width: 100%;
  height: fit-content;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 47 / 30;
}

.property-card-cntnt {
  padding: 24px 0px 66px;
}

.property-card-cntnt .pc-title {
  margin-bottom: 24px;
  min-height: 66px;
}

.property-card-cntnt .pc-title p,
.property-card .pc-title h2,
body.search h2.entry-title {
  color: var(--secondary-color);
  font-family: "Arquitecta";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  display: block;
  margin-bottom: 12px;

  a {
    color: inherit;
  }
}

.property-card-cntnt .pc-title span {
  color: var(--secondary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
}

.property-card-cntnt .pc-title span::before {
  content: "$ ";
}

.pc-specs ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
}

.pc-specs ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.spec-ico img {
  height: 40px;
  width: 40px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  /* filter: brightness(0) saturate(100%) invert(23%) sepia(16%) saturate(1810%)
    hue-rotate(283deg) brightness(89%) contrast(94%); */
  display: none;
}

.spec-cntnt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-cntnt p {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24px;
  word-break: break-word;
}

.spec-cntnt span {
  color: #9d9d9d;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.21px;
  word-break: break-word;
}

.pc-cta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
}

.pc-cta a {
  display: block;
  width: fit-content;
  padding: 14px 30px;
  border-radius: 6px;
  background: var(--secondary-color);
  color: var(--base-color);
  box-shadow: inset 0px 0px 0px 1px var(--secondary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
  transition: all 0.3s;
}

.pc-cta a:hover {
  background: transparent;
  color: var(--secondary-color);
}

.contact-sec {
  width: 100%;
  padding: 60px 0px;
  background: var(--primary-color);
}

.contact-cntnt-holder {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
}

.contact-cntnt-holder h2 {
  color: var(--base-color);
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.08px;
  text-align: center;
  margin-bottom: 24px;
}

.contact-cntnt-holder p {
  color: var(--base-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.3px;
}

.contact-cntnt-holder a {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: 14px 27px;
  border-radius: 6px;
  background: var(--secondary-color);
  transition: all 0.3s;
  color: var(--base-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact-cntnt-holder a:hover {
  background: var(--base-color);
  color: var(--secondary-color);
}

.site-foot {
  width: 100%;
}

.foot-top {
  width: 100%;
  padding: 50px 0px;
  background-color: var(--base-color);
}

.footer-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 192px 192px;
  gap: 30px;
}

.foot-col .foot-logo a {
  display: block;
  width: fit-content;
}

.foot-col .foot-logo img {
  width: 100%;
  max-width: 180px;
  display: block;
  object-fit: contain;
  margin-bottom: 24px;
}

.foot-col p {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.24px;
  max-width: 390px;
}

.foot-col h3 {
  color: var(--text-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  margin-bottom: 24px;
}

.foot-col ul li a {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.24px;
  margin-bottom: 8px;
  display: block;
}

.foot-copyright {
  width: 100%;
  padding: 10px 0px;
  background: var(--secondary-color);
}

.cr-row ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px 104px;
  flex-wrap: wrap;
}

.cr-row ul :is(li, p, a, span) {
  color: var(--base-color);
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 0.18px;
  /* text-transform: uppercase; */
}

/* PROPERTY PAGE CSS */

.property-info-sec {
  width: 100%;
  background: var(--base-color);
  padding: 80px 0px 50px;
}

.property-info-top h1 {
  color: var(--secondary-color);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.property-info-top p {
  display: block;
  color: #7d7d7d;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.property-info-top p span::before {
  content: "$";
}

.property-info-top {
  margin-bottom: 40px;
}

.property-info-bottom {
  width: 100%;
}

.property-images-holder .slick-list {
  border-radius: 5px;
  margin: 0px -5px;
}

.property-images-holder {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* .property-images-holder:not(#slick-slide03, #slick-slide02) {
  grid-template-columns: repeat(1, 1fr);
}

.property-images-holder:not(#slick-slide03, #slick-slide02, #slick-slide01) img#slick-slide00 {
  max-height: 100%;
} */

.property-images-holder img:is(:nth-child(1), :nth-child(4)) {
  grid-column: span 2;
}

.property-images-holder img:nth-of-type(1n + 5) {
  display: none;
}

.property-images-holder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 400px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

/* IMAGE GRID FIXES  */

.property-images-holder:has(img:only-child) {
  display: block;
}

.property-images-holder:has(img:only-child) img {
  max-height: max-content;
}

.property-images-holder:not(:has(img:nth-child(4))) img:nth-child(3) {
  grid-column: span 3;
}

.property-images-holder:not(:has(img:nth-child(3))) img {
  grid-column: span 3;
}

.property-images-holder:not(:has(img:nth-child(3))) img {
  grid-column: auto;
}

.property-images-holder:not(:has(img:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}

/* facts */

.home-facts-sec {
  width: 100%;
  background: var(--base-color);
  padding: 50px 0px 60px;
}

.home-facts-main-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.home-facts-col-primary {
  width: 100%;
}

.home-facts-col {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid #d9d9d9;
}

.home-facts-col h2 {
  color: var(--secondary-color);
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.facts-cell-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.facts-cell-holder .fact-cell {
  width: 100%;
  flex: 1 1 calc(25% - 22px);
  border-radius: 10px;
  background: #f8f8f8;
  padding: 15px 10px 20px 20px;
}

/* .option-col .fact-cell {
  max-width: 180px;
} */

.fact-cell .cell-top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cell-top img {
  max-height: 24px;
  max-width: 24px;
  display: block;
  object-fit: contain;
  /* filter: brightness(0) saturate(100%) invert(23%) sepia(16%) saturate(1810%)
    hue-rotate(283deg) brightness(89%) contrast(94%); */
}

.cell-top p {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  white-space: nowrap;
}

.facts-cell-holder .fact-cell :is(span, b) {
  margin-top: 17px;
  display: block;
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.description-col,
.option-col {
  width: 100%;
  padding: 60px 0px;
  border-bottom: 1px solid #d9d9d9;
}

:is(.description-col, .option-col, .virtual-tour-col) h2 {
  color: var(--secondary-color);

  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.description-col p {
  color: #000;

  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  margin-top: 20px;
  max-width: 722px;
}

.floorplan-col {
  width: 100%;
  padding-top: 60px;
}

.floorplan-col h2 {
  color: var(--secondary-color);
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.floorplan-col img {
  width: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;
}

.pdf-btn {
  /*     border-top: 1px solid #D9D9D9; */
  padding-top: 60px;
  padding-bottom: 60px;
}

.sing-prop-back-button {
  padding-top: 60px;
  border-top: 1px solid #d9d9d9;
}

.home-facts-col-primary:has(.sing-prop-back-button) .virtual-tour-col {
  margin-bottom: 60px;
}

.pdf-btn a,
.sing-prop-back-button button {
  display: block;
  width: fit-content;
  padding: 10px 23px;
  border-radius: 6px;
  background: var(--secondary-color);
  color: var(--base-color);
  box-shadow: inset 0px 0px 0px 1px var(--secondary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
  transition: all 0.3s;
  border: 0;
}

.sing-prop-back-button button {
  padding: 10px 40px;
}

.pdf-btn a:hover {
  background: transparent;
  color: var(--secondary-color);
}

.virtual-tour-col {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #d9d9d9;
}

.home-facts-col-secondary {
  width: 100%;
  padding-top: 22px;
}

.facts-form-holder {
  width: 100%;
  position: sticky;
  top: 60px;
}

.facts-form-holder h3 {
  color: var(--secondary-color);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.facts-form-holder form .form_hldr p {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.facts-form-holder form .form_hldr br {
  display: none;
}

.facts-form-holder form .form_hldr input {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  padding: 17px;
  color: #747474;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
}

.facts-form-holder form .form_hldr select {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  padding: 17px;
  color: #747474;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.facts-form-holder form .form_hldr textarea {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  padding: 17px;
  color: #747474;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  resize: none;
  height: 150px;
}

.facts-form-holder form .form_hldr .wpcf7-form-control-wrap:has(.textarea) {
  grid-column: span 2;
}

.facts-form-holder form .form_hldr :is(button, input)[type="submit"] {
  border-radius: 5px;
  background: var(--secondary-color);
  box-shadow: inset 0px 0px 0px 1px var(--secondary-color);
  transition: all 0.3s;
  display: block;
  padding: 17px;
  color: var(--base-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  grid-column: span 2;
  cursor: pointer;
}

.facts-form-holder form .form_hldr :is(button, input)[type="submit"]:hover {
  background: var(--base-color);
  color: var(--secondary-color);
}

.facts-form-holder form .form_hldr .wpcf7-form-control-wrap:has(.sp2) {
  grid-column: span 2;
}

/* PROPERTY PAGE CSS end */
/* SEARCH PAGE CSS  */
body:has(.search-result-section) .home-plans-section {
  padding-top: 30px;
}

.search-result-section {
  width: 100%;
  background: #fff;
  padding: 80px 0px 30px;
}

.search-results-holder {
  width: 100%;
}

.search-results-holder span,
h1.archive-title,
h1.entry-title {
  color: var(--secondary-color);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

h1.archive-title span.color-accent {
  color: var(--secondary-color);
}

.search-results-holder span q {
  color: #000000;
}

:is(
    .search-results-holder,
    .search_title_hldr,
    .archive-subtitle,
    body.error404 .error404-content
  )
  p {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-align: center;
}

/* SEARCH PAGE CSS end */

/* SEARCH POPUP CSS */

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  max-width: 500px;
  height: fit-content;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  padding: 0px 15px;
}

.s-ovrlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  background: #00000078;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  cursor: url(../images/close.svg), pointer;
  transition: all 0.3s;
}

.main_header:has(.search-popup.active) .s-ovrlay {
  opacity: 1;
  pointer-events: all;
  cursor: url(../images/close.svg), pointer;
}

.search-popup .search {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px;
}

.search-popup form {
  width: 100%;
}

.search-popup .search input,
.no-search-results-form input:not([type="submit"]) {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  background: #f8f8f8;
  padding: 11px 17px;
  color: #747474;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  outline: none;
}

.no-search-results-form input:not([type="submit"]) {
  line-height: 25px;
}

.no-search-results-form input.search-submit {
  width: fit-content;
  display: block;
  padding: 14px 32px;
  border-radius: 6px;
  background: #074d5e;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
  cursor: pointer;
  outline: none;
  border: 1px solid #074d5e;
}

.no-search-results-form input.search-submit:hover {
  background: #fff;
  color: #074d5e;
}

.no-search-results-form form.search-form {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.search-popup .search button {
  display: block;
  border: none;
  border-radius: 6px;
  padding: 14px 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
  background: var(--base-color);
  color: var(--secondary-color);
}

.search-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* SEARCH POPUP CSS end */

.search_title_hldr,
.archive-header {
  margin-bottom: 60px;
  text-align: center;
}

.featured-media-inner.property-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.featured-media-inner.property-card-image:hover img {
  scale: 1.05;
}

.featured-media-inner.property-card-image img {
  max-height: fit-content;
  min-height: 250px;
  transition: all 0.5s ease;
}

/* body.search h2.entry-title a {
  color: var(--text-color);
} */
.property-card .entry-categories-inner a {
  color: var(--secondary-color);
}

.property-card .featured-media {
  padding-bottom: 30px;
  position: relative;
}

.prop_srch_page .banner-select-form {
  margin-bottom: 40px;
  background: #f8f8f8;
  margin-top: 0;
}

.prop_srch_page .banner-select-form .select-form-c1 ul li {
  background: #fff;
}

.disc_cntnt_hldr p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.24px;
  text-align: center;
  background: var(--secondary-color);
}

.disclaimer {
  padding: 60px 0;
  background: var(--secondary-color);
}

/* New Edits */

/* .property-card {
  display: none;
}

.property-card:has(.pc-title span) {
  display: block;
}
*/

.menu-header-menu-container,
.head-cta,
#hamburger-11.hamburger,
.banner-cntnt-holder p,
.description-col,
.foot-top {
  display: none;
}

.contact-cntnt-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 0px 30px;
  max-width: 1090px;
  margin: 0px auto 0px;
}

.client-logo-holder {
  border: solid #f9f9f9 1px;
  border-radius: 3px;
}

.client-logo-holder img {
  object-fit: contain;
  display: block;
  padding: 30px 50px;
  min-height: 132px;
}

.select-form-holder:has(.select-form-c2 button.required) li.price {
  box-shadow: 0px 0px 0px 1px red;
}

/* .head-search {
    display: none;
} */

.page-template-search-template .select-form-c2 #resetbtn {
  display: none;
}

.page-template-search-template .banner-select-form {
  box-shadow:
    0px 10px 10px -3px rgba(0, 0, 0, 0.1),
    0px -5px 10px -3px rgba(0, 0, 0, 0.1);
}

.page-template-search-template .banner-cntnt-holder {
  padding: 20px 0;
}

.page-template-search-template .home-plans-section {
  padding-top: 50px;
}

/* Northwest Florida Inner page start */

.map-sec {
  padding: 80px 0px 100px;
}

.page-title h1 {
  text-align: center;
  padding-bottom: 70px;
  font-family: "Arquitecta";
  font-size: 55px;
  font-weight: 700;
  line-height: 57.65px;
  color: var(--secondary-color);
}

.page-title-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.page-title-img img,
.Logo--ineer img {
  max-width: 170px;
  max-height: 133px;
}

.map-holder {
  position: relative;
}

.marks-box {
  position: absolute;
  text-align: center;
}

.marks_div {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
}

:is(.marks-box:nth-child(4), .marks-box:nth-child(5)) .marks_div {
  width: 60px;
  height: 60px;
}

.marks-box:first-child {
  top: 6%;
  left: 36%;
}

.marks-box:nth-child(2) {
  top: 11%;
  left: 43%;
}

.marks-box:nth-child(3) {
  top: 16%;
  left: 50.3%;
}

.marks-box:nth-child(4) {
  top: 10%;
  left: 57%;
}

.marks-box:nth-child(5) {
  top: 3%;
  left: 66%;
}

.mark-tooltip {
  width: fit-content;
  max-width: 125px;
  height: 35px;
  padding: 5px 13px;
  border-radius: 6px;
  background-color: #ffffff;
  margin-bottom: 10px;
  position: relative;
}

.mark-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: calc(50% - 4px);
  width: 8px;
  height: 13px;
  background-color: #ffffff;
  transform: rotate(45deg);
}

.map-image {
  position: relative;
}

.map-image > img {
  object-fit: cover;
  border-radius: 10px !important;
}

.mark-tooltip span {
  font-family: Open Sans;
  font-size: 12px;
  font-weight: 700;
  line-height: 12.11px;
  text-align: center;
}

.marks-popUps .ovrly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000078;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.marks-popUps .ovrly.active {
  opacity: 1;
  pointer-events: all;
}

.marks-popUps .popUp-holder {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 750px;
  height: fit-content;
  padding: 30px;
  background-color: #fff;
  z-index: 2;
  transform: translate(-50%, -55%);
  border-radius: 7px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.popUp-close {
  width: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.popUp-close img {
  display: block;
}

.marks-popUps .popUp-holder.active {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

span.view-full {
  position: absolute;
  width: 184px;
  height: 94px;
  bottom: 269px;
  left: 40px;
  cursor: pointer;
}

span.view-full-orgi {
  position: absolute;
  width: 185px;
  height: 94px;
  bottom: 190px;
  left: 143px;
  cursor: pointer;
}

.full-view-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.backFullView {
  position: absolute;
  top: 30px;
  left: 30px;
  cursor: pointer;
}

.full-view-map.active {
  opacity: 1;
  pointer-events: all;
}

/* Northwest Florida Inner page end */

/* Watersound Origins Map Start */

.map-box {
  text-align: center;
  position: absolute;
  width: fit-content;
  max-width: 250px;
  cursor: pointer;
  translate: 0px 35px;
}

.origins-map-image img {
  max-height: 958px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.map-box img {
  width: 30px;
}

.orign_main {
  display: block;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.map-box:first-child {
  top: 15%;
  left: 11.5%;
}

.map-box:nth-child(02) {
  top: 16%;
  left: 29.4%;
}

.map-box:nth-child(03) {
  left: 35.5%;
  top: 28%;
}

.map-box:nth-child(04) {
  top: 41.5%;
  left: 49%;
}

.map-box:nth-child(05) {
  top: 33%;
  right: 38.5%;
}

.map-box:nth-child(06) {
  top: 42%;
  right: 41%;
}

.map-box:nth-child(07) {
  top: 1.2%;
  left: 17.7%;
}

.map-box:nth-child(08) {
  top: 6%;
  left: 23%;
}

.map-box:nth-child(09) {
  top: 12.5%;
  left: 25.6%;
}

.map-box:nth-child(10) {
  top: 25%;
  left: 32.5%;
}

/* LifeStyle Page Start */

:is(
  .Builders-sec,
  .lifestyle-sec,
  .groups-sec,
  .Future-growth-sec,
  .furtur-grow-deils-sec,
  .Members-sec
) {
  padding: 80px 0px;
}

.category-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-cards {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.category-cards img {
  display: block;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.category-cards:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.category-cards button {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 6px;
  /*font-family: "Arquitecta";
   
  font-weight: 700; */
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  line-height: 20px;
  letter-spacing: 0.03em;
  display: inline-block;
  width: 93%;
  padding: 11px 10px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  pointer-events: none;
  box-shadow: 0px 6px 10px 15px #074d5e24;
}

.lifestyle-video-row iframe {
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 40px;
}

.lifestyle-video-row {
  padding-bottom: 50px;
}

/* Builders Start */
.Builders-sec .category-cards-row {
  grid-template-columns: repeat(3, 1fr);
}

.builder-video-row iframe {
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 40px;
}

.builder-video-row {
  padding-top: 50px;
}

/* Builders end */
/* Groups Start */
.groups-sec .category-cards-row {
  grid-template-columns: repeat(2, 1fr);
}

.groups-sec .category-cards img {
  display: block;
  padding-bottom: 20px;
  min-height: 443px;
  object-fit: cover;
  border-radius: 5px;
}

/* Groups Start */

/* furtur-grow-deils-sec Start*/
.furtur-grow-deils-sec .category-cards {
  background-color: transparent !important;
  text-align: center !important;
  padding: 0;
  border-radius: 0 !important;
}

.furtur-grow-deils-sec .category-cards-row {
  grid-template-columns: repeat(1, 1fr);
}

.furtur-grow-deils-sec .category-cards img {
  display: block;
  padding-bottom: 10px !important;
  min-height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 0px;
  width: 100% !important;
}

.furtur-grow-deils-sec .category-cards p {
  font-size: 18px;
  font-weight: 450;
  line-height: 20.18px;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
  padding: 0 20px;
  width: 100% !important;
  max-width: 100% !important;
}

/* furtur-grow-deils-sec End*/

/* Members-sec Start*/
.Members-sec .category-cards-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.Members-sec .category-cards {
  padding: 15px;
  background: #074d5e0f;
  border: 1px solid #074d5e33;
}

.Members-sec .category-cards img {
  margin-bottom: 10px;
}

:is(.Members-sec, .furtur-grow-deils-sec) .category-cards:hover img {
  transform: none !important;
}

.Members-sec .category-cards a {
  background: transparent;
  color: #000;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25.14px;
  letter-spacing: 0.015em;
  display: inline-block;
  width: 100%;
  padding: 0 10px 0px;
  text-align: left;
  border: none !important;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* .Members-sec .category-cards a::after {
  content: initial;
} */
.Members-sec .category-cards p {
  padding: 0px 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.14px;
  letter-spacing: 0.015em;
  text-align: left;
}

.Members-sec .category-cards ul li {
  list-style: disc !important;
  margin-bottom: 10px;
}

.Members-sec .category-cards ul {
  padding: 0 30px;
}

/* Members-sec ENd*/

/* lifestyle Inner Gallery page Start*/
.lifestyle-gallery-sec {
  padding: 100px 0;
}

.lifestyle-gallery-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, auto);
  grid-template-rows: repeat(1, auto);
  gap: 30px;
}

.gallery-image:first-child {
  grid-area: 1 / 1 / 4 / 5;
}

.gallery-image:nth-child(2) {
  grid-area: 1 / 5 / 3 / 9;
}

.gallery-image:nth-child(3) {
  grid-area: 1 / 9 / 2 / 13;
}

.gallery-image:nth-child(4) {
  grid-area: 4 / 1 / 13 / 5;
}

.gallery-image:nth-child(5) {
  grid-area: 3 / 5 / 13 / 9;
}

.gallery-image:nth-child(6) {
  grid-area: 2 / 9 / 13 / 13;
}

.gallery-image img {
  display: block;
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.gallery-image:nth-child(n + 7) img {
  border-radius: 10px;
}

.gallery-image:first-child a {
  min-height: 525px;
  height: 525px;
  position: relative;
  display: flex;
}

.gallery-image:is(:nth-child(3), :nth-child(4)) a {
  min-height: 275px;
  height: 275px;
  position: relative;
  display: flex;
  border-radius: 10px;
}

.gallery-image:is(:nth-child(2), :nth-child(5)) a {
  min-height: 399px;
  height: 399px;
  position: relative;
  display: flex;
  border-radius: 10px;
}

.map-holder:has(.full-view-map.active) :is(.map-image img, .map-marks) {
  opacity: 0;
  pointer-events: none;
}

.full-view-map img {
  border-radius: 10px;
}

.gallry_btn {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.gallry_btn a {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16.14px;
  letter-spacing: 0.015em;
  display: inline-block;
  width: fit-content;
  text-align: center;
  margin-top: 50px;
  padding: 14px 30px;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.gallry_btn a:hover,
.category-cards a:hover {
  color: var(--secondary-color);
  background-color: transparent;
}

.backBtn_close {
  width: 40px;
  height: 40px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  right: -20px;
  box-shadow: 0 10px 20px #00000012 !important;
  top: -20px;
}

.iner_box_loc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  pointer-events: none;
  /* transform: scale(0); */
  opacity: 0;
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
}

:is(.origins-map-image, .map-image):has(
    .inner_images.active,
    .inner_images_sec.active_sec
  )
  .iner_box_loc {
  pointer-events: all;
  /* transform: scale(1); */
  z-index: 1;
  opacity: 1;
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
  z-index: 999 !important;
  padding: 10px;
}

.map-holder:has(.map-marks .marks-box a[href="javascript:;"])
  .inner_images:not(.active) {
  display: none;
}

.map-holder:has(.map-marks .marks-box a[href="javascript:;"])
  .inner_images_sec.active_sec {
  display: block !important;
}

.inner_images_sec.active_sec {
  display: block !important;
}

.inner_images::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00000046;
}

.inner_images img {
  max-width: 100% !important;
  margin: 0 auto;
}

.inner_images .inner-popup-image img {
  width: 100%;
}

.inner_images {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.inneex_div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 20px 20px #00000038;
}

.inner-popup-image {
  max-height: 500px;
  min-height: 500px;
  height: 500px;
  overflow-y: auto;
  padding: 10px;
}

.inner-popup-image img {
  object-fit: contain;
  height: auto;
  width: auto;
}

.inner-popup-image::-webkit-scrollbar {
  width: 4px;
  border-radius: 100px;
  overflow: hidden;
}

.inner-popup-image::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: #074d5e;
}

.inner-popup-image::-webkit-scrollbar-track {
  border-radius: 100px;
  background-color: #9d9d9d;
}

.inner_images h6.editable {
  font-size: 36px;
  font-weight: 700;
  line-height: 42.49px;
  color: #4c2f48 !important;
  text-align: center;
  padding-bottom: 30px;
}

.inner_images .zones ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 30px;
}

.inner_images .zones ul li {
  /* font-family: "Arquitecta"; */
  font-size: 20px;
  font-weight: 500;
  line-height: 26.14px;
  letter-spacing: 0.015em;
  text-align: left;
  list-style: disc !important;
  color: #949494;
}

.origins-map-image {
  position: relative;
}

.modal_open.active {
  pointer-events: all;
  /* transform: scale(1); */
  opacity: 1;
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
  z-index: 999 !important;
  border-radius: 0 !important;
}

.modal_open {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 9;
  pointer-events: none;
  /* transform: scale(0); */
  padding: 10px;
  opacity: 0;
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
}

.modal_open::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  background-color: #00000046;
}

.close_modal {
  width: 40px;
  height: 40px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  right: -20px;
  box-shadow: 0 10px 20px #00000012 !important;
  top: -20px;
}

.close_modal img {
  max-width: 100%;
}

.modal_open > img {
  margin: 0 auto;
  width: 100%;
}

.modal_open .iner_dic > img {
  /* max-height: 500px; */
  width: 100%;
  border-radius: 10px;
}

.iner_dic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 20px 20px #00000038;
}

.inner-popup-image video {
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.all_locations {
  position: relative;
  padding: 30px 0 0;
  display: none;
}

.all_locations ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_locations ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 6px;
  width: fit-content;
  color: #000;
}

.all_locations ul li span img {
  max-width: 10px !important;
  display: block;
}

.all_locations ul li span {
  font-size: 10px;
  line-height: 15px;
  text-transform: uppercase;
  color: #000;
  display: block;
  text-decoration: underline;
}

.inner_images:not(.active) {
  display: none;
}

:has(.inner_images.active, .inner_images_sec.active_sec, .modal_open.active)
  body {
  overflow: hidden !important;
}

/* Fischer-sec */
.Fischer-sec {
  padding: 90px 0;
  position: relative;
}

.fischer-prent {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fischer-logo {
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0 auto;
}

.fischer-prent-bg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fischer-prent-bg img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-height: 800px;
  min-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.Logo--ineer {
  background: #f2f2f2;
  padding: 30px 60px;
  border-radius: 20px;
}

.breadcrumbs {
  font-size: 18px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumbs a {
  color: #4c2f48 !important;
  text-decoration: underline !important;
  font-size: 18px;
}

.category-cards a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fischer-sec */

.fancybox__caption {
  font-size: 22px;
  font-weight: 600;
}

/* Stay Page Css Start */
.stay-banner-sect {
  padding: 80px 0 40px;
}

.stay-banner-sect .content-hldr img {
  object-fit: cover;
  border-radius: 20px !important;
  width: 100%;
  margin-bottom: 30px;
}

.stay-banner-sect .content-hldr p {
  font-size: 20px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.stay-banner-sect .content-hldr p:last-child {
  margin-bottom: 0;
}

.img-with-cntnt-sect {
  padding: 40px 0;
}

.img-cntnt-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.img-cntnt-rows-hldr .img-cntnt-row:last-child {
  margin-bottom: 0;
}

.img-cntnt-rows-hldr .img-cntnt-row:nth-child(even) .img-cntnt-image {
  order: 2;
}

.img-cntnt-rows-hldr .img-cntnt-row:nth-child(even) .img-cntnt-content {
  order: 1;
}

.img-cntnt-content h2 {
  color: var(--secondary-color);
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.81px;
  margin-bottom: 25px;
}

.img-cntnt-content p {
  font-size: 18px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.img-cntnt-content .btns-row {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.img-cntnt-content .btns-row a {
  padding: 14px 30px;
  border-radius: 6px;
  background: var(--secondary-color);
  color: var(--base-color);
  box-shadow: inset 0px 0px 0px 1px var(--secondary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
  transition: all 0.3s;
  display: inline-block;
}

.img-cntnt-content .btns-row a:hover {
  background: transparent;
  color: var(--secondary-color);
}

.img-cntnt-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.stay-map-sect {
  padding: 40px 0 80px;
}

.map-cntnt-hldr img {
  width: 100%;
  border-radius: 20px;
}

/* Stay Page Css End */

.cus_pagg_nav .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.cus_pagg_nav a.prev.page-numbers,
.cus_pagg_nav a.next.page-numbers {
  [aria-hidden="true"] {
    margin-bottom: 3px;
  }
}

.cus_pagg_nav span.nav-prev-text,
.cus_pagg_nav .nav-next-text {
  display: none;
}

.cus_pagg_nav .page-numbers:not(.dots) {
  color: var(--secondary-color);
  padding: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  aspect-ratio: 1 / 1;
  width: 35px;
  height: fit-content;
  transition: all 0.3s ease;
}

.cus_pagg_nav a.page-numbers:not(:hover) {
  color: #fff !important;
  background: var(--secondary-color) !important;
}

.yt-video-container {
  padding-bottom: 40px;
  max-width: 96%;
  margin: 0 auto;
}

.yt-video-container video {
  width: 100%;
  border-radius: 40px;
}

/* customizer-css  */
.ui-button-contained-primary {
  color: #fff !important;
  background-color: #074d5e !important;
}

.contact-cntnt-logos {
  display: flex !important;
}

.client-logo-holder {
  max-width: 343px;
}

.inner-pages {
  padding-top: 50px;
  padding-bottom: 50px;
}

.header-nav ul li.head-cta {
  display: none !important;
}

.container .f-thumbs.is-horizontal .f-thumbs__track {
  margin: initial !important;
}

.breadcrumbs {
  font-size: 16px;
  margin-bottom: 30px;
}

/* .breadcrumbs a {
  color: #074d5e !important;
  text-decoration: underline !important;
  font-size: 16px;
} */

.menu-header-menu-container,
.head-cta {
  display: block !important;
}

.banner-cntnt-holder p,
.description-col,
.foot-top,
.head-top {
  display: none !important;
}
