/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

.contact-form iframe {
  width: 100%;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

em,
i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700 !important;
}

.design {
  position: relative;
  text-decoration: none;
  text-decoration: none;
  color: #000;
  transition: color 0.4s ease-in-out;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  -ms-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
}

.design:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background-color: #AEBEB0;
  transition: width 0.3s ease;
}

.design:hover:before {
  width: 100%;
}

a:hover {
  color: #AB946B;
  text-decoration: none;
  outline: none !important;
}

a:focus {
  text-decoration: none;
  outline: none !important;
}

*:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/*----------  Common CSS  ----------*/
.wrapper {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100vh;
  position: relative;
}

.body-fixed {
  overflow: hidden;
}

.common-sec {
  position: relative;
  padding-block: clamp(1.5rem, -0.5rem + 5vw, 4rem);
}

.sec-head {
  width: 100%;
  display: block;
  margin-bottom: clamp(0.438rem, 0.08rem + 0.952vw, 0.938rem);
}

.sec-head p {
  color: #fff;
  font-family: "minerva-modern";
}

.sec-title {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.625rem, 1.223rem + 1.071vw, 2.188rem);
  font-weight: 700;
  display: block;
}

.sec-sub-title+.sec-title {
  margin-top: 10px;
}

/*----------  Button  ----------*/
.header-bottom .btn {
  display: inline-block;
  border: none;
  border-radius: 0;
  background-color: #ab946b;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  min-width: 100px;
  padding: 7px 30px;
  position: relative;
  transition: .6s all ease-in-out;
  overflow: hidden;
  border: 1px #AB946B solid;
}




@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/*----------  Back To Top  ----------*/
.hidden {
  width: 0;
  height: 0;
  display: none;
}

.back-to-top {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #AB946B;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fff;
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.back-to-top.active {
  bottom: 85px;
  opacity: 1;
  z-index: 9;
}

.back-to-top>div {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.back-to-top>.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top>.arrow svg {
  fill: #fff;
  height: 20px;
  width: 100%;
}

.back-to-top>.text {
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.back-to-top:hover {
  transform: scale(1.1);
  bottom: 85px;
  cursor: pointer;
  background: #AB946B;
}

.back-to-top:hover>.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.back-to-top:hover>.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}


/*----------  Hedare  ----------*/
header {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes headerIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header-sticked .header-bottom {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: headerIn 1s forwards;
  box-shadow: 0px 2px 3px 0px rgba(1, 1, 1, .5);
  backdrop-filter: blur(4px);
  background-color: #e9ecefbf;
}

.header-logo {
  display: block;
  max-width: 220px;
}

.header-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.header-top {
  padding: 10px;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 500;
  line-height: 1.33;
  background: #AB946B;
  text-transform: uppercase;
}

.header-bottom {
  padding: clamp(0.625rem, 0.405rem + 0.704vw, 1.25rem) clamp(0.938rem, -0.053rem + 3.169vw, 3.75rem);
  /*box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);*/
  /*  backdrop-filter: blur(10px);*/
  /*  background-color: rgba(10, 10, 10, 0.31);*/
}

.menu-text,
.menu-info-wrapper a:not(.btn) {
  font-family: 'Graphik';
  font-size: 14px;
  letter-spacing: 0.5 px;
  color: #AB946B;
  text-transform: uppercase;
}

.menu-info-wrapper a:not(.btn)::before {
  bottom: -1px;
}

.header-number {
  margin-left: 10px;
}

.header-number:hover {
  color: #ab946b !important;
}

header .btn:hover {
  color: #fff;
}

header .btn::before,
header .btn::after {
  background-color: #1d252d;
}

.menu-toggle {
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background-color: transparent;
  justify-content: space-between;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.menu-toggle span:first-child,
.menu-toggle span:last-child {
  width: 80%;
}

.mega-menu-container .menu-toggle {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  margin-left: auto;
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  /* align-self: flex-end; */
}

.mega-menu-container .menu-toggle span {
  display: block;
  height: 2px;
  width: 30px;
  background-color: #AB946B;
}

.mega-menu-container .menu-toggle span:first-child {
  transform: rotate(45deg);
  margin-bottom: -1px;
}

.mega-menu-container .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.mega-menu-container {
  position: fixed;
  inset: 0;
  background-color: rgb(255 255 255 / 90%);
  color: #000;
  font-weight: 400;
  padding: clamp(1.25rem, -3.373rem + 5.415vw, 3.125rem) clamp(0.938rem, -0.933rem + 5.986vw, 6.25rem);
  transform: translateX(-100%);
  transition: .8s all ease-in-out;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 2000px;
  overflow: auto;
}

.mega-menu-container.menu-open {
  transform: translateX(0);
}

.mega-menu-nav {
  margin-top: 20px;
  overflow: auto;
  padding-right: 20px;
}

.mega-menu-nav::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.mega-menu-nav::-webkit-scrollbar-thumb {
  background-color: #AB946B;
  border-radius: 10px;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.mega-menu-nav::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}

.mega-menu-nav::-webkit-scrollbar-corner {
  background-color: #AB946B;
}

.mega-menu-nav a {
  transition: .4s all ease-in-out;
}

.mega-menu-nav a:hover,
.parent-of-submenu .submenu-item>a:hover {
  /* text-decoration: underline; */
  color: #AB946B;
}

.menu-item>a:hover {
  color: #AB946B;
}

.menu-item {
  opacity: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-block: clamp(0.313rem);
}

.mega-menu-container .btn {
  align-self: end;
  opacity: 0;
}

.menu-item>a,
.parent-of-submenu .submenu-item>a {
  flex: 0 0 20%;
  font-size: 16px;
  color: #ab946b;
  text-transform: uppercase;
  font-weight: 700;
  padding: clamp(0.313rem, -0.458rem + 0.903vw, 0.625rem);
}

.parent-of-submenu .submenu-item>a {
  font-size: 16px;
  color: #ab946b;
}

.list-style-none .submenu-list a {
  padding-left: 0;
}

.list-style-none .submenu-list a::after,
.parent-of-submenu .submenu-item>a::after {
  content: none;
}

.submenu-list a {
  padding: clamp(0.313rem, -0.458rem + 0.903vw, 0.625rem);
  padding-left: clamp(0.625rem, -0.146rem + 0.903vw, 0.938rem);
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
  position: relative;
}

.submenu-list a::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #AB946B;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.submenu-list a img {
  display: inline-block;
  width: 30px;
  margin-right: 5px;
  filter: invert(1);
}

/*----------  404 & Thank you  ----------*/
.error-wrapper,
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - var(--header-height));
  text-align: center;
  flex-direction: column;
}

.error-title,
.thank-you-title {
  font-size: clamp(4.375rem, 2.182rem + 9.357vw, 9.375rem);
  font-weight: 700;
  line-height: 1;
  color: #AB946B;
  margin-bottom: clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
}

.thank-you-title {
  font-size: clamp(2.875rem, 1.395rem + 6.316vw, 6.25rem);
}

.error-message,
.thank-you-message {
  font-size: clamp(1rem, 0.89rem + 0.468vw, 1.25rem);
  line-height: 1.4;
  font-weight: 500;
  margin-top: clamp(0.313rem, 0.175rem + 0.585vw, 0.625rem);
  margin-bottom: clamp(1.25rem, 0.702rem + 2.339vw, 2.5rem);
}

.error-wrapper svg,
.thank-you-wrapper svg {
  height: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  width: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  margin-bottom: clamp(1.563rem, 0.877rem + 2.924vw, 3.125rem);
}

.hero-sec {
  max-height: 1000px;
  height: 100svh;
  position: relative;
}

.hero-sec.style-2,
.hero-sec.style-3 {
  max-height: 79vh;
  position: relative;
}

.hero-sec.style-3::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.43) 100%);
}

