@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Forum&display=swap"); :root {
    --font-primary: "Forum", serif;
    --font-secondary: "Jost", sans-serif;
    --theme-color: #fff;
    --primary-color: #f4f1e8;
    --black-color: #000000;
    --white-color: #FFFFFF;
}

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--theme-color);
    color: var(--black-color);
}

a.custom-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: #864f23;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: var(--theme-color);
    text-decoration: none;
    transition: 0.7s;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
}

a.custom-btn:hover {
    background-color: #864f23;
    color: var(--white-color);
    transition: 0.7s;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, background-color 0.35s ease-in-out;
    background-color: transparent;
    box-shadow: none;
}

header.sticky {
    transform: translateY(0px);
    background-color: rgb(244, 241, 232);
    box-shadow: rgba(115, 115, 115, 0.37) 0px 0px 50px;
}

header a.navbar-brand img {
    width: 130px;
    object-fit: contain;
    height: auto;
}

header ul.navbar-nav {
    gap: 10px;
}

header ul.navbar-nav .nav-item a {
    color: var(--black-color);
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

header a.custom-btn {
    padding: 12px 20px 12px 20px;
    border: 0px;
}

header a.custom-btn img {
    width: 25px;
    vertical-align: middle;
    filter: invert(1);
    transition: 0.7s;
}

header a.custom-btn:hover img {
    filter: none;
    transition: 0.7s;
}

button.navbar-toggler[aria-expanded="true"] .menu {
    display: none;
}

button.navbar-toggler[aria-expanded="false"] .menu {
    display: block;
}

button.navbar-toggler[aria-expanded="true"] .close {
    display: block;
}

button.navbar-toggler[aria-expanded="false"] .close {
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

section.hero-section {
    position: relative;
    /* height: 100vh; */
    width: 100%;
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform-origin: center bottom;
}

section.hero-section img {
    width: 100%;
    height: 100%;
}

.overview-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: rgb(244, 241, 232);
}

.overview-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../images/overview-pattern.webp");
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
    filter: invert(1);
}

.overview-section::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 400px;
    height: 400px;
    background-image: url("../images/pattern-back.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.07;
}

.overview-image {
    position: relative;
    overflow: visible;
}

.overview-image img, .overview-image video {
    border-radius: 20px;
    height: 500px;
    width: 500px;
    object-fit: cover;
    object-position: center top;
    margin-top: 0;
    will-change: transform;
}

.overview-content .overview-right-image img {
    border-radius: 30px;
    height: 400px;
    width: 350px;
    object-fit: cover;
    display: block;
}

.overview-content span {
    margin-top: 0;
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.overview-content h1 {
    font-size: 42px;
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0px;
    margin: 20px 0px 30px;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    color: transparent;
    background-clip: text !important;
}

.overview-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.overview-content ul {
    display: flex;
    list-style: none;
    padding: 0px;
    gap: 12px;
    margin: 30px 0px 50px;
    FLEX-WRAP: wrap;
    JUSTIFY-CONTENT: space-between;
}

.overview-content ul li {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    WIDTH: 21%;
}

.overview-content ul li img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.overview-content a {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: #864f23;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: var(--theme-color);
    text-decoration: none;
    margin-top: 34px;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    /* color: transparent; */
    /* background-clip: text !important; */
}

.define {
    position: relative;
    background-image: url("../images/define-balance.jpg");
    background-size: cover;
    background-position: center center;
    height: 100vh;
    background-attachment: fixed;
}

.define .container {
    height: 100%;
}

.define .row {
    justify-content: end;
    align-items: center;
    height: 100%;
}

.define-content {
    width: 591px;
    background-color: rgb(243 240 231 / 85%);
    padding: 50px 30px;
    border-radius: 30px;
}

.define-content h2 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: 0px;
    color: #864f23;
    position: relative;
    font-weight: 600;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    color: transparent;
    background-clip: text !important;
}

.define-content h2::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -30px;
    width: 44px;
    height: 1px;
    background: rgb(123 97 79);
    content :none;
}

.define-content ul {
    /* list-style: none; */
    padding: 0px;
    margin: 30px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.define-content ul li {
    width: calc(50% - 14px);
}

.define-content ul li {
    font-family: var(--font-primary);
    font-weight: 400;
    /* font-size: 25px; */
    /* line-height: 100%; */
    letter-spacing: 0px;
    color: #864f23;
    padding-bottom: 18px;
    list-style: square;
}

.define-content ul li sup {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0px;
    position: relative;
    top: -20px;
    color: rgb(0, 0, 0);
}

.define-content a {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: #864f23;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.7s;
}

.define-content a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    transition: 0.7s;
}

section.location-section {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    background-color: rgba(226, 212, 205, 0.224);
}

section.location-section::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    transform: rotateY(180deg);
    width: 370px;
    height: 340px;
    opacity: 0.07;
}

