:root {
    --gold: #7BA05B;
    --gold-light: #CFE5B8;
    --gold-dark: #4F6F3C;
    --deep: #102418;
    --deep2: #1A3323;
    --deep3: #274530;
    --cream: #F4F8F1;
    --cream2: #EAF2E4;
    --cream3: #D5E3CF;
    --white: #FFFFFF;
    --muted: #667A68;
    --muted2: #8FA18F;
    --forest: #2D6A3D;
    --text-dark: #1D2B1F;
    --section-light: #EEF5EA;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

a:-webkit-any-link {
    cursor: pointer;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
}

.link-arrow::after {
    content: '→';
    transition: transform .2s;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.right-bottom {
    display: flex;
    margin-bottom: 0;
    align-items: flex-end;
    justify-content: flex-end;
}

/* section heading */
.section-heading .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 20px;
}

.section-heading .section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-heading .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 400;
    color: var(--deep2);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 20px;
}

.section-heading .section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-heading .section-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
    max-width: 540px;
    font-weight: 300;
}

.section-heading .section-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
}

/* End section heading */
.section-bg-dark {
    background: var(--deep2);
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.home-banner {
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-color: #565656;
}

.video-banner {
    position: relative;
    height: calc(100vh - 85px);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
}

.video-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-banner video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    padding: 150px 0 80px;
    text-align: left;
    /*    background: rgb(0 0 0 / 50%);*/
}

.transparentHeader {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent !important
}

element.style {}

.main-menu > ul > li > a {
    padding: 25.5px 0;
}

.main-menu a {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-weight: 400;
    /*    transition: color .3s;*/
}

.sticky-wrapper.sticky {
    background: rgba(10, 10, 20, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 122, .15);
}

/*.sticky-wrapper.sticky .main-menu a{color: var(--black-color2);}*/
.main-menu ul.sub-menu li a {
    color: #333
}

.main-menu a:hover,
.header-layout1 .main-menu > ul > li > a:hover,
.header-layout1 .main-menu > ul > li > a.active {
    color: #fff
}

/*.sticky-wrapper.sticky .main-menu a:hover{color: var(--black-color2);}*/
.main-menu ul.sub-menu li a:hover {
    color: #000
}

.header-layout1 .main-menu > ul > li {
    margin: 0 7px;
}

.header-layout1 .main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    background: var(--gold);
    ;
    width: 0%;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header-layout1 .sticky-wrapper.sticky .main-menu > ul > li > a:before {
    background: var(--gold);
}

/* ── CUSTOM CURSOR ── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .15s ease, width .2s, height .2s, background .2s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .08s ease, width .25s, height .25s, opacity .2s;
    opacity: .6;
}

body:hover .cursor {
    opacity: 1;
}

.header-button .nav-cta {
    background: transparent;
    border: 1px solid #7ba05b;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 1px !important;
    cursor: none;
    font-weight: 400;
    transition: all .3s;
    padding: 8px 20px;
}

.th-btn:before {
    border-radius: 1px;
    background-color: var(--gold);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--deep);
}


/* Banner content*/
.hero-content {
    position: relative;
    z-index: 2;
    /*    padding: 0 60px 80px;*/
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 18px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 70px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.01em;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 14px;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .6);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-sub {
    font-size: 14px;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .6);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    cursor: none;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .3);
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 16px 40px;
    cursor: none;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    color: var(--deep);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    box-shadow: unset;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
}