.hero-sec.style-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff, rgb(255 255 255 / 0%));
  height: 40%;
}

.hero-sec.style-2 img,
.hero-sec.style-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff, rgb(255 255 255 / 0%));
  height: 40%;
}

.hero-sec video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  display: block;
  width: clamp(1.563rem, 0.446rem + 2.976vw, 3.125rem);
  height: clamp(1.563rem, 0.446rem + 2.976vw, 3.125rem);
  bottom: clamp(1.563rem, -0.223rem + 4.762vw, 4.063rem);
  left: 50%;
  transform: translateX(-50%);
}

.about-vision-content-box {
  max-width: 900px;
  margin: auto;
}

.about-vision-content-box+.about-vision-content-box {
  margin-top: clamp(1.563rem, 0.446rem + 2.976vw, 3.125rem);
}

/* Project Sec */
.project-sec {
  background: #F6F5F0;
  z-index: 1;
}

.project-sec .container {
  position: relative;
  max-width: 1530px;
}

.project-info-list-item {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 10px;
  left: 1%;
  text-align: right;
}

.project-info-list-item a {
  display: inline-block;
  width: 300px;
  color: #AB946B;
  font-size: clamp(0.75rem, 0.571rem + 0.476vw, 1rem);
  font-weight: 400;
  font-family: "minerva-modern";
}

.line {
  display: inline-block;
  height: 2px;
  background: #AB946B;
  width: 170px;
}


.project-info-box {
  display: none;
  background: #bfad8fb0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 109%;
  opacity: 0;
  z-index: -1;
}

.project-info-list-item:nth-child(even) .project-info-box {
  left: inherit;
  right: 107%;
  width: 103%;
}

.project-info-1 .project-info-box {
  height: 62px;
}

.project-info-21 .project-info-box,
.project-info-23 .project-info-box {
  display: none;
  background: #bfad8fb0;
  width: 612px;
  height: 210px;
  position: absolute;
  opacity: 0;
}

.project-info-22 .project-info-box,
.project-info-24 .project-info-box {
  display: none;
  background: #bfad8fb0;
  width: 613px;
  height: 210px;
  position: absolute;
  opacity: 0;
}

.project-info-list-item:hover .project-info-box {
  display: block;
  animation: animateUp 0.6s linear;
  opacity: 1;
}

@keyframes animateUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.project-info-list-item:nth-child(even) {
  right: 3%;
  left: inherit;
  text-align: left;
  flex-direction: row-reverse;
}



.project-info-1 {
  top: 3%;
}

.project-info-2 {
  top: 7.5%;
}

.project-info-3 {
  top: 11.7%;
}

.project-info-3 .project-info-box {
  height: 70px;
}

.project-info-4 {
  top: 17%;
}

.project-info-5 {
  top: 17%;
}

.project-info-4 .project-info-box,
.project-info-5 .project-info-box {
  height: 70px;
  width: 250px;
}

.project-info-6 {
  top: 23%;
}

.project-info-6 .project-info-box {
  top: 0px;
  right: 109% !important;
  height: 100%;
  width: 100% !important;
}

.project-info-7 {
  top: 28%;
}

.project-info-8 {
  top: 34%;
}

.project-info-7 .project-info-box {
  top: 0px;
  height: 100%;
  width: 45%;
}

.project-info-7 .project-info-box-right {
  left: auto;
  right: -113%;
}

.project-info-8 .project-info-box {
  bottom: -80px;
  height: 100%;
  ;
  width: 120px;
}

.project-info-9 {
  top: 41%;
}

.project-info-10 {
  top: 41%;
}

.project-info-9 .project-info-box,
.project-info-10 .project-info-box {
  height: 70px;
  width: 250px;
}

.project-info-11 {
  top: 48%;
}

.project-info-11 .project-info-box {
  height: 100%;
  top: -75px;
  width: 120px;
}

.project-info-12 {
  top: 52.5%;
}

.project-info-12 .project-info-box {
  height: 84%;
  top: 0px;
  width: 45% !important;
}

.project-info-12 .project-info-box-left {
  left: -110% !important;
}

.project-info-13 {
  top: 57%;
}

.project-info-13 .project-info-box {
  height: 100%;
  width: 103%;
  bottom: 0px;
  left: 109%;
}

.project-info-14 {
  top: 61%;
}

.project-info-14 .project-info-box {
  height: 100%;
  width: 50%;
  bottom: -30px;
  right: 127%;
}

.project-info-15 {
  top: 67%;
}

.project-info-16 {
  top: 67%;
}

.project-info-15 .project-info-box,
.project-info-16 .project-info-box {
  height: 70px;
  width: 250px;
}

.project-info-17 {
  top: 70.5%;
}

.project-info-17 .project-info-box {
  top: -5px;
  width: 140px;
  height: 100%;
  ;
}