section.location-section::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 20px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    width: 370px;
    height: 340px;
    opacity: 0.07;
}

.section-title {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0px auto 80px;
}

.section-title span {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    display: inline-block;
    color: #864f23;
}

.section-title h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 42px;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: #864f23;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    color: transparent;
    background-clip: text !important;
}

.prime-location {
    text-align: center;
    padding: 0px 50px;
    position: relative;
}

section.location-section .col-lg-6:last-child .prime-location::after {
    display: none;
}

.prime-location::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(rgba(232, 216, 172, 0) 0px, rgb(123 97 79) 55%, rgba(249, 103, 53, 0.06) 100%);
    width: 1px;
    height: 100%;
}

.prime-location::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgb(123 97 79) 55%, rgba(249, 103, 53, 0.06) 100%);
    position: absolute;
    bottom: -55px;
    left: 0px;
    z-index: 99;
    padding: 0px;
}

.prime-location p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.prime-location img {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
}

section.location-section .row {
    margin: 100px auto 120px;
    max-width: 1000px;
}

section.roset-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../images/roset-image.webp");
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

section.roset-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(51deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 100%);
    z-index: -1;
}

section.roset-section .container {
    height: 100%;
}

section.roset-section .row {
    height: 100%;
    justify-content: end;
    align-items: center;
}

.roset-content {
    max-width: 600px;
}

.roset-content img {
    max-width: 300px;
}

.roset-content-inner {
    padding-left: 150px;
    padding-top: 80px;
}

.roset-content-inner p {
    color: rgb(255, 255, 255);
    margin-bottom: 60px;
}

.roset-content-inner a {
    background-color: var(--white-color);
    color: var(--black-color);
    transition: 0.7s;
}

.roset-content-inner a:hover {
    background-color: var(--primary-color);
    transition: 0.7s;
}

section.amenities-section {
    padding: 100px 0px 50px;
    position: relative;
    background: rgba(226, 212, 205, 0.224);
}

.bg-video-before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 400px;
    height: 700px;
    opacity: 0.2;
}

.bg-video-after {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 400px;
    height: 700px;
    transform: rotateY(180deg);
    opacity: 0.2;
}

.bg-video-before video, .bg-video-after video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video-before::before, .bg-video-after::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(253, 234, 227) 0%, rgba(253, 234, 227, 0.15) 92.45%), linear-gradient(rgb(250, 231, 225) 0%, rgba(255, 255, 255, 0.3) 19.43%), linear-gradient(rgba(0, 0, 0, 0) 81.89%, rgb(0, 0, 0) 100%);
    z-index: -1;
}

section.amenities-section .container {
    position: relative;
}

.amenities-box {
    background: rgb(244, 241, 232);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.amenities-box a {
    position: relative;
    height: 400px;
    display: block;
    overflow: hidden;
    transition: 0.4s;
}

.amenities-box-content {
    padding: 15px 0px;
}

.amenities-icon {
    width: 45px;
    height: 45px;
    display: block;
    margin: auto;
}

.amenities-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.amenities-box a:hover img {
    transform: scale(1.2);
    transition: 0.8s;
}

.amenities-box h4 {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0px;
    padding: 10px 0px 0px;
    color: #864f23;
    min-height: 40px;
}

.swiper.aminities-slider .swiper-slide .row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}

.swiper.aminities-slider .swiper-controls {
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    top: inherit;
    bottom: -70px;
    z-index: 999;
    width: 100%;
    gap: 60px;
}

.text-center.aminites-btn {
    position: absolute;
    bottom: 80px;
    width: auto;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}

.swiper.aminities-slider .swiper-pagination, .swiper.aminities-slider-mob .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: max-content !important;
}

.swiper.aminities-slider .swiper-button-prev, .swiper.aminities-slider .swiper-button-next, .swiper.aminities-slider-mob .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    left: inherit;
    right: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper.aminities-slider .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-prev {
    border-left: 1px solid #864f23;
}

.swiper.aminities-slider .swiper-button-next, .swiper.aminities-slider-mob .swiper-button-next {
    border-right: 1px solid #864f23;
}

.swiper.aminities-slider .swiper-button-prev::after, .swiper.aminities-slider .swiper-button-next::after, .swiper.aminities-slider-mob .swiper-button-prev::after, .swiper.aminities-slider-mob .swiper-button-next::after {
    display: none;
}

.swiper.aminities-slider .swiper-button-prev img, .swiper.aminities-slider .swiper-button-next img, .swiper.aminities-slider-mob .swiper-button-prev img, .swiper.aminities-slider-mob .swiper-button-next img {
    width: 18px;
    height: 14px;
    object-fit: contain;
}

.swiper.aminities-slider, .swiper.aminities-slider-mob {
    padding-bottom: 100px;
    transform: translateZ(0px);
    backface-visibility: hidden;
}