.hero-stats {
    position: absolute;
    right: 15px;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-stat {
    text-align: right;
}

.hero-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

/* End Banner content*/
/* ── MARQUEE ── */
.marquee-strip {
    background: var(--deep2);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(200, 169, 122, .2);
    border-bottom: 1px solid rgba(200, 169, 122, .2);
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 35s linear infinite;
}

.marquee-inner span {
    font-size: 9px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(200, 169, 122, 1);
    padding: 0 40px;
    font-weight: 300;
}

.marquee-inner .dot {
    color: var(--gold);
    padding: 0 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── End MARQUEE ── */

/*End Footer*/
/*newsletter*/
.newsletter {
    background: var(--gold);
    padding: 48px 0;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text {
    width: 100%;
    margin-bottom: 0
}

.newsletter-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--deep);
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 13px;
    color: var(--deep);
    opacity: .7;
    font-weight: 300;
}

.newsletter-forms {
    display: flex;
    gap: 0;
}

.newsletter-forms input {
    padding: 14px 20px;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    width: 100%;
    outline: none;
    background: rgba(255, 255, 255, .9);
    color: var(--deep);
    font-weight: 300;
    border-radius: 0;
    height: auto;
}

.newsletter-forms button {
    background: var(--deep2);
    color: var(--gold);
    border: none;
    padding: 14px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: none;
    font-weight: 500;
    transition: background .3s;
}

.newsletter-forms button:hover {
    background: var(--deep);
}

footer.footer-wrapper {
    background: var(--deep);
    border-radius: 0;
}

footer .copyright-wrap p.copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    font-weight: 300;
}

footer .footer-links a {
    font-size: 11px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3) !important;
    text-decoration: none;
    transition: color .2s;
    font-weight: 300;
}

footer .footer-links a:hover {
    color: var(--gold) !important;
}

footer .footer-widget .about-logo img {
    width: 180px
}

footer .footer-widget p.about-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
    margin-top: 16px;
    font-weight: 300;
}

footer.footer-wrapper .footer-widget h3.widget_title {
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    /*    margin-bottom: 20px;*/
}

footer.footer-wrapper .menu-all-pages-container ul.menu li a:hover,
.footer-wrapper .menu-all-pages-container ul.menu li a:hover:before {
    color: var(--gold);
}

footer.footer-wrapper .menu-all-pages-container ul.menu li a {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-weight: 300;
    transition: color .2s;
}

footer.footer-wrapper .widget:last-child.footer-widget {
    margin-bottom: 10px
}

footer.footer-wrapper .widget-area {
    padding-bottom: 45px;
}

/*End Footer*/

/*Get in touch*/
.get-In-Touch {
    background: var(--cream);
}

.get-In-Touch .contact-item {
    margin-top: 35px
}

.get-In-Touch .contact-item.first {
    margin-top: 0
}

.get-In-Touch .contact-item h5 {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 4px;
}

.get-In-Touch .contact-item p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.6;
}

.get-In-Touch .contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.get-In-Touch .contact-form {
    background-color: transparent;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: 0;
    padding: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 0.5em;
    line-height: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--cream3);
    padding: 14px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    transition: border .2s;
    font-weight: 300;
    height: unset;
    border-radius: 0;
    line-height: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px !important;
}

.form-submit {
    background: var(--deep2);
    color: var(--white);
    border: none;
    padding: 10px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: none;
    transition: background .3s;
    align-self: flex-start;
}

/*End get in touch*/
.scroll-top .progress-circle path,
.scroll-top svg {
    stroke: var(--gold);
    color: var(--gold);
}

.progress-wrap svg path {
    stroke: #7BA05B;
}

.progress-wrap .arrow,
.progress-wrap i {
    color: #7BA05B;
}

/*?Drector Disk*/

.founderDesk .director-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    margin: 0 auto 32px;
    padding: 0;
    background-color: transparent;
    border: 0 !important;
}

.founderDesk .director-quote span {
    color: var(--gold);
}

.founderDesk .director-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
}

.founderDesk .director-sign {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.founderDesk .director-role {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
    letter-spacing: .1em;
}

/*End Director Disk*/

/*Blogs*/
.blog-card {
    border: 1px solid var(--cream3);
    padding: 36px 32px;
    transition: box-shadow .3s, transform .3s;
    position: relative;
    background-color: transparent;
    border-radius: 0;
    height: 385px;
    display: grid;
    place-content: center;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.blog-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--cream3);
    line-height: 1;
    margin-bottom: 8px;
}

.blog-card-tag {
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 14px;
}

.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--deep2);
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.blog-card .read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--deep2);
    font-weight: 500;
}

.blog-card .read-more::after {
    content: '→';
    color: var(--gold);
}

/*End Blog*/
.blog-card.partner-card {
    height: auto;
    display: block;
    place-content: unset;
}