.project-info-18 {
  top: 72.3%;
}

.project-info-18 .project-info-box {
  top: 0px;
  width: 120px;
  height: 100%;
  ;
}

.project-info-list-item:nth-child(14) .project-info-box-right {
  right: 108% !important;
}

.project-info-list-item:nth-child(14) .project-info-box-left {
  right: 108% !important;
}

.project-info-12 .project-info-box-left,
.project-info-18 .project-info-box-left {
  left: -99% !important;
  right: inherit !important;
}

.project-info-19 {
  top: 75%;
}

.project-info-19 .project-info-box {
  top: 6px;
  width: 50% !important;
  left: 105%;
  height: 100%;
  ;
}

.project-info-20 {
  top: 76.5%;
}

.project-info-20 .project-info-box {
  bottom: -65px;
  width: 120px;
  right: 127%;
  height: 100%;
  ;
}

.project-info-21 {
  top: 82.5%;
  /* left: 28%; */
}

.project-info-21 .project-info-box {
  height: 40px;
}

.project-info-21 span.line,
.project-info-22 span.line,
.project-info-23 span.line,
.project-info-24 span.line {
  width: 100px;
}

.project-info-22 {
  top: 83%;
  /* right: 29%; */
}

.project-info-22 .project-info-box {
  height: 84px;
  top: -11px;
}

.project-info-23 {
  top: 89%;
  /* left: 28%; */
}

.project-info-24 {
  top: 95%;
  /* right: 29%; */
}

.project-info-23 .project-info-box {
  height: 138px;
}

.project-info-24 .project-info-box {
  height: 98px;
}

.experience-sec {
  display: flex;
  align-items: center;
  background-color: #F6F5F0;
}

.experience-sec .container {
  position: relative;
}

.experience-description {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: block;
  font-size: clamp(1.063rem, 0.929rem + 0.357vw, 1.25rem);
  color: #333a41;
  text-align: center;
  letter-spacing: 3.56px;
  font-family: 'Safira March Personal Use';
  line-height: 1.8;
  padding-block: clamp(2.5rem, -0.179rem + 7.143vw, 6.25rem);
  padding-inline: 15px;
}

.experience-luxury-img {
  display: block;
  object-fit: contain;
  object-position: center;
  height: clamp(18.75rem, 13.839rem + 13.095vw, 25.625rem);
  opacity: 0.5;
}

.experience-luxury-img img {
  height: 100%;
  width: auto;
  margin: auto;
}

.footer-title {
  font-family: "Whitney Book", sans-serif;
  font-size: clamp(1.063rem, 0.929rem + 0.357vw, 1.25rem);
  font-weight: 700;
  margin-bottom: clamp(0.938rem, 0.491rem + 1.19vw, 1.563rem);
  color: #fff;
}

.contact-info .contact-list-item {
  margin-bottom: 7px;
}


footer nav li+li {
  margin-bottom: 5px;
}

.social-media-list {
  display: ruby;
  gap: 10px;
}

.social-media-list a {
  display: inline-flex;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.social-media-list a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .4s all ease-in-out;
}

.social-media-list a:hover img {
  filter: invert(1);
}

.developer-list {
  margin-top: clamp(1.875rem, 1.429rem + 1.19vw, 2.5rem);
}

.developer-list ul {
  display: flex;
  gap: clamp(0.938rem, 0.491rem + 1.19vw, 1.563rem);
}

.developer-list a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(0.875rem, 0.786rem + 0.238vw, 1rem);
  color: #fff;
  /* text-transform: uppercase; */
}

.developer-list a:hover {
  color: #AB946B;
}

.developer-list img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

.copyright-sec {
  background: #1d252d;
  padding-block: 15px;
  color: #fff;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.684rem + 0.213vw, 0.875rem);
  /* letter-spacing: 2px; */
}

.copyright-sec a {
  color: #fff;
}

.copyright-sec a:hover {
  color: #AEBEB0;
}

.policy-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.policy-nav a {
  display: block;
  padding: 5px;
}

.language-switcher-wrapper {
  position: relative;
  display: inline;
  padding-right: 10px;
}

.language-button {
  position: relative;
  background-color: transparent;
  color: #AB946B;
  font-family: 'Graphik';
  font-size: 14px;
  letter-spacing: 1px;
  padding-block: 5px;
  margin-left: 7px;
  padding-inline: 10px 15px;
  border-left: 1px solid #AB946B;
  transition: .4s all ease-in-out;
}

.language-button span {
  position: relative;
}

.language-button span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #AEBEB0;
  ;
  transition: width 0.3s ease;
}

.language-button span:hover::after {
  width: 100%;
}

.language-button .language-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #AB946B;
  border-right: 2px solid #AB946B;
  transition: .4s all ease-in-out;
}

.language-switcher {
  display: none;
  position: absolute;
  right: 0;
  width: 150px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: end;
}

.language-switcher a {
  display: block;
  padding-block: 5px;
  color: #000 !important;
  letter-spacing: 1px !important;
  text-align: left !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  text-transform: capitalize !important;
}

.language-switcher a:hover,
.language-button:hover {
  color: #AB946B !important;
  /*text-decoration: underline !important;*/
}

.language-button:hover .language-arrow {
  border-color: #AB946B;
}

.language-switcher a img {
  display: inline-block;
  width: 20px;
  margin-right: 7px;
}


/* indexpage 12/8 */

.contect-line {
  left: 75px;
  width: 106px;
  height: 1px;
  background-color: #AB946B;
  transition: width 0.3s ease;
  /* border: 1px solid #ffffff; */
}

/* indexpage footer */

.contact-info a {
  display: inline-block;
  color: #fff;
  padding-left: 5px;
  position: relative;
  /* Required for the pseudo-element */
  text-decoration: none;
  /* Remove default underline */
}

.contact-info a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  /* Adjusts the position of the underline */
  width: 0;
  height: 1px;
  /* Thickness of the underline */
  background-color: #AEBEB0;
  /* Color of the underline */
  transition: width 0.3s ease;
  /* Duration and easing of the animation */
}

.contact-info a:hover::before {
  width: 100%;
  /* Expand the underline to full width on hover */
}

.contact-info a:hover {
  color: #AEBEB0;
  /* Change text color on hover */
}

/* fotter nav */