.swiper.aminities-slider .swiper-pagination span.swiper-pagination-bullet, .swiper.aminities-slider-mob .swiper-pagination span.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgb(191, 191, 191);
    opacity: 1;
}

.swiper.aminities-slider span.swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper.aminities-slider-mob span.swiper-pagination-bullet.swiper-pagination-bullet-active, .gallery-section .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
    border: 5px solid rgb(191, 191, 191);
    width: 14px;
    height: 14px;
}

.gallery-section {
    padding-bottom: 80px;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.gallery-button-prev, .gallery-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-button-prev {
    border-left: 1px solid #864f23;
}

.gallery-button-next {
    border-right: 1px solid #864f23;
}

.gallery-button-prev::after, .gallery-button-next::after {
    display: none;
}

.gallery-button-prev img, .gallery-button-next img {
    width: 18px;
    height: 14px;
    object-fit: contain;
}

.gallery-section .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: max-content;
    top: inherit;
    bottom: inherit;
}

.gallery-section .swiper-pagination span.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(123, 97, 79, 0.66);
    opacity: 1;
}

section.floor-plan {
    padding: 100px 0px;
    background-color: rgb(244, 241, 232);
}

.floor-plan-panel {
    padding-right: 100px;
}

.floor-plan-tab img {
    width: 24px;
    height: 24px;
    display: none;
    object-fit: fill;
}

.floor-plan-tabs {
    margin-bottom: 60px;
    display: flex;
}

.floor-plan-tab {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 30px;
}

.floor-plan-tab:first-child {
    padding-left: 0px;
}

.floor-plan-tab:last-child {
    padding-right: 0px;
}

.floor-plan-tab.active {
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-weight: 700;
}

.floor-plan-tab.active img {
    display: block;
}

.floor-plan-info {
    display: grid;
    gap: 24px;
}

.floor-plan-data {
    display: none;
}

.floor-plan-data.active {
    display: block;
}

.floor-plan-data {
    display: none;
}

#plan-master:checked ~ .floor-plan-info .plan-master, #plan-floor:checked ~ .floor-plan-info .plan-floor {
    display: block;
}

.floor-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #864f23;
    padding: 24px 0px;
}

.floor-plan-item span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #864f23;
}

.floor-plan-item strong {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.floor-plan-actions {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: end;
    margin-top: 80px;
}

.floor-plan-btn {
    border: 0px;
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floor-plan-image-inner {
    height: 450px;
    width: 100%;
    border: 2px solid #864f23;
    border-radius: 20px;
    padding: 20px;
}

.floor-plan-image-inner img {
    width: 100%;
    height: 100%;
    filter: blur(5px);
}

.floor-plan-swiper {
    position: relative;
}

.floor-plan-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.floor-plan-image {
    position: relative;
}

.floor-plan-image a.custom-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

section.location-advantage {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
    background: rgba(226, 212, 205, 0.224);
}

section.location-advantage::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 0px;
    width: 200px;
    height: 200px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.1;
}

section.location-advantage .section-title h2 {
    color: rgb(0, 0, 0);
}

.location-list {
    padding-left: 60px;
}

.location-list ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.location-list ul li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 30px;
    padding-left: 47px;
    position: relative;
    color: rgb(0, 0, 0);
}

.location-list ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 40px;
    height: 23px;
    background-image: url("../images/icon/logo_icon.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.location-list-btn a.custom-btn {
    background-color: #864f23;
    color: rgb(255, 255, 255);
}

.location-list-btn a.custom-btn:hover {
    background-color: #864f23;
}

.location-map {
    /* height: 500px; */
    position: relative;
}

.location-map img {
    width: 100%;
    /* height: 100%; */
    border-radius: 20px;
    object-fit: cover;
}

section.gallery-section {
    padding: 100px 0px;
    position: relative;
    background-color: rgb(244, 241, 232);
}

section.gallery-section .section-title h2 {
}

.faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.faq-item .accordion-button {
    font-size: 1.02rem;
    font-weight: 600;
    color: #111;
    padding: 20px 24px;
    background: #fff;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #111;
    background: #fff;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-item .accordion-body {
    color: #555;
    line-height: 1.8;
    padding: 0 24px 20px;
}

section.gallery-section::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 300px;
    height: 300px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.07;
}

.gallery-swiper {
    position: relative;
    margin-left: 300px;
}

.gallery-swiper .swiper-slide {
    opacity: 0.6;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-swiper .swiper-slide-next, .gallery-swiper .swiper-slide-prev {
    opacity: 0.8;
}

.gallery-swiper img {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    position: absolute;
    right: 40px;
}

.gallery-section a.custom-btn {
    background-color: #864f23;
}

.about-developer-section {
    padding: 100px 0px;
    position: relative;
    background: rgb(244, 241, 232);
}

.about-developer-section::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -50px;
    background-image: url("../images/flower-top.webp");
    transform: rotateY(180deg);
    width: 370px;
    height: 340px;
}

