.master-plan {
    padding: 120px 0;
    background: #efe8dd;
}

.sub-title {
    color: #b88a54;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat-Regular';
}

.section-title2d {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    font-family: 'Montserrat';
}

.plan-card {
    position: relative;
    overflow: hidden;
    /* border-radius:15px; */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: .4s ease;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.plan-card img {
    width: 100%;
    /* height: 700px; */
    /* object-fit: cover; */
    display: block;
}

.plan-info {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 2;
}

.plan-info span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.overlayy {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

.plan-card:hover .overlayy {
    opacity: 1;
    visibility: visible;
}

.view-btnas {
    background: #846749;
    color: #fff;
    padding: 7px 30px;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(20px);
    transition: .4s ease;
    font-weight: 600;
}

.plan-card:hover .view-btnas {
    transform: translateY(0);
}

.view-btnas:hover {
    background: #000;
    color: #fff;
}

@media(max-width:768px) {

    .section-title2d {
        font-size: 24px;
    }

    .plan-card img {
        height: 100%;
    }

    .plan-info {
        top: 15px;
        right: 15px;
        padding: 10px;
    }


}


.ecdam-title {
    font-size: 30px;
    text-align: center;
    color: #152145;
    font-weight: 100;
}

.ecdam-title span {
    color: #c89a46;
    font-weight: 500;
}

.ecdam-sub {
    text-align: center;
    margin: 5px auto 50px;
    max-width: 700px
}

.ch-plans {
    margin-top: 50px;
}


:root {
    --bg-cream: #efe4d2;
    --card-cream: #f4ede0;
    --text-dark: #3a2f28;
    --text-muted: #4d423a;
    --accent-brown: #6b4a34;
    --plus-bg: #5c4436;
}

.highlights-section {
    background: #ffffff;
    padding: 120px 0px;
    /* max-width: 1900px; */
    margin: 0 auto;
}

.hero-photo {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border: 1px solid #846749a1;
    padding: 5px;
}

.info-card {
    background-color: #fff;
    display: flex;
    align-items: stretch;
    padding: 20px;
    position: relative;
    box-shadow: 0 6px 18px rgb(0 0 0 / 23%);
}

.info-card .icon-plus {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--plus-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.label-box {
    border: 1.5px solid var(--accent-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    margin: 0 26px 0 0;
    flex-shrink: 0;
}

.label-box span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-dark);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 6px;
}

.info-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #000000;
    font-weight: 600;
}

.info-list li.no-marker {
    margin-left: -14px;
}

.info-list li::before {
    content: "+ ";
    color: var(--text-muted);
}

.connectivity-note {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 4px;
}

.col-right-offset {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .highlights-section {
        padding: 30px 16px;
    }

    .hero-photo {
        min-height: 320px;
        margin-bottom: 24px;
    }

    .col-right-offset {
        margin-top: 0;
    }

    .info-card {
        padding: 22px;
        margin-bottom: 20px;
    }

    .label-box {
        margin-right: 16px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.menu-logo a img {
    width: 120px;
}

/* Desktop Banner - Default */
.desk-banner {
    display: block;
}

.mg-banner {
    display: none;
}

/* Mobile Banner (350px - 767px) */
@media (min-width: 350px) and (max-width: 767px) {
    .desk-banner {
        display: none;
    }

    .mg-banner {
        display: block;
    }

    .mg-banner img,
    .desk-banner img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.terrace-row {
    align-items: center;
    margin-bottom: 110px;
}

.terrace-row:last-child {
    margin-bottom: 0;
}

.terrace-img {
    width: 100%;
    /* height: 520px; */
    overflow: hidden;
    border-radius: 100px 0px;
}

/* 
.terrace-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

.terrace-content {
    padding: 0 40px;
}

.terrace-title {
    font-size: 54px;
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.terrace-title span {
    display: block;
    font-size: 30px;
    color: #846749;

    text-transform: capitalize;

    font-weight: 500;

}

.terrace-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terrace-list li {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    font-weight: 400;
}

.terrace-list li::before {
    content: "+ ";
    font-weight: 600;
}

/* Large Screens */

@media(min-width:1400px) {

    .container {
        max-width: 1600px;
    }

    .terrace-title {
        font-size: 64px;
    }

    .terrace-content {
        padding-left: 50px;
        padding-right: 0;
    }

}

/* Laptop */

@media(max-width:1199px) {
    nav ul {
        background: #846749;
    }

    .terrace-title {
        font-size: 44px;
    }

    .terrace-list li {
        font-size: 15px;
        line-height: 30px;
    }

    .terrace-img {
        height: 450px;
    }

}

/* Tablet */

@media(max-width:991px) {

    section {
        padding: 70px 0;
    }

    .terrace-row {
        margin-bottom: 70px;
    }

    .terrace-content {
        padding: 40px 20px 0;
    }

    .terrace-title {
        font-size: 42px;
    }

    .terrace-img {
        height: 420px;
    }

    .terrace-img {
        height: 516px;
        padding-top: 50px;
    }

}

/* Mobile */

@media(max-width:767px) {

    section {
        padding: 50px 0;
    }

    .terrace-row {
        margin-bottom: 55px;
    }

    .terrace-img {
        height: 260px;
        margin-top: 23px;
    }

    .terrace-content {
        padding: 30px 10px 0;
    }

    .terrace-title {
        font-size: 34px;
    }

    .terrace-list li {
        font-size: 14px;
        line-height: 28px;
    }

    .terrace-img img {
        border-radius: 50px 0px !important;
    }

    .terrace-img {
        border-radius: 50px 0px;
    }

}

.pad-lef-0 {
    padding-left: 0px;
}

.highlight-sec {
    background: #efebe8;
    padding: 120px 0px;
}

.margin-b {
    margin-bottom: 60px;
}

.info-list h5 {
    font-size: 25px !important;
    border-bottom: 1px solid #846749;
    width: fit-content;
    color: #846749;
}

.inner img {
    width: 60px;
}




.ame-section {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f3f3f3 100%);
    padding: 120px 0
}

.title {
    font-size: 64px;
    font-weight: 300;
    color: #184833
}

.title span {
    color: #b98b2b
}

.head {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 15px 0 50px
}

.line {
    flex: 1;
    max-width: 220px;
    height: 2px;
    background: #c39a3a
}

.sub {
    font-size: 24px
}

.carda {
    text-align: center;
    margin-bottom: 35px
}

.icon {
    width: 75px;
    height: 75px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 15px;
    font-size: 26px;
    color: #846749;
}

.carda h6 {
    font-size: 15px;
    line-height: 20px;
}

@media(max-width:768px) {
    .title {
        font-size: 42px
    }

    .head {
        display: block;
        text-align: center
    }

    .line {
        display: none
    }

    .sub {
        font-size: 18px
    }
}

.logon img {
    width: 54px;
}

.title {
    text-align: center;
    margin-bottom: 40px
}

.title h1 {
    font-size: 34px;
    color: #153d2d;
}

.spec-card {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.item {
    flex-direction: column;
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #ead9b4
}

.item:last-child {
    border-bottom: none
}

.icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #846749;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 3px solid #846749;
    flex: none;
}

.item h6 {
    font-weight: 700;
    color: #173d2e;
    margin-bottom: 8px
}

.footer {
    margin-top: 50px;
    background: #0f4735;
    color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 30px;
}

.footer .col {
    text-align: center
}

.container {
    position: relative;
    min-width: 1100px;
    display: flex;
    z-index: 1;
    flex-direction: column;
}

.spec-section {
    padding: 120px 0;
}

footer p {
    text-align: left;
}


.spec-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.item {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #ead9b4
}

.item:last-child {
    border-bottom: none
}

.icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #846749;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 3px solid #846749;
    flex: none;
}

.item h6 {
    font-weight: 700;
    color: #173d2e;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.item p {
    color: #555;
}

.footer {
    margin-top: 50px;
    background: #0f4735;
    color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 30px;
}

.footer .col {
    text-align: center
}

.container {
    position: relative;
    min-width: 1100px;
    display: flex;
    z-index: 1;
    flex-direction: column;
}

.spec-section {
    padding: 120px 0;
    background: #efebe8;
}

.terrace-img img {
    border: 1px solid #846749;
    padding: 6px;
    border-radius: 100px 0px;
}

.carda .icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #846749;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid #0000005c;
}

@media(max-width:1200px) {
    .sfft-contact-item p {
        margin: 0;
        color: var(--sfft-text-light);
        font-size: 13px;
    }

    footer .row {
        display: flex;
    }

    .container {
        position: relative;
        min-width: 100%;
    }

    .info-list li {
        font-size: 14px;
    }
}

@media(max-width:767px) {
    .carda h6 {
        font-size: 14px;
    }

    .highlight-sec {
        padding: 80px 0px;
    }

    footer .row {
        /* display: grid; */
        /* grid-template-columns: 140px 180px; */
        display: flex;
        /* width: 75%; */
        padding: 0;
    }

    .title h1 {
        font-size: 27px;
        color: #153d2d;
    }

    .terrace-list {

        text-align: center;
    }

    .terrace-title span {
        text-align: center;
    }

    .plan-card {
        margin-bottom: 20px;

    }

    .ecdam-title {
        font-size: 22px;
    }

    .ecdam-sub {
        font-size: 14px;
        text-align: center;
        margin: 5px auto 50px;
        max-width: 700px;
        line-height: 19px;
    }

    .ame-section {
        padding: 80px 0;
    }
}

:root {
    --sfft-brown-dark: #7a4a24;
    --sfft-brown-light: #b3703a;
    --sfft-cream: #ffffff;
    --sfft-icon-bg: #d98a52;
    --sfft-text-light: #f5e9dd;
}



/* ===== Footer Wrapper ===== */
.sfft-footer-section {
    position: relative;
    background: linear-gradient(135deg, #846749 0%, var(--sfft-brown-dark) 100%);
    padding-top: 70px;
    overflow: hidden;
}

/* Rounded cut-out corner top-left, like the screenshot */
/* .sfft-footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-bottom-right-radius: 110px;
} */

.sfft-footer-inner {
    position: relative;
    z-index: 2;
    padding: 0 40px 40px 40px;
    padding-bottom: 0;
}

/* ===== Logo Box ===== */
.sfft-logo-box {
    background: var(--sfft-cream);
    border-radius: 6px;
    padding: 20px 25px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sfft-logo-tag {
    font-style: italic;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.sfft-logo-graphic {
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.sfft-logo-graphic span {
    display: inline-block;
    width: 6px;
    border-radius: 2px;
}

.sfft-logo-brand {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 1px;
    color: #5a3a20;
    line-height: 1;
    margin-bottom: 4px;
}

.sfft-logo-sub {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #8a6a4a;
}

/* ===== Contact Column ===== */
.sfft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.sfft-icon-circle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sfft-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.sfft-contact-item p {
    margin: 0;
    color: var(--sfft-text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Links Column ===== */
.sfft-col-heading {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 22px;
}

.sfft-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sfft-links-list li {
    margin-bottom: 14px;
}

.sfft-links-list a {
    color: var(--sfft-text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color .2s ease;
}

.sfft-links-list a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===== Social Icons ===== */
.sfft-social-wrap {
    display: flex;
    gap: 14px;
}

.sfft-social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sfft-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: transform .2s ease;
}

.sfft-social-circle:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* ===== Bottom Bar ===== */
.sfft-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 30px;
    padding-top: 22px;
    text-align: center;
}

.sfft-bottom-bar p {
    color: var(--sfft-text-light);
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.sfft-bottom-bar strong {
    color: #fff;
}

.sfft-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.sfft-contact-item a:hover {
    color: #c89b5a;
}

@media (max-width:991px) {
    .margin-b {
        margin-bottom: 40px;
    }

    .sfft-footer-inner .col-lg-3,
    .sfft-footer-inner .col-lg-2 {
        margin-bottom: 40px;
    }
}

.d-f-c-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #0b5d3b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

.icon-circle {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #846749;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list h5 {
    margin-bottom: 15px;
}

.tool-container ul {
    margin: 0;
}

.about-section .block5 .overview-in td {
    padding: 8px 20px;
    border: 1px solid;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .nav-container .menu-logo img {
        padding-top: 10px;
        height: 100%;
        width: 22%;
    }

    .nav-container a {
        font-size: 13px;
        padding-right: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .nav-container ul {
        display: flex;
        justify-content: center;
        list-style: none;
        align-items: center;
        position: relative;
        left: -100px;
        padding: 0;
    }

    .menu-logo {
        width: 340px;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

@media(max-width:1499px) {


    .carda h6 {
        font-size: 14px;
        line-height: 20px;
    }
}


.finance-section {
    padding: 120px 0;
}

.finance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8a8a;
}

.finance-logo {
    font-weight: 700;
    color: #111;
}

.finance-right {
    display: flex;
    gap: 50px;
}

.finance-small {
    font-size: 11px;
    color: #999;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.finance-title {
    /* font-family:'Cormorant Garamond',serif; */
    font-size: 40px;
    line-height: 1;
    margin-bottom: 18px;
    font-weight: 500;
    color: #846749;
}

.finance-subtitle {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.finance-desc {
    color: #8d8d8d;
    max-width: 600px;
    font-size: 15px;
    line-height: 28px;
}

.finance-card {
    background: #efebe8;
    color: #fff;
    margin-top: 55px;
    border-radius: 20px;
}

.finance-stat {
    padding: 50px 30px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.finance-stat:last-child {
    border-right: none;
}

.finance-label {
    border-bottom: 1px solid #00000040;
    color: #000000 !important;
    font-size: 20px;
    margin-bottom: 10px;
    color: #846749;
    width: fit-content;
}

.finance-number {
    font-size: 30px;
    /* font-weight:700; */
    margin-bottom: 40px;
    font-family: 'Montserrat';
    color: #846749;
}

.finance-bottom {
    /* border-bottom: 1px solid #000;
                width: fit-content; */
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.mbb-1 {

    margin-bottom: 7px !important;
}

.finance-bottom strong {
    display: block;
    color: #846749;
    font-size: 30px;
    margin-top: 8px;
}

.finance-oval {
    width: 100%;
    /* height:190px; */
    overflow: hidden;
    border-radius: 300px;
    margin-bottom: 35px;
}

.finance-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.finance-image {
    overflow: hidden;
}

.finance-image img {
    width: 100%;
    transition: .5s;
}

.finance-image:hover img,
.finance-oval:hover img {
    transform: scale(1.08);
}

@media(max-width:991px) {

    .finance-title {
        font-size: 48px;
    }

    .finance-right {
        display: none;
    }

    .finance-oval {
        margin-top: 50px;
    }

    .finance-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .finance-stat:last-child {
        border-bottom: none;
    }

}

@media(max-width:767px) {

    .finance-section {
        padding: 50px 0;
    }

    .finance-title {
        font-size: 40px;
    }

    .finance-number {
        font-size: 36px;
    }

    .finance-bottom strong {
        font-size: 26px;
    }

}

.box {
    background: #fff;
    padding: 10px;
    transition: all .4s ease;
}

.inner {
    position: relative;
    height: 100%;
    border: 1px dashed #b89a7a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    overflow: hidden;
}

/* Hover Effect */
.box:hover .inner {
    border: 1px solid #b89a7a;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

/* Icon Animation */
.box:hover .main {
    transform: scale(1.15) rotate(8deg);
    color: #9d7651;
}

.main {
    transition: all .4s ease;
}

/* Heading Animation */
.inner h5 {
    transition: all .4s ease;
}

.box:hover h5 {
    /* letter-spacing:1.5px; */
    color: #9d7651;
}



.amen {
    background: #efebe8;
    ;
    padding: 120px 0
}

.sub {
    text-align: center;
    color: #9a7550;
    font-size: 18px
}

.title {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    margin: 0px 0 50px;
}

.box {
    background: #fff;
    padding: 10px;
    height: 250px
}

.inner {
    height: 100%;
    border: 1px dashed #b99b7b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative
}

.inner i.main {
    font-size: 40px;
    color: #846749;
    margin-bottom: 25px
}

.inner h5 {
    font-size: 15px !important;
    letter-spacing: 0px
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

.left {
    left: -20px
}

.right {
    right: -20px
}

@media(max-width:767px) {
    .title {
        font-size: 36px
    }

    .box {
        height: 220px
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1550px !important;
    }
}

.tool-container {
    background-color: #846749;
}

.tool-container .info {
    padding-right: 120px;
    background-color: #846749;
}

.tool-container .info div {
    background-color: #846749;
}

.nav-container .button {
    display: flex;
    background-color: #846749;
}

.container .contactForm .fromBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #846749;
}

.container .contactInfo {

    background: #846749;
}

.sidebar-from2 .call-action2 {
    background-color: #846749;
}

.call-action2 button {
    outline: none;
    border: none;
    background: #846749;
}


.finance-card {
    background-image: url(../skyline/pattern.png);
}



.gallery-section {
    padding: 150px 0;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-heading p {
    color: #777;
}

.mosaic-gallery {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 220px;

    gap: 18px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

    display: block;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

/* Layout */

.item1 {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
}

.item2 {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
}

.item3 {
    grid-column: 3 / 5;
    grid-row: 1;
}

.item4 {
    grid-column: 3 / 4;
    grid-row: 2;
}

.item5 {
    grid-column: 4 / 5;
    grid-row: 2;
}

.item6 {
    grid-column: 2 / 4;
    grid-row: 3;
}

@media(max-width:991px) {

    .mosaic-gallery {

        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 220px;

    }

    .item1,
    .item2,
    .item3,
    .item4,
    .item5,
    .item6 {

        grid-column: auto;

        grid-row: auto;

    }

}

@media(max-width:576px) {

    .mosaic-gallery {

        grid-template-columns: 1fr;

    }

}


.terrace-feature-list {
    margin-top: 35px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid #9d9d9d;
    border-radius: 50px;
    padding: 7px 17px;
    transition: .35s;
    cursor: pointer;
    height: 65px;

}

.feature-pill i {
    width: 34px;
    height: 34px;
    background: #846749;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .35s;
    flex-shrink: 0;
}

.feature-pill span {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    transition: .35s;
}

.feature-pill:hover {
    background: #b97d33;
    border-color: #b97d33;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.feature-pill:hover i {
    background: #fff;
    color: #b97d33;
    transform: rotate(360deg);
}

.feature-pill:hover span {
    color: #fff;
}

.dis-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner img {
    padding-bottom: 20px;
}

@media(max-width:991px) {

    .feature-pill {
        height: 60px;
        padding: 12px 18px;
    }

    .feature-pill span {
        font-size: 15px;
    }

}

@media(max-width:575px) {

    .feature-pill {
        height: auto;
        padding: 12px 16px;
    }

    .feature-pill span {
        font-size: 14px;
    }

}

.fec-sec-1 {
    background-image: url("../skyline/rose-2.png"), url("../skyline/rose.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0px top 0px, right 0px bottom 0px;
    background-size: 150px, 150px;
}


.fec-sec {
    background-image: url("../skyline/3.png"), url("../skyline/2.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left 0px top 0px, right 0px bottom 0px;
    background-size: 150px, 150px;
}

@media (max-width: 1499px) {
    .finance-number {
        font-size: 23px;
    }

    .finance-stat {
        padding: 40px 30px;
    }

    .box {
        background: #fff;
        padding: 10px;
        height: 230px;
    }

    .title {
        text-align: center;
        font-size: 33px;
        font-weight: 300;
        margin: 0px 0 43px;
    }
}




@media (max-width: 1299px) {
    .master-plan {
        padding: 80px 0;
    }

    .spec-section {
        padding: 80px 0;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .spec-section {
        padding: 8% 0;
    }

    .finance-number {
        font-size: 20px;

    }

    .finance-label {
        border-bottom: 1px solid #00000040;
        color: #000000 !important;
        font-size: 15px;

    }

    .finance-desc {
        color: #8d8d8d;
        max-width: 600px;
        font-size: 14px;
        line-height: 22px;
    }

    .finance-title {
        /* font-family: 'Cormorant Garamond', serif; */
        font-size: 32px;
    }

    .box {
        background: #fff;
        padding: 10px;
        height: 197px;
    }

    .feature-pill span {
        font-size: 11px;
    }

    .feature-pill {
        height: 55px;
    }

    .finance-stat {
        padding: 12px 30px;
    }

    .contact-form {
        padding: 100px;

    }

    .title {
        text-align: center;
        font-size: 35px;
        font-weight: 300;
        margin: 0px 0 25px;
    }

    .fec-sec-1 {
        background-size: 80px, 80px;
    }

    .fec-sec {

        background-size: 80px, 80px;
    }

    .sfft-contact-item p {
        margin: 0;
        color: var(--sfft-text-light);
        font-size: 13px;
    }

    .sfft-links-list a {
        font-size: 14px;
    }

}


@media (max-width: 991px) {
    .loc-img {
        padding-top: 40px;
    }

    .plan-card {
        margin-bottom: 20px;
    }

    .finance-title {
        text-align: center;
    }

    .finance-subtitle {
        text-align: center;
    }

    .finance-desc {
        text-align: center;
        color: #8d8d8d;
        max-width: 100%;
    }

    .sub {
        font-size: 14px;
    }
}



@media (max-width: 767px) {
    .contact2 {
        padding: 450px 0px;
        padding-top: 0px;
    }

    .finance-title {
        font-size: 28px;
        text-align: center;
    }

    .finance-desc {
        font-size: 15px;
        line-height: 24px;
        text-align: center;
    }

    .finance-subtitle {
        text-align: center;
    }

    .finance-number {
        font-size: 27px;
        text-align: center;
    }

    .finance-stat {
        padding: 35px 30px;
    }

    .finance-stat {
        display: flex;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        text-align: center;
        align-items: center;
        flex-direction: column;
    }

    .title {
        font-size: 28px;
    }

    .inner h5 {
        font-size: 13px !important;
        letter-spacing: 0px;
        text-align: center;
    }

    .amen {
        background: #efebe8;
        padding: 80px 0;
    }

    .box {
        height: 170px;
    }

    .sub {
        text-align: center;
        color: #9a7550;
        font-size: 14px;
    }

    .res-p-d {
        padding-bottom: 0;
    }

    .finance-stat {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .finance-number {
        font-size: 27px;
        margin-bottom: 0;
    }

}

@media (max-width: 567px) {
    .finance-number {
        font-size: 17px;
    }

    .finance-number {
        font-size: 15px;
    }

    .sfft-footer-inner {
        position: relative;
        z-index: 2;
        padding: 0;
    }

    .fec-sec-1 {
        background-size: 80px, 80px;
    }

    .fec-sec {

        background-size: 80px, 80px;
    }

}


.wrapper .form {
    background-color: #846749;
}

.finance-number i {
    font-size: 22px;
    color: #000;
}


/*============================
              CONTACT SECTION
        =============================*/

.ehc-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #efebe8 0%, #ffffff 100%);
}

.ehc-title {
    font-family: 'Montserrat';
    font-size: 42px;
    line-height: 1.05;
    color: #846749;
    font-weight: 700;
}

.ehc-title span {
    color: #bf7649;
}

.ehc-divider {
    width: 120px;
    height: 2px;
    background: #bf7649;
    margin: 28px 0;
    position: relative;
}

.ehc-divider:before,
.ehc-divider:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #bf7649;
    border-radius: 50%;
    top: -3px;
}

.ehc-divider:before {
    left: 0;
}

.ehc-divider:after {
    right: 0;
}

.ehc-description {
    font-size: 18px;
    color: #3c3c3c;
    line-height: 24px;
    max-width: 100%;
}

.ehc-contact-box {

    margin-top: 40px;
    background: #846749;
    border-radius: 20px;
    padding: 12px 30px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0%);

}

.ehc-contact-item {

    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);

}

.ehc-contact-item:last-child {
    border-bottom: none;
}

.ehc-icon {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #efebe8;
    color: #846749;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 18px;

}

.ehc-contact-item h6 {

    color: #efebe8;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 500;

}

.ehc-contact-item p {

    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;

}

/*============================
                RIGHT SIDE
        =============================*/

.ehc-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ehc-circle {

    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.ehc-circle img {

    width: 170px;
    margin-bottom: 15px;

}

.ehc-circle p {

    margin: 0;
    font-weight: 600;
    color: #222;
    text-align: center;
    line-height: 1.5;

}

.ehc-line {

    width: 120px;
    height: 1px;
    background: #d7c8b5;
    margin: 35px 0;
    position: relative;

}

.ehc-line:after {

    content: "◆";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    color: #bf7649;
    background: #f7f4ef;
    padding: 0 5px;
    font-size: 12px;

}

/*============================
               MOBILE
        =============================*/

@media(max-width:991px) {
    .ehc-section {
        padding: 80px 0;
    }

    .ehc-divider {
        left: 37%;
    }

    .ehc-title {
        font-size: 37px;
        text-align: center;
    }



    .ehc-contact-item p {

        font-size: 20px;

    }

    .ehc-right {

        margin-top: 50px;

    }

    .ehc-description {
        font-size: 15px;
        text-align: center;
    }

    .ehc-circle {
        width: 150px;
        height: 150px;
    }

    .ehc-circle img {
        width: 100px;
        margin-bottom: 15px;
    }

    .ehc-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .ehc-line {
        width: 69px;
    }

}

@media(max-width:576px) {

    .ehc-title {

        font-size: 30px;

    }

    .ehc-contact-box {

        padding: 15px;

    }

    .ehc-contact-item {

        align-items: flex-start;

    }

    .ehc-icon {

        width: 50px;
        height: 50px;
        font-size: 20px;

    }

    .ehc-contact-item p {

        font-size: 17px;

    }

    .ehc-circle {
        width: 150px;
        height: 150px;
    }

    .ehc-circle img {
        width: 100px;
        margin-bottom: 15px;
    }

    .ehc-right {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .ehc-line {
        width: 69px;
    }

    .ehc-description {

        font-size: 14px;

    }

    .ehc-contact-item p a {
        font-size: 14px;
    }
}

.ehc-contact-item p a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    margin-bottom: 5px;
}

.ehc-contact-item p a:hover {
    color: #d8b27b;
}