footer nav a {
  display: inline-block;
  /* Change from block to inline-block */
  color: #fff;
  padding-block: 5px;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  /* Remove default underline */
}

footer nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #AEBEB0;
  ;
  transition: width 0.3s ease;
}

footer nav a:hover::before {
  width: 100%;
  /* The underline will now match the length of the text */
}

footer nav a:hover {
  color: #AB946B;
}

/* Home Gallery */
.home-gallery-sec {
  overflow: hidden;
}

.home-gallery {
  position: relative;
  width: 100vw;
  height: clamp(12.5rem, 6.818rem + 15.152vw, 25rem);
}

.home-gallery .swiper-wrapper {
  align-items: center;
}

.home-gallery .swiper-slide {
  height: clamp(7.5rem, 2.386rem + 13.636vw, 18.75rem);
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(1.1);
}

.home-gallery .swiper-slide a {
  display: block;
  height: 80%;
  border-radius: 10px;
  overflow: hidden;
  transition: .4s all ease-in-out;
  position: relative;
}

.home-gallery .swiper-slide a::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
  display: block;
  height: 100%;
  width: 100%;
  transition: .4s all ease-in-out;
}

.home-gallery .swiper-slide a:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.home-gallery .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: .6s all ease-in-out;
}

.home-gallery .swiper-slide a:hover img {
  scale: 1.1;
}

.home-gallery .swiper-slide.swiper-slide-prev,
.home-gallery .swiper-slide.swiper-slide-next {
  transform: scale(1.4);
  z-index: 8;
  filter: blur(1px) !important;
}

.home-gallery .swiper-slide.swiper-slide-active {
  transform: scale(1.8);
  z-index: 9;
}



/* Get In Touch  */
.get-in-touch-sec .container {
  max-width: 1700px;
}

.form-control:focus,
.form-control:focus-within,
.form-control:focus-visible,
.form-control:active {
  box-shadow: none;
  outline: none;
  border-color: #AB946B;
}

.form-control::placeholder {
  color: #bbc0b9;
}

.get-in-touch-sec form .row {
  --bs-gutter-x: clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem);
  --bs-gutter-y: clamp(0.625rem, -0.04rem + 2.128vw, 1.875rem);
}

.form-note {
  font-size: 14px;
  line-height: 1.4;
  margin-block: clamp(1.25rem, 0.585rem + 2.128vw, 2.5rem) clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem);
  max-width: 400px;
}

.get-in-touch-wrapper {
  display: flex;
  gap: 10px;
}

.get-in-touch-info,
.get-in-touch-gallery-box {
  flex: 0 0 50%;
  max-width: 50%;
}

.get-in-touch-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.get-in-touch-sec .contact-info a {
  color: #000;
}

.get-in-touch-gallery-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.get-in-touch-gallery-control .get-in-touch-pagination {
  width: auto;
}

.get-in-touch-arrow {
  width: 16px;
  height: 16px;
  position: relative;
}

.get-in-touch-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid #1D252D;
  border-right: 1px solid #1D252D;
  transform: rotate(225deg);
  opacity: 0.5;
}

.get-in-touch-button-next::before {
  transform: rotate(45deg);
}

.get-in-touch-gallery .swiper-slide img {
  aspect-ratio: 3/4;
  object-fit: cover;
}


/* 13-8 loder */
#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F6F5F0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.loader img {
  position: absolute;
  bottom: -200px;
  /* Initial position off-screen */
  transition: bottom 3s;
  /* Animation duration */
}

.page-header img.d-block.w-100 {
  height: 80vh;
}




/* footer */
.residences-footer-section {
  background-color: #f8f9fa;
  /* Light background color */
  padding: 20px 0;
  /* Vertical padding */
}

.residences-footer-content {
  text-align: center;
  /* Center align the text */
}

.residences-footer-row {
  display: flex;
  /* Flexbox for layout */
  flex-wrap: wrap;
  /* Wrap items if they overflow */
  justify-content: center;
  /* Center align items horizontally */
}

.footer-item {
  background-color: #AB946B;
  /* White background for each item */
  border: 1px solid #ddd;
  /* Light border */
  border-radius: 5px;
  /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  transition: background-color 0.3s, transform 0.3s;
  /* Smooth transitions */
}

.footer-item:hover {
  color: #333;
  background-color: #e9ecef;
  /* Light gray on hover */
  transform: translateY(-2px);
  /* Slight lift effect on hover */
}

.footer-item:hover .footer-link {
  color: #333;
}

.footer-link {
  color: #fff;
  /* Blue color for links */
  text-decoration: none;
  /* Remove underline */
  display: block;
  /* Make the link block level */
  font-size: 16px;
  /* Font size */
}

.footer-link:hover {
  text-decoration: underline;
  /* Underline on hover */
}

@media (max-width: 767px) {
  .footer-item {
    margin-bottom: 10px;
    /* Spacing between items on small screens */
  }
}




.vertical-img,
.horizontal-img {
  height: 80vh;
  /* Makes the image fill the height of the viewport */
  object-fit: cover;
  /* Ensures the image covers the container without stretching */
}

/* Centering the content */
/* .d-flex.align-items-center {
    height: 100vh;
} */

.content {
  text-align: center;
  margin: 0 auto;
  /* Centers text horizontally */
}

/* 15-8 teems line */
.custom-line {
  width: 100%;
  border: none;
  border-top: 1px solid #000;
  /* Customize the color and style */
  margin-top: 10%;
  /* Adds padding at the top */
}

.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.horizontal-line {
  height: 30vh;
  /* Adjust height for line section */
}

.centered-image {
  height: 40%;
  /* Adjust height for image section */
}

.Rectangle-image-bggroup {
  width: 400px;
  /* Set desired image width */
  max-width: 100%;
  /* Ensure responsiveness */
}

.plan-info {
  color: #000;
}

.dynamic-award {
  letter-spacing: 0px;
  color: #AB946B;
  font-size: 15px;
  font-family: "Graphik", sans-serif;
}

.room-image {
  width: 100%;
}

.award-winnig-info {
  letter-spacing: 0px;
  color: #AB946B;
  font-size: 22px;
  /* margin-bottom: 84px; */
  text-align: right;
  font-family: "Graphik", sans-serif;
}