.about-dev-content h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0px;
    margin-bottom: 40px;
    color: #864f23;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    color: transparent;
    background-clip: text !important;
}

.about-developer-section .col-md-6:first-child {
    padding: 0px 100px 0px 0px;
}

.about-developer-section .section-title {
    text-align: left;
    margin-bottom: 0px;
}

.about-developer-section .section-title h2 {
    text-align: left;
    font-size: 28px;
}

section.contact-form-section {
    padding: 80px 0px;
    position: relative;
    background-color: rgba(226, 212, 205, 0.224);
}

section.contact-form-section::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url("../images/pattern-back.webp") right center / contain no-repeat;
    opacity: 0.07;
    z-index: -1;
}

section.contact-form-section .container {
    position: relative;
}

section.contact-form-section .container::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgba(15, 61, 46, 0.37) 50%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    bottom: -80px;
    left: 0px;
    z-index: 99;
}

.gold-section img {
    width: 60px;
    height: 60px;
    margin-bottom: 50px;
}

.gold-section img.qr {
    border: 1px solid rgb(0, 0, 0);
}

.gold-section h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 48px;
    line-height: 44px;
    letter-spacing: 0px;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
    color: transparent;
    background-clip: text !important;
}

.gold-section h3 span {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: 44px;
    letter-spacing: 0px;
    display: block;
}

.form {
    border-right: 1px solid #864f23;
    border-left: 1px solid #864f23;
    background: rgb(249 245 244);
    padding: 60px 70px;
    border-radius: 40px;
}

.form input.form-control,
.form-select {
    font-size: 14px;
    /* line-height: 100%; */
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 17px 20px;
    border: 1px solid rgba(0, 0, 0, 0.29);
    background-color: rgba(123, 97, 79, 0.09);
    color: var(--black-color);
    BORDER-RADIUS: 38PX;
}

.form input.form-control::placeholder {
    color: var(--black-color);
    opacity: 0.5;
}

.form-control:focus {
    box-shadow: none;
}

label.form-check-label {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.5px;
}

button.custom-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 60px;
    background-color: #864f23;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: var(--theme-color);
    text-decoration: none;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
}

button.custom-btn:hover {
    background-color: #864f23;
    color: rgb(255, 255, 255);
}

footer {
    padding: 60px 0px 40px;
    position: relative;
    background-color: rgb(176 116 70);
    color: #fff;
    background: linear-gradient(180deg, #986034 0%, #864f23 100%);
}

footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: url("../images/pattern-back.webp") 0% 0% / contain no-repeat;
    opacity: 0.1;
    z-index: -1;
}

footer .container img {
    max-width: 240px;
    margin-bottom: 40px;
}

footer h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--white-color);
}

.discalimerdiv p, span.reamoredbtn {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0px;
    color: #fff;
}

.gtfdiv p {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}

.gtfdiv p a {
    color: #fff;
    text-decoration: none;
}

.modal-content {
    background-color: rgb(244, 241, 232);
    border-radius: 30px;
    padding: 20px;
}

.modal-content .modal-header {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    border-bottom: 0px;
}

.modal-content .modal-header button {
    padding: 0px;
    opacity: 1;
    border: 1px solid rgb(0, 0, 0);
    height: 40px;
    border-radius: 50%;
    width: 40px !important;
}

.modal-form .section-title {
    margin-bottom: 0px;
}

.modal-form-inner .form-control {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 17px 20px;
    border: 1px solid rgba(15, 61, 46, 0.3);
}

.about-developer-card {
    position: relative;
    text-align: center;
}

.about-developer-card::after {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, #864f23 55%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    top: -12px;
    right: 9%;
    z-index: 99;
    padding: 0px;
}

.about-developer-card::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, #864f23 55%, rgba(232, 216, 172, 0.06) 100%);
    position: absolute;
    bottom: -12px;
    right: 9%;
    z-index: 99;
    padding: 0px;
}

.about-developer-card h4 {
    font-family: var(--font-secondary);
    font-size: 30px;
}

.about-developer-card p {
    color: rgb(0, 0, 0);
    margin: 0px;
    font-family: var(--font-primary);
}

span.ai-img-caption {
    position: absolute;
    right: 10px;
    bottom: 5px;
    margin: 0px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.54);
    padding: 0px 4px;
}

.amenities-box a {
    position: relative;
}

.gallery-swiper .swiper-slide > a {
    position: relative;
    display: block;
}

.gallery-swiper .swiper-slide span.ai-img-caption {
    right: 20px;
    bottom: 10px;
}

.overview-content span.ai-img-caption {
    right: inherit;
    left: 20px;
    bottom: 10px;
}