.blog-card.partner-card:hover {
    background: var(--white);
    transform: translateY(0px);
    box-shadow: unset;
}

.partner-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin-bottom: 0;
}

.partner-card ul li {
    font-size: 12px;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
    font-weight: 300;
}

.partner-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

.blog-card.partner-card h3 {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--deep2);
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
}

/*ambassador*/
.ambassador {
    background: var(--cream2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    padding: 0;
}

.ambassador .amb-left {
    background: url(../../assets/img/Manushi.webp?w=800&q=80) center 20% / cover;
    position: relative;
    min-height: 500px;
}

.ambassador .amb-right {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*End ambassador*/
.ambassador .amb-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--deep2);
    line-height: 1.6;
    margin: 24px 0 20px;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    font-weight: 300;
    border: 0 !important;
    border-left: 2px solid var(--gold) !important;
    padding-left: 24px;
    font-weight: 300;
    border-radius: 0;
    background-color: transparent
}

.ambassador blockquote:before,
.ambassador blockquote:after {
    display: none !important;
    background-color: transparent
}

.ambassador .amb-cite {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/*About us*/
.philosophy {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.philo-left {
    padding: 120px 80px 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philo-right {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: url(https://images.unsplash.com/photo-1448630360428-65456885c650?w=800&q=80) center / cover;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 48px;
}

.pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--cream3);
    line-height: 1;
    min-width: 50px;
}

.pillar-content h4 {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--deep2);
    margin-bottom: 6px;
}

.pillar-content p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.philo-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 26, .3), transparent);
}

.philo-right-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(14, 14, 26, .82);
    backdrop-filter: blur(8px);
    padding: 28px 32px;
    border-left: 2px solid var(--gold);
}

.philo-right-overlay p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}

.philo-right-overlay cite {
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--gold);
    margin-top: 10px;
    display: block;
    font-style: normal;
}

/*End About us*/

.project-hero {
    background: var(--deep);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    min-height: 90vh;
}

.project-hero-left {
    padding: 100px 60px 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=900&q=80) center / cover;
    position: relative;
}

.project-hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 26, .95) 0%, rgba(14, 14, 26, .7) 100%);
}

.project-hero-right {
    background: var(--cream);
    color: var(--text-dark);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.project-hero-left > * {
    position: relative;
    z-index: 1;
}

.loc-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--section-light);
    border-left: 2px solid var(--gold);
}

.loc-icon {
    font-size: 16px;
    color: var(--gold);
    min-width: 20px;
    margin-top: 1px;
}

.loc-text h5 {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--deep2);
    margin-bottom: 0;
}

.loc-text p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 300;
    margin-bottom: 0;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--cream3);
    margin-top: 40px;
}

.project-stat {
    background: var(--cream);
    padding: 28px 24px;
    border: none;
}

.project-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--deep2);
}

.project-stat-lbl {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 300;
}

.amenity-card {
    background: var(--deep2);
    padding: 36px 28px;
    transition: background .3s;
    border: 1px solid rgba(200, 169, 122, .08);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200, 169, 122, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 18px;
}

.amenity-card h4 {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.amenity-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin-bottom: 0;
}

.amenity-card ul li {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    padding-left: 12px;
    position: relative;
}

.amenity-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.plot-table {
    width: 100%;
    border-collapse: collapse;
}

.plot-table thead tr {
    background: var(--deep2);
}

.plot-table thead th {
    padding: 9px 24px;
    text-align: left;
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.plot-table tbody tr {
    background: var(--white);
    border-bottom: 1px solid var(--cream3);
    transition: background .2s;
}

.plot-table tbody td:first-child {
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

.plot-table td,
.plot-table th {
    border: 0;
}

.plot-table tbody td {
    padding: 15px 24px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 300;
}

.plot-table .tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--cream);
    color: var(--muted);
    font-weight: 400;
    line-height: 2;
}

.plot-table tbody td.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--deep2);
}

.plot-table tbody tr:hover {
    background: var(--cream2);
}

.legal-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
}

.legal-item .legal-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--deep2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
}

.legal-item strong {
    display: block;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--deep2);
    font-weight: 500;
    margin-bottom: 2px;
}