.residential-info {
  color: #AB946B;
  font-family: "Graphik", sans-serif;
  font-size: 15px;
  margin-bottom: 30px;
  text-align: right;
}

.seeb {
  background-color: #ece1d6;
}

.content-title {
  font-size: 35px;
  font: bold;
}

.seeb-column {
  background-color: #f6f4f0;
}

/* timeline  */

/* The actual timeline (the vertical ruler) */
.main-timeline-2 {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #AB946B;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #AB946B;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-2::after {
  left: -14px;
}

.timeline {
  width: 600px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

  /* Place the timelime to the left */
  .main-timeline-2::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline-2 {
    /* width: 100%; */
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline-2::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left-2::after,
  .right-2::after {
    left: 18px;
  }

  .left-2::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right-2 {
    left: 0%;
  }
}

/* 16-8 */
/* floor plans */
.floorPlans-main-top-line {
  height: 1px;
  width: 100%;
  background: #AB946B;
}

.residence-type {
  letter-spacing: 0px;
  color: rgb(171, 148, 107);
  font-family: "Whitney", "PingFang SC", "å¾®è½¯é›…é»‘ä½“", "Microsoft YaHei", "å¾®è½¯é›…é»‘", "å®‹ä½“", "SimSun", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 39.392px;
}

.floorPlan-colom {
  /* border-right: 1px solid #AB946B; */
  border-width: 1px;
  border-style: solid;
  border-color: #bfa69573;
}

/* news */

.news-img1 {
  width: 100%;
  object-fit: cover;
  height: 530px;
  width: 725px;
}

.mt-5 {
  margin-top: 3rem !important;
}

.read-more {
  font-family: 'Graphik';
  font-style: normal;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  color: #746144;
  margin: 0 auto 55px;
  display: table;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}

.florida {
  position: relative;
  width: 100%;
  display: table;
  font-family: "Whitney", "PingFang SC", "å¾®è½¯é›…é»‘ä½“", "Microsoft YaHei", "å¾®è½¯é›…é»‘", "å®‹ä½“", "SimSun", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1px;
  color: #746144;
  margin: 54px auto 29px;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ytechCommences {
  position: relative;
  width: 100%;
  max-width: 415px;
  margin: 0 auto 36px;
  font-family: "Whitney", "PingFang SC", "å¾®è½¯é›…é»‘ä½“", "Microsoft YaHei", "å¾®è½¯é›…é»‘", "å®‹ä½“", "SimSun", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 23px;
  line-height: 27px;
  text-align: center;
  letter-spacing: .5px;
  text-transform: capitalize;
  min-height: 82px;
  color: #746144;
}

.read-more-btn {
  font-family: "Whitney", "PingFang SC", "å¾®è½¯é›…é»‘ä½“", "Microsoft YaHei", "å¾®è½¯é›…é»‘", "å®‹ä½“", "SimSun", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  color: #746144;
  margin: 0 auto 55px;
  display: table;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
  text-decoration: none;
}

.news-img3 {
  width: 100%;
  object-fit: cover;
  height: 400px;
  width: 470px;
}

/* inquire */

.main-form {
  padding-left: 120px;
  padding-right: 120px;
  background: #efeeec;
}


/* Form rows */
.form-row {

  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
  margin-right: calc(var(--bs-gutter-x)* -.5);
  margin-left: calc(var(--bs-gutter-x)* -.5);

}

.group {
  position: relative;
  margin-bottom: 45px;
}

.form-input-div {
  margin-top: 50px;
  margin-bottom: 10px;
}

input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
  background: transparent;
}

.input-filed {
  background: transparent;
  border: none;
  border-bottom: 1px solid #5c5c5c;
  border-radius: 0;
}

.inquire-form-lable {
  font-size: 15px;
  font-weight: 600;
  padding-left: 0;
  font-family: "Whitney Medium";
  letter-spacing: 1px;
  color: #5c5c5c;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

label {
  display: inline-block;
}

.checkbox-lable {
  font-size: 15px;
  font-weight: 600 !important;
  font-family: "Whitney Medium";
  color: #5c5c5c !important;
}

.gfield_select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Whitney Medium";
  height: 30px;
  font-size: 15px;
  font-weight: 600;
  padding-left: 0;
  letter-spacing: 1px;
  color: #5c5c5c;
  border-bottom: 1px solid #5c5c5c;
}

select {
  word-wrap: normal;
}

.inquery-check {
  height: 30px;
  width: 30px;
  background-color: #efeeec;
  border-radius: 0px !important;
}

.inquery-check:checked {
  background-color: #AB946B;
  border: 1px solid #AB946B;
  color: #AB946B;
  background-image: none;
}

.textarea {
  padding: 16px !important;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  resize: none;
  height: 168px;
  border-style: solid;
  border-width: 1px;
  border-color: #483f30;
  color: #483f30;
  font-size: 18px;
  line-height: 21px;
}

.form-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button {
  font-family: 'Graphik';
  padding: 15px 25px;
  font-size: 16px;
  letter-spacing: 2.5px;
  background-color: #AB946B;
  border-color: #AB946B;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 19px;
  float: right;
  margin-bottom: 35px;
  min-width: 280px;
}

.carousel-indicators [data-bs-target] {
  background-color: #FFF
}

.carousel-item {
  background-color: #f8f6f2;
}

.fadeInUp {
  visibility: visible;
  animation-name: fadeInUp;
}

/* css floor plans */

.accordion-button:not(.collapsed) {
  background-color: #ab946b;
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: #ab946b;
  color: #fff;
}

.accordion-button {
  font-size: 15px;
  color: #ab946b;
}

.accordion-header .col-md-4:not(:last-child) {
  border-right: 1px solid #333;
  padding: 5px;
}

.accordion-body {
  font-size: 15px;
}

.accordion-body .row .col-md-4:not(:last-child) {
  font-size: 15px;
  border-right: 1px solid #ab946b;
}

.image-container {
  height: 600px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
}

.zoom-img {
  display: block;
  height: auto;
  cursor: move;
}

.hero-text {
  opacity: 60%;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 500;
  z-index: 2;
  padding: 10px;
  /* background: rgba(0, 0, 0, 0.5); */
}

.accordion-button::after {
  position: absolute !important;
  right: 12px !important;
}

/* page main content */
.view-brochure {
  color: black;
}

a:link {
  text-decoration: none !important;
}





section.page-header {
  position: relative;
}

section.page-header:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff, rgb(255 255 255 / 0%));
  height: 40%;
  z-index: 8;
}