.mobile-bottom {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    background: var(--primary-color);
    display: none;
    justify-content: space-between;
    z-index: 99;
}

.mobile-bottom a {
    color: #864f23;
    font-size: 14px;
    padding: 10px 20px;
    text-decoration: none;
    /* border-right: 1px solid #864f23; */
    text-align: center;
    width: 33.33%;
    font-weight: 600;
}

a.enquiry-btn {
    position: fixed;
    right: -40px;
    top: 50%;
    padding: 18px 40px;
    background-color: #864f23;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: var(--theme-color);
    text-decoration: none;
    border-radius: 15px 15px 0px 0px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 9;
    background: linear-gradient(180deg, #b97e50 0%, #864f23 100%);
}

a.float-whatsaap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: 1.8s ease-in-out 0s infinite normal none running float-whatsapp-pulse;
}

a.float-whatsaap:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

a.float-whatsaap img {
    width: 50px;
    height: 50px;
    display: block;
}

@keyframes float-whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: rgba(37, 211, 102, 0.45) 0px 0px 0px 0px;
    }

    70% {
        transform: scale(1.04);
        box-shadow: rgba(37, 211, 102, 0) 0px 0px 0px 12px;
    }

    100% {
        transform: scale(1);
        box-shadow: rgba(37, 211, 102, 0) 0px 0px 0px 0px;
    }
}

section.gallery-section .container-fluid {
    padding: 0px;
}

.modal-dialog {
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
}

.modal-content {
    top: 50%;
    transform: translateY(-50%);
}

section.about-developer-section .row .col-md-3 {
    width: 20%;
}
nav.navbar.navbar-expand-lg.bg-transparent {
    padding: 0;
}

   .floor-plan-image  a.custom-btn {
        padding: 12px 9px !important;
        width: 199px;
        align-items: center;
        text-align: center;
    }

.define-content ul li span {
    font-size: 18px;
    color: #000;
    padding-left: 5px;
}
.banner_form_design {
    position: absolute;
    z-index: 99;
    bottom: 4px;
    width: 100%;
    padding: 0 60px;
}
.banner_form_design .form {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 16px 0PX;
    column-gap: 10px;
    border-radius: 0;
    /* justify-content: center; */
    align-items: center;
    /* text-align: center; */
    JUSTIFY-CONTENT: CENTER;
    ALIGN-ITEMS: CENTER;
    /* text-align: center; */
}


.banner_form_design .form>div {
    width: 19%;
}

.banner_form_design button.custom-btn {
    padding: 10px 20px;
    line-height: 30px;
    width: 100%;
}


.banner_form_design .form .col-lg-12 {
    width: 100%;
}
.overview-section .row {
    align-items: center;
}

.faqs-page{
padding: 100px 0;
}