.legal-item p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

.testimonial-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(200, 169, 122, .12);
    padding: 36px 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(200, 169, 122, .15);
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin-top: 20px;
    font-weight: 300;
}

.testimonial-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-style: normal;
}

.testimonial-card cite .dot {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.testimonial-card cite span {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/*?sticky Menu*/
.mob-action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #7BA05B;
    color: #fff;
    box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, .4);
    z-index: 1030;
    background: linear-gradient(90deg, #7BA05B -11.19%, #4F6F3C 99.51%);
}

.mob-action .nav-item {
    padding: 5px 0;
    text-align: center;
    font-size: 12.5px;
    width: 49%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* display: none; */
}

.mob-action .nav-item:not(:last-child) {
    border-right: 1px solid #ffffff;
}

.mob-action .nav-item span {
    font-size: 14px;
    margin-right: 5px;
}
.fixed-call-btn {
  width: 50px;
  align-items: center;
  color: var(--gold);
  animation: 2s infinite zoom-in-zoom-out;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid var(--gold);
    height: 50px;
  background: #fff;
  z-index: 9;
    border-radius: 100%;
  display: flex;
  justify-content: center;
  font-size: 24px;
  position: fixed;
}
@keyframes zoom-in-zoom-out {
    0%,100% {
        transform: scale(1,1)
    }

    50% {
        transform: scale(1.2,1.2)
    }
}
/*End stick menu*/






/* Responsive*/
@media only screen and (max-width: 1399px) {}

@media (max-width: 1024px) {

    .philosophy,
    .project-hero,
    .ambassador {
        grid-template-columns: 1fr;
    }

    .philo-right,
    .amb-left {
        min-height: 400px;
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {

    .amenity-card,
    .testimonial-card,.blog-card {
        margin-bottom: 15px;
    }

    .dsdsdsds {
        justify-content: center
    }

    .ambassador .amb-left {
        order: 2;
    }

    .ambassador .amb-right {
        order: 1;
    }

    .blog-card.partner-card {
        margin-bottom: 20px;
    }

    .philo-left,
    .ambassador .amb-right,
    .project-hero-left,
    .project-hero-right {
        padding: 80px 15px;
    }

    .amb-right {
        padding: 80px 15px;
    }

    .blog-card {
        height: auto
    }

    .get-In-Touch .contact-item {
        margin-top: 25px;
    }

    .get-In-Touch .contact-item:last-child {
        margin-bottom: 50px
    }

    footer.footer-wrapper .footer-widget h3.widget_title {
        margin-top: 30px
    }

    .video-banner {
        height: 70vh;
    }

    .banner-text-container {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
        padding: 50px 0;background: var(--cream);
    }
    .hero-title,.hero-sub,.hero-stat-val{color: var(--deep2);}
    .btn-outline{color: var(--gold);border:1px solid rgb(123 160 91 / 30%);}
    .hero-label{line-height: 1.8;}
    .hero-stats {
        position: relative;
        right: unset;
        bottom: unset;
        z-index: 2;
        display: flex;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
    }

    .hero-actions {
        text-align: center
    }

    .hero-actions .btn-primary {
        margin-bottom: 20px
    }

    .newsletter-forms {
        margin-top: 30px;
    }

    .footer-layout11 .copyright-wrap {
        display: block !important;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 600px) {
    .fixed-call-btn {
    display: flex;
    bottom: 5rem;
  }
            .hideOnMobileView,
            .footer-layout11 .footer-cta-wrap,
            .scroll-top {
                display: none !important;
            }

            .th-btn,
            .th-btn.th-radius {
                border-radius: 4px;
                padding: 10px 15px;
                font-size: 14px;
                line-height: 16px;
                border-radius: 4px;
            }

            .th-btn.th-icon i {
                font-size: 14px;
            }
        }

@media only screen and (max-width: 575px) {}

@media only screen and (max-width: 375px) {
    .header-button .nav-cta {
        font-size: .6rem !important;
        letter-spacing: .1em;
        text-transform: uppercase;
        border-radius: 1px !important;
        cursor: pointer;
        font-weight: 400;
        padding: 8px 5px !important;
    }
}