a.headerLink {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

a.headerLink:hover {
  color: #ab946b;
}

.key-features ul {
  list-style: disc;
  padding-left: 20px;
}

.home-gallery-title {
  font-size: clamp(0.1rem, 0.246rem + 0.476vw, 0.72rem);
  text-align: right;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: absolute;
  font-weight: 500;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.325rem, 1.79rem + 0.19vw, 1.35rem);
  color: #ab946b;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, .8) 36%);
}

.home-gallery-sec .col-md-7 {
  background-repeat: no-repeat;
  background-size: cover !important;
}

.about-vision-sec .col-2.residences-column img {
  display: none;
}

.home-gallery .swiper-slide:not(.swiper-slide-active) {
  filter: blur(4px);
}

.construction-wrapper {
  position: relative;
  height: 800px;
}

.dynamic-image-container {
  position: absolute;
  top: 220px;
  left: 12px;
  width: 100%;
}

.cam-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.cam-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  font-size: 20px;
  font-family: "minerva-modern";
  color: #fff;
  background: rgba(90, 92, 105, 0.45);
  border-radius: 9999px;
  backdrop-filter: saturate(1.1) blur(2px);
  -webkit-backdrop-filter: saturate(1.1) blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
  letter-spacing: .2px;
}

@media (max-width: 640px) {
  .cam-badge {
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .dynamic-image-container {
    top: 280px !important;
  }

  .carousel-inner {
    margin-bottom: 20px;
  }

  .sec-head p {
    text-align: center !important;
  }

  .construction-wrapper .carousel-item a::before {
    top: 0 !important;
  }

  .camera1-details,
  .camera2-details {
    bottom: 15px !important;
    left: 20px !important;
  }
}

.cam-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.cam-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #AB946B;
  box-shadow: 0 0 0 2px rgba(171, 148, 107, 0.25), 0 0 10px rgba(171, 148, 107, 0.7);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(171, 148, 107, 0.25), 0 0 10px rgba(171, 148, 107, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(171, 148, 107, 0.0), 0 0 12px rgba(171, 148, 107, 0.9);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(171, 148, 107, 0.25), 0 0 10px rgba(171, 148, 107, 0.7);
  }
}

.cam-badge::before {
  animation: pulse 1.6s ease-in-out infinite;
}

.camera1-details,
.camera2-details {
  position: absolute;
  bottom: 40px;
  left: 45px;
  font-family: "minerva-modern";
}

.camera-time {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.camera-date {
  margin-bottom: 28px;
  color: #fff;
  font-size: 22px;
}

.camera-title {
  font-style: italic;
}

.construction-wrapper .carousel-item {
  position: relative;
}

.construction-wrapper .carousel-item a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 300px;
  bottom: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 95%) 10%, rgb(0 0 0 / 13%) 70%, rgb(0 0 0 / 4%) 85%);
}

.construction-progress-sec {
  background: rgb(171, 148, 107);
  color: #fff;
  padding: 5rem 0 10rem 0;
}

.construction-progress-sec .sec-title {
  font-size: clamp(1.5rem, 1.134rem + 1.17vw, 2.188rem);
  font-family: "minerva-modern";
  line-height: 1.2;
  font-weight: 500;
}

.construction-progress-box-wrapper {
  display: flex;
  gap: clamp(1.875rem, 0.545rem + 4.255vw, 4.375rem);
  justify-content: end;
}

.construction-progress-box {
  flex: 0 0 150px;
  text-align: center;
}