.faq-accordion .accordion-item{background: #f9f5f4;margin-bottom: 20px;border: none;border-radius: 10px;overflow: hidden;}

.faq-accordion .accordion-item:last-child{
margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-header .accordion-button{
box-shadow: none;
outline: 0;
border: none;
background: none;
font-size: 18px;
font-weight: 500;
padding: 18px 20px;
color: var(--dark-color);
}

.faq-accordion .accordion-item .accordion-button::after{
content: '';
width: 20px;
height: 20px;
display: block;
background: url(../images/icon/icon-faq.svg) no-repeat center center;
}

.faq-accordion .accordion-body{padding-top: 10px;color: #000;}

.faq-accordion .accordion-body p:last-child{
margin-bottom: 0;
}
.latest-posts{padding: 50px 0;background: rgb(244, 241, 232);}

.post-item .post-featured-image{
border-radius: 20px;
overflow: hidden;
position: relative;
margin-bottom: 20px;
}

.post-item .post-featured-image figure img{
width: 100%;
transition: all 0.4s ease-out;
}

.post-item .post-featured-image .post-read-more{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background: var(--overlay-color);
opacity: 0;
transition: all 0.3s ease-out;
}

.post-item .post-featured-image .post-read-more .btn-default{
top: 20px;
opacity: 0;
transition: all 0.3s ease-out;
}

.post-item:hover .post-featured-image .post-read-more{
opacity: 1;
}

.post-item:hover .post-featured-image .post-read-more .btn-default{
top: 0;
opacity: 1;
}

.post-item:hover .post-featured-image figure img{
transform: scale(1.2);
}

.post-item .post-body .post-category ul{
padding: 0;
margin: 0 0 4px;
list-style: none;
}

.post-item .post-body .post-category ul li a{
color: var(--text-color);
}

.post-item .post-body h3{
margin-bottom: 0;
}

.post-item .post-body h3 a{
font-size: 22px;
font-weight: 600;
color: var(--dark-color);
}

.property-amenities{
background: var(--secondary-color);
padding: 40px 40px 20px 40px;
border-radius: 20px;
margin-top: 50px;
}

.property-amenities-box{display: flex;flex-wrap: wrap;}
.property-amenities-box ul{
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
}

.property-amenities-box ul li{
/*width: calc(33.33% - 20px);*/width: 100%;
font-size: 15px;
font-weight: 500;
margin-right: 15px;
margin-bottom: 5px;
position: relative;
/* padding-left: 25px; */
}

/* .property-amenities-box ul li:before{
content: '';
display: block;
position: absolute;
top: 2px;
left: 0;
width: 20px;
height: 20px;
background: url(../images/icons/icon-checkbox.svg) no-repeat left center;
} */

.property-map-location{
background: var(--secondary-color);
padding: 40px;
border-radius: 20px;
margin-top: 50px;
}

.property-map-iframe iframe{
width: 100%;
height: 300px;
border-radius: 20px;
}
section#master-plan {
    background-color: rgba(226, 212, 205, 0.224);
}

.property-types{
padding: 50px 0;
}

.property-type-item{background: #f5f2e952;padding: 30px;border-radius: 20px;}

.property-type-item .icon-box{width: 70px;height: 70px;background: #a66b3d;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin-bottom: 20px;transition: all 0.3s ease-out;}

.property-type-item:hover .icon-box{background: #864f23;}

.property-type-item h3{
font-size: 22px;
font-weight: 600;
color: var(--dark-color);
margin-bottom: 6px;
}

.property-type-item p{
margin: 0;
}

.property-type-slider .swiper-pagination{
position: relative;
bottom: 0;
margin-top: 30px;
}

.property-type-slider .swiper-pagination .swiper-pagination-bullet{
width: 16px;
height: 16px;
background: var(--primary-color);
transition: all 0.3s;
}

.property-type-item .icon-box img {
    width: 30px;
    filter: brightness(11.5);
}

.property-type-item:hover img {
    filter: brightness(24.5);
}
.banner_form_design .form input.form-control,
.banner_form_design .form-select {
    padding: 6px 20px;
}

 .banner_form_design .form>div {
    margin-bottom: 0!important;
}

.banner_form_design button.custom-btn {
    padding: 2px 30px;
}

.Expansive-sec {
    position: relative;
}

.Expansive-sec::after {
    content: "";
    background: linear-gradient(135deg, #0000009c, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.Expansive-sec img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-size: cover;
    object-position: right;
}

.Expansive-sec-text {
 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.Expansive-sec-text h1 {
      color: #ffffff;
      text-align: center;
      font-family: var(--heading-font);
      font-size: 36px;
      font-weight: 300;
      line-height: 1.4;
      /* margin: 30px 0 60px;
    margin-top: 15px; */
      padding-left: 0;
      letter-spacing: 2px;
      text-transform: capitalize;
}

.Expansive-sec-text span {
    font-family: Cinzel-bold;
    /* font-weight: 700; */
}
.Expansive-sec video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.Expansive-sec .enquire-btn1{
    margin-left:0;
    margin-top: 40px!important;
}
.Expansive-sec {
    position: relative;
    height: 600px;
}

@media (max-width: 1500px) {
    .overview-image img, .overview-image video {
        /* margin-top: 250px; */
    }

    .modal-content .modal-header button {
        height: 30px;
        background-size: 10px;
        width: 30px !important;
    }

    .modal-form-inner .form-control {
        font-size: 13px;
        padding: 10px 15px;
    }

    .modal-form-inner button.custom-btn {
        padding: 15px 40px;
    }

    .modal-form .section-title h2 {
        font-size: 30px;
        line-height: 30px;
    }
}

@media (max-width: 1500px) {
    header ul.navbar-nav {
        gap: 0px;
    }

    .gallery-swiper {
        margin-left: 100px;
    }
}

@media (max-width: 1024px) {
    .location-list {
        padding-left: 20px;
    }

    .gallery-swiper {
        margin-left: 0px;
    }

    .gallery-controls {
        right: 10%;
    }

    .about-developer-section .col-md-6:first-child {
        padding: 0px 50px 0px 0px;
    }

    section.gallery-section .container-fluid {
        padding: 0px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 95%;
    }

    .overview-image img, .overview-image video {
        margin-top: 0px;
    }

    .prime-location {
        margin-bottom: 100px;
    }

    .prime-location::after {
        display: none;
    }

    .section.location-section .col-lg-6:last-child .prime-location {
        margin-bottom: 0px;
    }

    .overview-right-image.reveal {
        display: none;
    }

    .swiper.aminities-slider .swiper-slide .row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }

    .form {
        padding: 40px 30px;
    }

    .floor-plan-panel {
        padding-right: 0px;
    }

    section.about-developer-section .row .col-md-3 {
        width: 33.33%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .swiper.aminities-slider .swiper-controls {
        justify-content: center;
        gap: 20px;
    }

    section.amenities-section .container-fluid {
        padding: 0px;
    }

    a.float-whatsaap {
        display: none;
    }

    a.enquiry-btn {
        display: none;
    }

    .container {
        max-width: 100%;
    }

    section.amenities-section .container {
        padding: 0px;
    }

    header ul.navbar-nav {
        padding-top: 30px;
        gap: 0px;
    }

    header ul.navbar-nav .nav-item a {
        text-align: center;
        font-family: var(--font-primary);
        font-size: 16px;
        border-bottom: 1px solid var(--primary-color);
        padding: 10px 0px;
    }

    .d-flex.header-btn {
        justify-content: center;
        display: none!important;
    }

    header a.custom-btn {
        display: none;
    }

    button.custom-btn {
        width: 100%;
        font-family: var(--font-primary);
        font-size: 16px;
    }

    header ul.navbar-nav .nav-item:last-child a {
        border-bottom: 0px;
    }

    header ul.navbar-nav .nav-item:first-child a {
        border-bottom: 1px solid var(--primary-color);
        border-top: 1px solid var(--primary-color);
    }

    .section-title {
        width: 100%;
        margin-bottom: 40px;
        padding: 0px 15px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 0px;
    }

    .overview-section {
        padding: 40px 0px;
    }

    .modal-content {
        padding: 25px 0px;
    }

    .overview-image img, .overview-image video {
        margin-top: 0px;
        height: 300px;
        width: 100%;
    }

    .overview-content {
        display: grid;
    }

    .overview-right-image {
        order: 2;
    }

    .overview-content-inner {
        order: 1;
        margin-bottom: 30px;
    }

    .overview-section::after {
        display: none;
    }

    .overview-content span {
        margin-top: 30px;
    }

    .overview-content .overview-right-image img {
        height: 300px;
        width: 100%;
    }

    .define-image {
        width: 100%;
        height: 400px;
    }

    .define-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    section.define {
        background-image: none;
        height: auto;
    }

    .define-content ul li {
        font-size: 30px;
        width: 100%;
        padding-bottom: 0px;
    }

    .define-content ul {
        gap: 0px 5px;
        margin: 18px 0 30px 20px;
    }

    section.location-section::after {
        display: none;
    }

    section.location-section {
        padding: 40px 0px;
    }

    .prime-location {
        padding: 0px;
        margin-bottom: 40px;
    }

    section.location-section .row {
        margin: 0px;
    }

    .roset-image {
        position: relative;
        height: 400px;
    }

    .prime-location::before {
        display: none;
    }

    .roset-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    section.roset-section {
        height: auto;
        background-image: none;
    }

    .roset-content, .define-content {
        border-radius: 0px;
        padding: 30px 15px;
        width: 100%;
        background-color: #f4f1e8;
        max-width: 100%;
    }

    .overview-content p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .about-dev-content p {
        font-size: 14px;
        text-align: justify;
    }

    .discalimerdiv p, span.reamoredbtn {
        font-size: 13px;
        line-height: 22px;
        text-align: justify;
    }

    .define-content ul li sup {
        font-size: 14px;
        top: -10px;
    }

    .roset-content img {
        max-width: 150px;
        margin: auto;
        display: block;
    }

    .roset-content-inner {
        padding: 30px 0px 0px;
        text-align: center;
    }

    .roset-content-inner p {
        margin-bottom: 30px;
        font-size: 14px;
        text-align: justify;
    }

    section.amenities-section {
        padding: 40px 0px;
    }

    .amenities-box a {
        height: 300px;
    }

    .aminites-btn {
        position: relative;
        bottom: inherit;
        right: inherit;
    }

    .swiper.aminities-slider-mob .swiper-controls {
        bottom: -50px;
        gap: 18px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .swiper.aminities-slider-mob {
        padding-bottom: 100px;
    }

    .swiper.aminities-slider-mob .swiper-button-prev, .swiper.aminities-slider-mob .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    section.floor-plan {
        padding-bottom: 40px;
        padding-top: 60px;
    }

    .floor-plan-image-inner {
        height: 350px;
    }

    .floor-plan-panel {
        padding-right: 0px;
        width: 100%;
    }

    .floor-plan-tabs {
        margin-bottom: 30px;
        justify-content: center;
    }

    section.floor-plan .col-md-7 {
        order: 1;
        margin-bottom: 50px;
    }

    section.floor-plan .col-md-5 {
        order: 2;
    }

    .floor-plan-actions {
        justify-content: center;
        margin-top: 30px;
    }

    .location-map {
        height: 300px;
        margin-top: 30px;
    }

    .location-list {
        padding-left: 0px;
        padding-top: 30px;
        width: 100%;
    }

    .location-list-btn {
        text-align: center;
    }

    section.gallery-section {
        padding: 40px 0px;
    }

    .gallery-swiper {
        margin-left: 0px;
    }

    .gallery-swiper img {
        height: 400px;
    }

    .gallery-controls {
        position: relative;
        right: inherit;
    }

    .gallery-button-prev, .gallery-button-next {
        width: 40px;
        height: 40px;
    }

    .about-developer-section {
        padding: 40px 0px;
    }

    .about-developer-section .section-title h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 0px;
    }

    .about-dev-content h3 {
        font-size: 26px;
        line-height: 34px;
        margin: 30px 0px;
    }

    .about-developer-section .col-md-6:first-child {
        padding: 0px 10px;
    }

    section.about-developer-section .row .col-md-3 {
        width: 50%;
        margin-bottom: 10px;
    }

    section.contact-form-section {
        padding: 40px 0px;
    }

    .gold-section h3 {
        font-size: 20px;
        line-height: 36px;
        letter-spacing: 0px;
    }

    .gold-section h3 span {
        font-size: 20px;
        line-height: 36px;
        display: inline;
    }

    .gold-section img {
        margin-bottom: 30px;
    }

    .form {
        padding: 40px 30px;
        margin-top: 30px;
    }

    footer {
        padding: 40px 0px 60px;
    }

    section.contact-form-section .container::before {
        bottom: -40px;
    }

    section.location-section::before {
        left: 0px;
    }

    .bg-video-before {
        width: 100%;
        height: 300px;
    }

    .bg-video-after {
        display: none;
    }

    section.location-advantage::after {
        right: 0px;
    }

    footer::before {
        width: 100%;
    }

    .gtfdiv p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0px;
    }

    .prime-location::after {
        display: none;
    }

    .text-center.aminites-btn {
        position: relative;
        bottom: inherit;
    }

    .overview-right-image.reveal {
        display: none;
    }

    a.custom-btn, button.custom-btn {
        padding: 12px 14px !important;
    }

    .gold-section {
        text-align: center;
    }

    .overview-content-inner {
        text-align: center;
    }

    .define-content-inner {
        text-align: center;
    }

    .overview-content ul {
        justify-content: space-between;
        gap: 0px;
    }

    section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(3n) .about-developer-card::after {
        display: none;
    }

    section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(4n) .about-developer-card::after, section.about-developer-section .col-md-3.col-sm-6.col-6:nth-child(5n) .about-developer-card::after {
        display: none;
    }

    .mobile-bottom {
        display: flex;
        justify-content: center;
    }

    section.hero-section img {
        width: 100%;
        height: 100%;
        /* object-fit: none; */
        height: auto;
    }

nav.navbar.navbar-expand-lg.bg-transparent {
    padding: 0;
}

.overview-content ul li {
    text-align: center;
}

.overview-content ul li p {
    text-align: center;
}
.form input.form-control {
    padding: 10px 20px;
}

header ul.navbar-nav li.nav-item {position: relative;margin-bottom: 10px;}
header ul.navbar-nav li.nav-item::after  {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 216, 172, 0) 0px, rgb(123 97 79) 55%, rgba(249, 103, 53, 0.06) 100%);
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 99;
    padding: 0px;
}
.banner_form_design {
    display: none;
}

.property-photos-slider .swiper-arrow-prev,
.property-photos-slider .swiper-arrow-next{
width: 40px;
height: 40px;
}

.property-overview,
.about-property,
.property-amenities,
.property-map-location{
padding: 20px;
}

.property-single-subtitle{
margin-bottom: 20px;
}

.property-single-subtitle h3{
font-size: 26px;
}

.property-overview-box .property-overview-item{
width: calc(50% - 15px);
}

.property-overview-box .property-overview-item:nth-of-type(3n + 3){
margin-right: 30px;
}

.property-overview-box .property-overview-item:nth-of-type(2n + 2){
margin-right: 0;
}

.property-overview-box .property-overview-item .icon-box{
width: 40px;
height: 40px;
margin-right: 10px;
}

.property-overview-box .property-overview-item .icon-box img{
max-width: 50%;
}

.property-overview-box .property-overview-item .property-overview-content{
width: calc(100% - 50px);
}

.property-overview-box .property-overview-item .property-overview-content h3{
font-size: 16px;
margin-bottom: 2px;
}

.property-overview-box .property-overview-item .property-overview-content p{
font-size: 14px;
}

.property-amenities-box ul li{width: 100%;margin-right: 0;margin-bottom: 10px;/* padding-left: 0; */}

.property-info-box{
padding: 30px;
}

.property-inquiry-box{
padding: 30px;
}
.overview-content h1 {
    font-size: 30px;
    line-height: 36px;
}

.define-content h2 {
    font-size: 30px;
    line-height: 36px;
}

.Expansive-sec {
    height: 300px;
}

.Expansive-sec-text h1 {
    font-size: 30px;
}
}