.construction-progress-box-title {
  font-family: 'Whitney';
  font-size: clamp(1.125rem, 0.926rem + 0.638vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.construction-progress-box-number {
  font-family: 'Whitney';
  font-size: clamp(1.875rem, 1.277rem + 1.915vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.construction-project-item {
  aspect-ratio: 0.81/1;
  position: relative;
  height: 100%;
  display: block;
  padding-inline: 10px;
}

.construction-project-slider {
  overflow: hidden;
}

.construction-project-img-box {
  position: absolute;
  inset: 0 10px;
}

.construction-project-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.29%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.construction-project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-project-content-box {
  position: absolute;
  z-index: 3;
  inset: auto clamp(1.25rem, 0.918rem + 1.064vw, 1.875rem) clamp(0.938rem, 0.572rem + 1.17vw, 1.625rem);
  color: #fff;
}

.construction-project-date {
  font-family: "Whitney Book";
  font-size: clamp(1.375rem, 1.242rem + 0.426vw, 1.625rem);
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

.construction-project-text {
  font-family: "Whitney Book";
  font-size: clamp(1.125rem, 0.992rem + 0.426vw, 1.375rem);
  font-weight: 500;
  line-height: 1.2;
}

.construction-project-sec {
  position: relative;
}

.construction-project-sec::before {
  content: '';
  position: absolute;
  z-index: -1;
  background: #D0C1A9;
  height: 50%;
  inset: 0;
}

.construction-project-next,
.construction-project-prev {
  width: clamp(3.125rem, 0.233rem + 9.255vw, 8.563rem);
  height: clamp(3.125rem, 0.233rem + 9.255vw, 8.563rem);
  border: 1px solid #FFFFFF;
  background: #C0A88AB2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  transition: .4s all ease-in-out;
}

.construction-project-next:hover,
.construction-project-prev:hover {
  background: #c0a88a;
}

.construction-project-next img,
.construction-project-prev img {
  width: clamp(1.875rem, 0.379rem + 4.787vw, 4.688rem);
}

.construction-project-next {
  right: clamp(1.25rem, -1.41rem + 8.511vw, 6.25rem);
}

.construction-project-prev {
  transform: translateY(-50%) rotate(180deg);
  left: clamp(1.25rem, -1.41rem + 8.511vw, 6.25rem);
}

.month-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 35px;
  overflow: hidden;
}

.calendar-icon img {
  width: 100%;
}

.calendar-icon {
  width: 70px;
  padding: 14px 20px;
  border-right: 1px solid #fff;
}

.select-month-btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 14px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-family: "minerva-modern";
}

.flatpickr-day.selected {
  background: #AB946B !important;
  border-color: #AB946B !important;
  font-family: "minerva-modern";
}

.flatpickr-day {
  border-radius: unset !important;
  font-family: "minerva-modern";
}

.flatpickr-current-month,
.numInputWrapper {
  font-family: "minerva-modern";
}

.select-month-btn i {
  font-size: 12px;
}

.calendar-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  z-index: 10;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.flatpickr-calendar {
  box-shadow: none !important;
  margin: 0 !important;
}

.hero-page-head {
  padding-block: clamp(1.875rem, 0.878rem + 3.191vw, 3.75rem);
  background: #D0C1A9;
}

.hero-page-head .sec-title {
  font-family: "Whitney Book";
  font-size: clamp(1.5rem, 1.134rem + 1.17vw, 2.188rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

.hero-page-head .breadcrumb-item a,
.hero-page-head .breadcrumb-item {
  color: #fff;
  font-family: "Whitney Book";
  font-size: clamp(0.875rem, 0.809rem + 0.213vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
  filter: brightness(0) invert(1);
}

.services-glance-sec,
.experience-like-sec {
  padding-block: clamp(2.5rem, 0.838rem + 5.319vw, 5.625rem);
  position: relative;
  background: #F6F5F0;

  .container {
    position: relative;
    z-index: 1;
  }
}

.services-glance-sec.style-2 {
  background-color: #fff;
}

.services-glance-sec.style-2::before,
.services-glance-sec.style-2::after {
  content: none;
}

.services-glance-sec::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: clamp(14.375rem, 11.383rem + 9.574vw, 20rem);
  background-color: #fff;
  z-index: 0;
}

.services-glance-sec::before,
.experience-like-sec::before {
  content: '';
  position: absolute;
  top: clamp(14.375rem, 11.383rem + 9.574vw, 20rem);
  left: 0;
  right: 0;
  display: block;
  height: clamp(12.5rem, 9.84rem + 8.511vw, 17.5rem);
  background-color: #D0C1A9;
  z-index: 0;
}

.services-glance-head {
  max-width: 950px;
  margin-inline: auto;

  .sec-title {
    color: #C0A88A;
    font-family: "Whitney Book";
    font-size: clamp(1.75rem, 1.185rem + 1.809vw, 2.813rem);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .cms-con {
    font-family: "Whitney Book";
    font-size: clamp(1.125rem, 0.926rem + 0.638vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    color: #5c5c5c;
    margin-bottom: clamp(1.563rem, 0.731rem + 2.66vw, 3.125rem);
  }
}

.services-glance-box {
  .img-box {
    aspect-ratio: 1.35/1;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-box {
    padding-top: clamp(0.625rem, 0.293rem + 1.064vw, 1.25rem);
  }

  .sec-title {
    font-family: "Whitney Book";
    font-size: clamp(1.125rem, 0.926rem + 0.638vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #C0A88A;
    text-transform: uppercase;
    margin-bottom: clamp(0.938rem, 0.439rem + 1.596vw, 1.875rem);
  }

  .cms-con {
    font-family: "Whitney Book";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }

  .cms-con ul {
    padding-left: 25px;
  }

  .cms-con ul li {
    position: relative;
  }

  .cms-con ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 2px;
    background-color: #5c5c5c;
  }
}

.experience-like-sec::before {
  top: 0;
  z-index: 0;
}

.experience-like-sec {

  .sec-head .sec-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: clamp(1.25rem, 0.585rem + 2.128vw, 2.5rem);
  }
}

.experience-box {
  .img-box {
    aspect-ratio: 1.68/1;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-box {
    background-color: #F6F5F0;
    padding: clamp(0.938rem, 0.106rem + 2.66vw, 2.5rem);
    padding-right: clamp(0.938rem, 0.771rem + 0.532vw, 1.25rem);
    margin-left: clamp(1.875rem, 1.044rem + 2.66vw, 3.438rem);
    margin-top: clamp(-1.875rem, -1.044rem + -2.66vw, -3.438rem);
    position: relative;
  }

  .sec-title {
    font-size: clamp(1.438rem, 1.205rem + 0.745vw, 1.875rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: clamp(0.938rem, 0.638rem + 0.957vw, 1.5rem);
    color: #C0A88A;
    text-transform: uppercase;
  }

  .cms-con {
    font-family: "Whitney Book";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
}

.experience-box.full-box {
  .img-box {
    aspect-ratio: 3.48/1;
  }

  .content-box {
    padding: clamp(1.25rem, 0.585rem + 2.128vw, 2.5rem) clamp(0.938rem, 0.106rem + 2.66vw, 2.5rem);
  }
}






















.lang-switch-sec select option {
  background: white;
  padding: 0;
}

.lang-switch-sec select option span {
  background: white;
  padding: 10px;
}

.lang-switch-sec select option:hover span {
  background: gray;
  display: block;
  width: 100%;
}


body.ar footer.main.main-footer .row {
  flex-direction: row-reverse;
}

body.ar .brocher-sec .row {
  flex-direction: row-reverse;
}

body.ar .zig-zag-flex-sec .zig-zag-flex:nth-child(odd) .container .row {
  flex-direction: row-reverse;
}

body.ar {}

body.ar {}












.lang-switch-sec .dropdown {
  position: relative;
  display: inline-block;
}

.lang-switch-sec .dropdown > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.lang-switch-sec .dropdown > label,
.lang-switch-sec .dropdown > a[role="button"] {
  display: inline-block;
  padding: 9px 15px;
  color: #333;
  line-height: 1.5em;
  text-decoration: none;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.lang-switch-sec .dropdown > label:hover,
.lang-switch-sec .dropdown > a[role="button"]:hover,
.lang-switch-sec .dropdown > a[role="button"]:focus {
  border-color: #333;
}

.lang-switch-sec .dropdown > label:after,
.lang-switch-sec .dropdown > a[role="button"]:after {
  content: "\f0d7";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: 6px;
}

.lang-switch-sec .dropdown > ul {
  position: absolute;
  z-index: 999;
  display: block;
  left: -100vw;
  top: calc(1.5em + 14px);
  border: 1px solid #8c8c8c;
  background: #fff;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.15);
  -moz-box-shadow: 0 3px 8px rgba(0,0,0,.15);
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

.lang-switch-sec .dropdown > ul a {
  display: block;
  padding: 6px 15px;
  text-decoration: none;
  color: #333;
}

.lang-switch-sec .dropdown > ul a:hover,
.lang-switch-sec .dropdown > ul a:focus {
  background: #ececec;
}

.lang-switch-sec .dropdown > input[type="checkbox"]:checked ~ ul,
.lang-switch-sec .dropdown > ul:target {
  left: 0;
}

.lang-switch-sec .dropdown > [type="checkbox"]:checked + label:after,
.lang-switch-sec .dropdown > ul:target ~ a:after {
  content: "\f0d8";
}

.lang-switch-sec .dropdown a.close {
  display: none;
}

.lang-switch-sec .dropdown > ul:target ~ a.close {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-indent: -100vw;
  z-index: 1000;
  opacity: 0;
}


/* 
.lang-switch-sec select,
.lang-switch-sec select::picker(select) {
    appearance: base-select;
}
option::checkmark {
    display: none !important;
}
.lang-switch-sec select {
    background: none;
    padding: 0;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switch-sec select::picker(select) {
    transition:
        opacity .2s ease,
        transform .2s var(--ease-out-3),
        display .2s allow-discrete,
        overlay .2s allow-discrete;
}

.lang-switch-sec select::picker-icon {
    display: none;
}

.lang-switch-sec select:not(:open)::picker(select) {
    opacity: 0;
    transform: scale(.95);
}

.lang-switch-sec select:open::picker(select) {
    opacity: 1;
    transform: scale(1);
}

.lang-switch-sec select selectedcontent > * {
    transition:
        transform 1s var(--ease-spring-4),
        display 1s allow-discrete,
        opacity 1s;
}

.lang-switch-sec select selectedcontent > *:starting-style {
    opacity: 0;
    transform: translateY(10px);
}

.lang-switch-sec select selectedcontent > * {
    opacity: 1;
}


.lang-switch-sec select > button {
    --_text: var(--text-1);
}

.lang-switch-sec select > button:focus-visible {
    outline-offset: -3px;
}

.lang-switch-sec select > button:has(selectedcontent) {
    align-items: start;
    min-inline-size: 20ch;
    flex-direction: column;
}

.lang-switch-sec select > button.primary {
    --_bg: var(--link);
    --_border: none;
    --_text: var(--surface-1);
    --_ink-shadow: none;
}

.lang-switch-sec select > button > div {
    inline-size: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--size-3);
}

.lang-switch-sec select > button > small {
    color: var(--text-2);
}

.lang-switch-sec select > button svg {
    inline-size: 2ch;
    transition: transform .3s var(--ease-elastic-out-2);
}

.lang-switch-sec select:open > button svg {
    transform: rotate(.5turn);
}


.lang-switch-sec select::picker(select) {
    background:var(--bg-white);
    border-radius: var(--radius-2);
    padding: 0;
    margin-block: 5px;
    box-shadow: var(--shadow-5);
    padding: 10px;
}
.lang-switch-sec select option  {
  background: white;
  padding: 0;
}
.lang-switch-sec select option span {
  background: white;
  padding: 10px;
}
.lang-switch-sec select option:hover span {
    background: gray;
    display: block;
    width: 100%;
}
@media (forced-colors: none) {
    .lang-switch-sec select::picker(select) {
        border: none;
    }
}

.lang-switch-sec select > div {
    min-inline-size: calc(anchor-size(self-inline) + 20px);
    scroll-behavior: smooth;
}

.lang-switch-sec select > div.scrollable {
    max-block-size: 20lh;
    scrollbar-width: thin;
}

.lang-switch-sec select > div hr {
    margin-block: var(--size-2);
}

.lang-switch-sec select > div label {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--surface-3);
    font-size: var(--font-size-0);
    color: var(--text-2);
    font-weight: var(--font-weight-7);
    padding-block: var(--size-1);
    padding-inline: var(--size-3);
}


.lang-switch-sec select > div option {
    display: flex;
    align-items: center;
    gap: var(--size-3);
    padding-block: var(--size-2);
    padding-inline: var(--size-3);
    font-size: var(--font-size-1);
    cursor: pointer;
    outline-offset: -1px;
}

.lang-switch-sec select > div option::checkmark {
    font-weight: var(--font-weight-8);
}

.lang-switch-sec select > div option:focus-visible {
    outline-offset: -1px;
}

.lang-switch-sec select > div option:is(:focus, :hover) {
    background: oklch(from var(--link) l c h / 25%);
    color: inherit;
}

.lang-switch-sec select > div option:checked {
    background: var(--link);
    color: var(--surface-1);
    font-weight: var(--font-weight-8);
}


.lang-switch-sec .custom-option {
    display: flex;
    gap: var(--size-3);
    align-items: center;
    justify-content: space-between;
}

.lang-switch-sec .primary .custom-option {
    display: grid;
    gap: var(--size-1);
}

.lang-switch-sec .custom-option:has(.description) {
    display: grid;
    justify-items: start;
    gap: var(--size-2);
    padding-block: var(--size-2);
    text-shadow: none;
}

.lang-switch-sec .custom-option .description {
    color: var(--text-2);
}

.lang-switch-sec option:checked .custom-option .description {
    font-weight: normal;
    color: var(--surface-2);
}

.lang-switch-sec selectedcontent .custom-option .description {
    display: none;
}

.lang-switch-sec .indicator {
    display: inline-block;
    block-size: var(--size-2);
    inline-size: var(--size-2);
    border-radius: var(--radius-round);
    background: var(--gray-5);
}

.lang-switch-sec .indicator.success {
    background: var(--green-5);
}

.lang-switch-sec .indicator.danger {
    background: var(--red-5);
}

.lang-switch-sec .option-text {
    flex: 2;
}

.lang-switch-sec .avatar {
    border-radius: var(--radius-round);
    overflow: hidden;
}


@layer demo.support {
    body {
        display: grid;
        place-items: start;
        place-content: center;
        padding: var(--size-5);
        gap: var(--size-5);
    }
}

.lang-switch-sec #support {
    position: fixed;
    inset-block-start: 10px;
    inset-inline: 10px;
    padding-block: 10px;
    background: hsl(from yellow h s l / 25%);
    display: grid;
    gap: 10px;
    text-align: center;
    place-content: center;
}

.lang-switch-sec .supports-custom-select #support {
    display: none;
} */