@font-face {
    font-family: 'Futura PT Demi';
    src: url('./fonts/FuturaPT-Demi.eot');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT Book';
    src: url('./fonts/FuturaPT-BookObl.eot');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Futura PT';
    src: local('./fonts/Futura PT Medium'), local('./fonts/FuturaPT-Medium'),
        url('./fonts/FuturaPT-Medium.ttf') format('truetype'),
        url('./fonts/FuturaPT-Medium.svg#FuturaPT-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #684C1B;
    --primary-border: #684C1B;
    --primary-bg: #684C1B;

    --white-color: #fff;
    --white-border: #fff;
    --white-bg: #fff;

    --black-color: #4C4C4C;
    --black-border: #4C4C4C;
    --black-bg: #4C4C4C;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    font-family: 'Futura PT Book';
}

a {
    text-decoration: none;
    color: inherit;
    outline: 0;
    box-shadow: none;
}

:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

ul li {
    list-style-type: none;
}

img {
    max-width: 100%;
}

.position-relate {
    position: relative;
}

/* font */
.futura-book {
    font-family: 'Futura PT Book';
}

.futura-demi {
    font-family: 'Futura PT Demi';
}

.futura-medium {
    font-family: 'Futura PT';
}

/* common container */
.section-bg {
    background-color: #EBE6DF;
}

.container {
    max-width: 1920px;
    width: 100%;
    padding: 0 60px;
    margin: auto;
}

/* common spacing */
.section-padding {
    padding: 60px 0;
}

.section-padding-t {
    padding-top: 60px;
}

.section-padding-b {
    padding-bottom: 60px;
}

/* common font style */
.kri-main-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kri-small-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.kri-main-para,
.kri-main-para p {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 400;
    line-height: 1.25;
}

/* common btn */
.krisumi-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    background: #A9262D;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-family: 'Futura PT';
    color: var(--white-color);

    width: 220px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Create inward curved notches using mask */
    -webkit-mask:
        radial-gradient(circle at 0 0, transparent 15px, black 15px) top left,
        radial-gradient(circle at 100% 0, transparent 15px, black 15px) top right,
        radial-gradient(circle at 0 100%, transparent 15px, black 15px) bottom left,
        radial-gradient(circle at 100% 100%, transparent 15px, black 15px) bottom right;
    -webkit-mask-size: 51% 51%;
    -webkit-mask-repeat: no-repeat;

    mask:
        radial-gradient(circle at 0 0, transparent 10px, black 10px) top left,
        radial-gradient(circle at 100% 0, transparent 10px, black 10px) top right,
        radial-gradient(circle at 0 100%, transparent 10px, black 10px) bottom left,
        radial-gradient(circle at 100% 100%, transparent 10px, black 10px) bottom right;
    mask-size: 51% 51%;
    mask-repeat: no-repeat;
}

.krisumi-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.krisumi-btn-white.krisumi-btn {
    background: var(--white-bg);
    color: #A9262D;
}

@media screen and (min-width:991px) {

    .krisumi-btn:hover {
        background: linear-gradient(88.8deg, #DACDBA 1.02%, #EBE6DF 95.95%);
        color: #A9262D;
    }

    .krisumi-btn:hover .btn-arrow svg path {
        fill: #A9262D;
    }

    .krisumi-btn:hover .btn-arrow {
        transform: translateX(4px);
        fill: #A9262D
    }

    .krisumi-btn-white.krisumi-btn:hover {
        background: #A9262D;
        color: var(--white-color);
    }

    .krisumi-btn-white.krisumi-btn:hover .btn-arrow svg path {
        fill: var(--white-color);
    }
}

/* ==================== common border css =============== */
.krisumi-border {
    --border-color: #CFC8BF;
    --stroke: 1px;
    --curve: 18px;

    position: relative;
}

/* Straight lines */
.krisumi-border .line {
    position: absolute;
    background: var(--border-color);
}

.krisumi-border .top,
.krisumi-border .bottom {
    height: var(--stroke);
    left: var(--curve);
    width: calc(100% - (var(--curve) * 2));
}

.krisumi-border .left,
.krisumi-border .right {
    width: var(--stroke);
    top: var(--curve);
    height: calc(100% - (var(--curve) * 2));
}

.krisumi-border .top {
    top: 0;
}

.krisumi-border .bottom {
    bottom: 0;
}

.krisumi-border .left {
    left: 0;
}

.krisumi-border .right {
    right: 0;
}

/* Curved corners */
.krisumi-border .corner {
    position: absolute;
    width: var(--curve);
    height: var(--curve);
    box-sizing: border-box;
}

/* Top Left */
.krisumi-border .tl {
    top: 0;
    left: 0;
    border-top: var(--stroke) solid transparent;
    border-left: var(--stroke) solid transparent;
    border-right: var(--stroke) solid var(--border-color);
    border-bottom: var(--stroke) solid var(--border-color);
    border-bottom-right-radius: var(--curve);
}

/* Top Right */
.krisumi-border .tr {
    top: 0;
    right: 0;
    border-top: var(--stroke) solid transparent;
    border-right: var(--stroke) solid transparent;
    border-left: var(--stroke) solid var(--border-color);
    border-bottom: var(--stroke) solid var(--border-color);
    border-bottom-left-radius: var(--curve);
}

/* Bottom Left */
.krisumi-border .bl {
    bottom: 0;
    left: 0;
    border-bottom: var(--stroke) solid transparent;
    border-left: var(--stroke) solid transparent;
    border-top: var(--stroke) solid var(--border-color);
    border-right: var(--stroke) solid var(--border-color);
    border-top-right-radius: var(--curve);
}

/* Bottom Right */
.krisumi-border .br {
    bottom: 0;
    right: 0;
    border-bottom: var(--stroke) solid transparent;
    border-right: var(--stroke) solid transparent;
    border-top: var(--stroke) solid var(--border-color);
    border-left: var(--stroke) solid var(--border-color);
    border-top-left-radius: var(--curve);
}


/* swiper button */
.swiper-btn {
    background-image: url("../images/icons/brown-swiper-btn.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 48px;
    display: flex;
    align-items: center;
}

.white-swiper-btn {
    background-image: url("../images/icons/white-swiper-btn.svg");
}

.swiper-arrow img {
    width: 12px;
    height: 9px;
    object-fit: contain;
    transition: all 0.3s;
}

.swiper-arrow {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.swiper-arrow:first-child {
    border-right: 1px solid var(--primary-border);
}

.white-swiper-btn .swiper-arrow:first-child {
    border-right: 1px solid var(--white-border);
}

.swiper-arrow:first-child:hover img {
    transform: translateX(-4px);
}

.swiper-arrow:hover img {
    transform: translateX(4px);
}

/* common swiper arrow with common btn */
.slider-btn-arrow-common {
    display: flex;
    gap: 23px;
    position: absolute;
    top: -17px;
    right: 60px;
}

/* main title */
.kri-main-title {
    display: flex;
    align-items: center;
    gap: 9px;
    text-align: center;
    justify-content: center;
    margin-bottom: 44px;
}

.kri-main-title img {
    width: 26px;
    height: 12px;
}


@media screen and (max-width:1199px) {

    .container {
        padding: 0 40px;
    }

    /* common swiper arrow with common btn */
    .slider-btn-arrow-common {
        right: 40px;
    }

}

@media screen and (max-width:1024px) {

    /* main title */
    .title-with-slider-arrow .kri-main-title {
        justify-content: flex-start;
        text-align: left;
    }
}

@media screen and (max-width:767px) {

    /* container */
    .container {
        padding: 0 24px;
    }

    /* common btn */
    .krisumi-btn {
        width: 100%;
    }

    .banner-text-area .krisumi-btn {
        width: 220px;
    }

    /* common font style */
    .kri-small-title {
        font-size: 18px;
    }

    /* main title */
    .kri-main-title {
        margin-bottom: 30px;
        justify-content: flex-start;
        font-size: 16px;
        text-align: left;
    }

    /* common spacing */
    .section-padding {
        padding: 40px 0;
    }

    .section-padding-t {
        padding-top: 40px;
    }

    .section-padding-b {
        padding-bottom: 40px;
    }

    /* common btn */
    .krisumi-btn {
        text-align: center;
        justify-content: center;
    }

    /* common swiper arrow with common btn */
    .slider-btn-arrow-common {
        position: static;
        margin-top: 30px;
        margin-right: 24px;
    }

    .slider-btn-arrow-common .common-swiper-arrow {
        display: none;
    }

}



/* header css start */
header {
    background-color: #fff;
    padding: 20px 0;
}

.burger-menu {
    display: none;
    align-items: center;
    gap: 13px;
}

.burger-menu span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1;
    text-transform: uppercase;
}

.burger-menu img {
    width: 18px;
    height: auto;
    display: block;
}

.mobile-logo {
    display: none;
}

.nav-bar {
    display: flex;
    gap: 57px;
    align-items: flex-end;
    justify-content: center;
}

.nav-item {
    transition: all 0.3s;
}

.nav-item a {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.12px;
    font-family: 'Futura PT Demi';
    transition: all 0.3s;
}

.nav-item:hover a.nav-item-a{color: #A9262D;}
.nav-dropdown{position: relative;}
.nav-dropdown-toggle{display: inline-flex; align-items: center; gap: 8px;}
.nav-dropdown-toggle::after{content: ""; width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.3s ease; position: relative; bottom: 2px;}
.nav-dropdown-menu{position: absolute; top: calc(100% + 18px); left: 50%; min-width: 220px; padding: 14px 0; background-color: #fff; border: 1px solid rgba(104, 76, 27, 0.18); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px); transition: all 0.3s ease; z-index: 5;}
.nav-dropdown-menu li{padding: 0 18px; transition: all 0.3s;}
.nav-dropdown-menu li + li{margin-top: 8px;}
.nav-dropdown-menu li a{display: block; padding: 10px 0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;}
.nav-dropdown-menu li:hover a{transform: translateX(-5px); color: #A9262D;}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{transform: rotate(225deg) translateY(-1px); bottom: 0;}

.header-logo a {
    width: 107px;
    height: 37px;
    margin: 0 25px;
    display: block;
}

.header-logo a img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

header .cross-icon {
    position: relative;
    display: none;
    color: var(--primary-color);
}

body.nav-open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    overscroll-behavior: none;
}

@media screen and (max-width:1024px) {

    .header-logo a {
        margin: 0;
    }

    .nav-bar {
        gap: 40px;
    }
}

@media screen and (max-width:767px) {

    .header-nav {
        position: fixed;
        top: 0;
        left: -110%;
        width: 100vw;
        height: 100vh;
        transition: all 0.3s;
        z-index: 9999;
    }

    .header-nav .overlay {
        display: block;
        background-color: #0000006f;
        position: absolute;
        width: 100vw;
        height: 100%;
    }

    .header-nav.active {
        left: 0;
        transition: all 0.3s;
    }

    .header-nav nav {
        background-color: #fff;
        width: 70%;
        height: 100vh;
        overflow: auto;
        overflow-x: hidden;
        position: relative;
    }

    header .cross-icon {
        display: flex;
        padding: 14px 24px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--primary-border);
    }

    header .cross-icon .menu-logo {
        display: inline-flex;
        width: 96px;
        height: auto;
    }

    header .cross-icon .menu-logo img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    header .cross-icon .close-menu-btn {
        background: transparent;
        border: 0;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 2px;
        cursor: pointer;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger-menu {
        display: flex;
        position: absolute;
        top: 50%;
        left: 24px;
        transform: translateY(-50%);
    }

    header .container {
        position: relative;
    }

    header {
        padding: 16px 0;
    }

    .nav-bar {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-bar .header-logo {
        display: none;
    }

    .nav-item {
        border-bottom: 1px solid var(--primary-border);
        width: 100%;
        padding: 20px 24px;
    }
    /* Changed: mobile Projects item behaves like accordion */
    /* .nav-dropdown{padding-bottom: 0;} */
    .nav-dropdown-toggle{width: 100%; justify-content: space-between;}
    .nav-dropdown-toggle::after{margin-left: auto;}
    .nav-dropdown-menu{position: static; min-width: 100%; padding: 0; margin-top: 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none;}
    .nav-dropdown.open .nav-dropdown-menu{display: block; transform: translateX(0) translateY(0);}
    .nav-dropdown:hover .nav-dropdown-toggle::after, .nav-dropdown:focus-within .nav-dropdown-toggle::after {transform: rotate(45deg) translateY(-2px) !important;}
    .nav-dropdown.open .nav-dropdown-toggle::after{transform: rotate(225deg) translateY(-1px) !important;}
    .nav-dropdown-menu li{padding: 0; border-top: 1px solid rgba(104, 76, 27, 0.15);}
    .nav-dropdown-menu li + li{margin-top: 0;}
    .nav-dropdown-menu li a{padding: 16px 10px; font-size: 12px; line-height: 1.4; white-space: wrap;}
}

/* header css end */


/* footer css start */
.footer-section {
    background-color: var(--primary-bg);
}

.footer-flower {
    position: absolute;
    top: -126px;
    right: 0;
}

.footer-flower img {
    width: 330px;
    height: auto;
    display: block;
}

.footer-section .kri-main-title {
    color: #fff;
    margin-bottom: 16px;
}

.footer-main-title {
    font-size: 36px;
    font-weight: 400;
    color: #EBE6DF;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.footer-form-area {
    max-width: 740px;
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
}

.footer-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
}

.footer-form-item input,
.footer-form-item select {
    font-size: 13px;
    font-weight: 400;
    color: #EBE6DF;
    border: 0;
    border-bottom: 1px solid #cfc8bf52;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
    width: 100%;
    padding: 12px 0;
}

.footer-form-item select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    line-height: 1.3;
    min-height: 44px;
    padding: 12px 24px 12px 0;
    -webkit-text-fill-color: #EBE6DF;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23EBE6DF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 10px 6px;
}

.footer-form-item select::-ms-expand {
    display: none;
}

.footer-form-item select option {
    color: var(--primary-color);
}

.footer-form-item input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #EBE6DF;
    font-family: 'Futura PT Book';
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.footer-submit-btn {
    grid-column: 1 /span 2;
    text-align: center;
    margin-top: 35px;
    position: relative;
}

.footer-submit-btn .submit-btn {
    cursor: pointer;
    margin: auto;
}

.footer-submit-btn .wpcf7-spinner{position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); margin: 0;}
.footer-submit-btn .wpcf7-response-output{width: max-content; margin: 20px auto; color: #fff;}

.footer-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-main-img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #00000033;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-main-img-text {
    width: 100%;
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.3;
    letter-spacing: 0.08em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 24px;
    text-transform: uppercase;
}

.footer-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin: 47px 0;
}

.menu-item a {
    font-size: 10px;
    color: #EBE6DF;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Futura PT';
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 40px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact-item img {
    width: 20px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-contact-item a {
    font-size: 20px;
    font-weight: 400;
    color: #EBE6DF;
    line-height: 1;
}

.footer-section .krisumi-border .line,
.footer-section .krisumi-border .corner {
    opacity: 40%;
}

.rights-links-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 32px;
}

.rights-item {
    font-size: 12px;
    font-weight: 400;
    color: #EBE6DF;
    line-height: 1;
    color: #EBE6DF;
    text-transform: capitalize;
    opacity: 50%;
    flex: 1;
}

.rights-item-group {
    text-align: center;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}

.social-link-a {
    font-size: 12px;
    color: #EBE6DF;
    font-weight: 400;
    line-height: 1;
}

.sticky-btn {
    position: fixed;
    bottom: 10px;
    right: 50px;
    z-index: 99;
}


@media screen and (max-width:1199px) {

    .footer-main-title {
        font-size: 30px;
    }

    .footer-flower img {
        width: 250px;
    }

    .footer-flower {
        top: -100px;
    }

    .footer-contact-item {
        gap: 10px;
    }

    .footer-contact-item a {
        font-size: 18px;
    }

    .footer-contact-item img {
        width: 17px;
    }
}

@media screen and (max-width:991px) {

    .rights-links-area {
        flex-wrap: wrap;
        gap: 30px 10px;
    }

    .rights-item {
        order: 2;
        flex: inherit;
    }

    .rights-item-group {
        text-align: right;
        order: 3;
        flex: inherit;
    }

    .social-links {
        order: 1;
        justify-content: center;
        flex: inherit;
        width: 100%;
    }

    .sticky-btn {
        bottom: 30px;
        right: 30px;
    }
}

@media screen and (max-width:767px) {

    .footer-flower {
        display: none;
    }

    .footer-main-title {
        font-size: 26px;
        margin-bottom: 28px;
        text-align: left;
    }

    .footer-form {
        display: block;
    }

    .footer-form-item {
        margin-bottom: 18px;
    }

    .footer-form-area {
        margin-bottom: 33px;
    }

    .footer-menu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        margin: 33px 0 40px;
    }

    .menu-item {
        width: 100%;
    }

    .menu-item a {
        padding: 20px 0;
        border-bottom: 1px solid #cfc8bf52;
        display: block;
    }

    .menu-item:first-child a {
        padding-top: 0;
    }

    .menu-item:last-child a {
        padding-bottom: 0;
        border: 0;
    }

    .footer-contact {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding: 40px 28px;
    }

    .footer-contact-item {
        padding-bottom: 24px;
        border-bottom: 1px solid #cfc8bf52;
        width: 100%;
    }

    .footer-contact-item:last-child {
        border: 0;
        padding: 0;
    }

    .sticky-btn {
        bottom: 20px;
        right: 20px;
    }

    .footer-main-img img{aspect-ratio: 1.1/1; object-fit: cover; object-position: left;}
}

@media screen and (max-width:480px) {

    .rights-links-area {
        gap: 20px;
    }

    .rights-item {
        width: 100%;
        text-align: center !important;
    }
}

/* footer css end */


/* banner css start */
.banner-section {
    overflow: hidden;
}

.banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-btn .krisumi-btn {
    background: var(--white-bg);
    color: #A9262D;
}

.banner-btn .krisumi-btn:hover {
    background: #A9262D;
    color: var(--white-color);
}

.banner-btn .krisumi-btn:hover .btn-arrow svg path {
    fill: var(--white-color);
}

.banner-slide {
    position: relative;
}

.banner-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.4;
    letter-spacing: 0.08em;
    position: absolute;
    bottom: 37px;
    left: 95px;
    max-width: 420px;
    text-transform: uppercase;
}

.banner-btn {
    position: absolute;
    /* right: 193px; */
    right: 75px !important;
    bottom: 37px;
}



.banner-slider {
    position: relative;
}

.banner-slider .common-swiper-arrow {
    position: absolute;
    right: 75px;
    bottom: 37px;
    z-index: 1;
}

.banner-slide .banner-img {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-slide .banner-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(169, 38, 45, 0) 60.75%, rgba(169, 38, 45, 0.9) 98.3%);
}

.banner-title-logo {width: 160px; height: auto; object-fit: contain; margin-bottom: 7px; position: relative; left: -9px;}


@media screen and (max-width:1199px) {

    .banner-title {
        font-size: 20px;
        left: 60px;
        max-width: 330px;
    }

    .banner-slider .common-swiper-arrow {
        right: 50px;
    }

    .banner-btn {
        right: 50px;
    }
}

@media screen and (max-width:991px) {

    .banner-title {
        position: static;
    }

    .banner-btn {
        position: static;
    }

    .banner-text-area {
        position: absolute;
        bottom: 30px;
        left: 40px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .banner-slider .common-swiper-arrow {
        right: 40px;
        bottom: 30px;
    }
}

@media screen and (max-width:767px) {

    .banner-text-area {
        left: 24px;
    }

    .banner-slider .common-swiper-arrow {
        right: 24px;
    }

    .banner-title-logo {width: 125px; left: -6px;}
}

@media screen and (max-width:375px) {

    .banner-text-area {
        bottom: 100px;
    }

    .banner-title {
        font-size: 18px;
    }
}

/* banner css end */


/* overview css start */
.overview-section .kri-main-title {
    margin-bottom: 17px;
}

.overview-section .kri-main-para {
    max-width: 444px;
    margin: auto;
    text-align: center;
}

.overview-rear-text{font-size: 14px; font-weight: 400; color: #4C4C4C; line-height: 1.2; margin-top: 25px; text-align: center; text-transform: uppercase; letter-spacing: 0.08em;}
.overview-rear-text span{font-weight: 500;}

.overview-section .section-title {
    margin-bottom: 30px;
}

.overview-section .krisumi-border {
    width: 100%;
}

.overview-wrapper {
    padding: 20px;
}

.overview-inner-wrapper {
    display: flex;
    align-items: center;
}

.overview-item {
    width: 33.33%;
    text-align: center;
    padding: 9px;
    font-size: 14px;
    font-weight: 400;
    color: #9D8D72;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    height: auto;
    position: relative;
}

.overview-item::after {
    content: "";
    width: 1px;
    height: 38px;
    border-right: 1px solid #CFC8BF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.overview-item span {
    font-weight: 500;
}

.overview-item:last-child::after {
    border: 0;
}

@media screen and (max-width:991px) {

    .overview-wrapper {
        padding: 15px;
    }
}

@media screen and (max-width:767px) {

    .overview-wrapper {
        padding: 10px 40px;
    }

    .overview-item::after {
        width: 100%;
        height: 1px;
        border-right: 0;
        border-bottom: 1px solid #CFC8BF;
        transform: translate(0);
        top: inherit;
        bottom: 0;
        left: 0;
    }

    .overview-item {
        width: 100%;
        text-align: left;
        padding: 20px 0;
    }

    .overview-inner-wrapper {
        flex-direction: column;
    }

    .overview-section .kri-main-para {
        text-align: left;
        margin-left: 0;
    }
    .overview-rear-text{text-align: left; line-height: 1.4;}
}

@media screen and (max-width:400px) {

    .overview-wrapper {
        padding: 10px 25px;
    }
}

/* overview css end */


/* key highlight css start */
.highlight-bird {
    position: absolute;
    top: -58px;
    right: 60px;
}

.highlight-bird img {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

.highlight-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item-a {
    border-right: 1px solid #CFC8BF;
    padding: 60px 10px;
    text-align: center;
}

.highlight-item-a.last-col {
    border-right: 0;
}

.highlight-item-a.not-last-row {
    border-bottom: 1px solid #CFC8BF;
}

.highlight-icon img {
    width: 98px;
    height: 98px;
    display: block;
    margin: auto;
}

.highlight-title {
    padding: 30px 0 12px;
    color: var(--primary-color);
    line-height: 1.2;
}

.highlight-item-a .kri-main-para {
    max-width: 230px;
    margin: auto;
}

@media screen and (max-width:1199px) {

    .highlight-bird {
        right: 40px;
    }
}

@media screen and (max-width:1024px) {

    .highlight-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item-a {
        padding: 40px 10px;
    }
}

@media screen and (max-width:767px) {

    .highlight-bird {
        right: 24px;
        top: -30px;
    }

    .highlight-bird img {
        width: 114px;
    }
}

@media screen and (max-width:600px) {

    .highlight-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .highlight-title {
        font-size: 18px;
    }
}

@media screen and (max-width:400px) {

    .highlight-bird {
        right: 24px;
    }

    .highlight-bird img {
        width: 90px;
    }
}

/* key highlight css end */


/* gallery css start */
.gallery-slider {
    overflow: hidden;
}

.gallery-slide {
    height: auto;
}

.gallery-slide-inner-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: 100%;
}

.gallery-slide-item-a {
    height: 100%;
}

.gallery-slide-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.gallery-slide-img>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 26, 10, 0) 75.99%, #231A0A 100%);
}

.gallery-slide-img:hover>img {
    transform: scale(1.04);
}

.gallery-text {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    color: var(--white-color);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zoom-img img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}

.gallery-slide-pair {
    width: min(100%, 600px);
}

.gallery-slide-pair .gallery-slide-item-a:first-child {
    height: 100%;
}

.gallery-slide-pair .gallery-slide-item-a:last-child {
    height: 100%;
}

.gallery-slide-tall {
    height: 100%;
}

.gallery-mobile-hide {
    display: block;
}

.gallery-slide-mobile-only {
    display: none;
}

.gallery-zoom-img {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-zoom-img.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-zoom-overlay {
    position: absolute;
    inset: 0;
}

.gallery-zoom-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    height: min(100%, 90vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-inner img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.gallery-zoom-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-zoom-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}



@media screen and (min-width:768px) {

    .gallery-slider .swiper-wrapper {
        align-items: stretch;
    }

    .gallery-slide {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width:767px) {

    .gallery-slider {
        margin-right: -24px;
    }

    .gallery-slide-pair .gallery-slide-item-a:first-child,
    .gallery-slide-pair .gallery-slide-item-a:last-child,
    .gallery-slide-tall {
        height: 100%;
    }

    .gallery-mobile-hide {
        display: none;
    }

    .gallery-slide-mobile-only {
        display: block;
    }

    .gallery-text {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .gallery-zoom-img {
        padding: 16px;
    }

    .gallery-zoom-close {
        top: 0px;
        right: 0px;
    }
}

/* gallery css end */


/* future video css start */
.future-video-img {
    position: relative;
}

.future-video-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 14/5;
}

.future-video-icon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 36px;
    padding: 24px 0;
}

.future-video-icon-text .play-icon img {
    width: 32px;
    height: 32px;
    display: block;
    margin: auto;
    cursor: pointer;
}

.play-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.play-icon img {
    position: relative;
    z-index: 2;
}

/* first ring */
.play-icon::before,
.play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--white-border);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
}

/* animation 1 */
.play-icon::before {
    animation: pulseRing 1.5s infinite;
}

/* animation 2 (delay ke sath) */
.play-icon::after {
    animation: pulseRing 1.5s infinite;
    animation-delay: 0.75s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.future-video-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    width: 100%;
}

.furure-video {
    display: none;
    aspect-ratio: 14/5;
    width: 100%;
    height: 100%;
    position: relative;
}

.furure-video .cross-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.furure-video .cross-icon svg path {
    fill: #000;
}

.furure-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.furure-video .furture-video-mobile {
    display: none;
}

.future-video-wrapper.active .future-video-img {
    display: none;
}

.future-video-wrapper.active .furure-video {
    display: block;
}

@media screen and (max-width:767px) {

    .future-video-img img {
        aspect-ratio: 1/1;
    }

    .furure-video {
        aspect-ratio: 1/1;
    }

    .furure-video .furture-video-mobile {
        display: block;
    }

    .furure-video .furture-video-desktop {
        display: none;
    }

    .furure-video .cross-icon {
        width: 30px;
        height: 30px;
    }

    .furure-video .cross-icon svg {
        width: 20px;
        height: 20px;
    }

    .future-video-text {
        font-size: 20px;
    }

    .future-video-icon-text {
        gap: 27px;
    }
}

/* future video css end */


/* home design css start */
.home-design-slide {
    position: relative;
}

.home-design-slide .home-design-img {
    position: relative;
}

.home-design-slider {
    padding-bottom: 30px;
    overflow: hidden;
}

.home-design-slide picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-design-slide picture::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(35, 26, 10, 0) 75.99%, #231A0A 100%);
}

.home-design-slide-title {
    position: absolute;
    bottom: 40px;
    left: 50px;
}

.home-design-data-table {
    background: var(--white-bg);
    padding: 23px 30px;
    position: absolute;
    bottom: -30px;
    right: 30px;
}

.design-table-title {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.design-data-table {
    width: 100%;
    border-collapse: collapse;
}

.design-data-table th,
.design-data-table td {
    border: 1px solid #D2CCC2;
    padding: 18px;
    text-align: center;
    width: 162px;
}

.design-data-table td {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.design-data-table th {
    font-family: 'Futura PT';
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.08em;
}

@media screen and (max-width:991px) {

    .home-design-data-table {
        position: relative;
        bottom: inherit;
        right: inherit;
        margin: auto;
        margin-top: -30px;
        width: 90%;
    }

    .home-design-slide-title {
        bottom: 55px;
        left: 30px;
    }

    .home-design-slider {
        padding: 0;
        margin-right: -40px;
    }
}

@media screen and (max-width:767px) {

    .home-design-data-table {
        padding: 20px 25px;
    }

    .design-data-table th,
    .design-data-table td {
        padding: 16px 5px;
    }

    .home-design-slider {
        margin-right: -24px;
    }
}

/* home design css end */


/* floorplan css start */
.floorplan-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.floorplan-left {
    width: 250px;
}

.floorplan-tab {
    font-size: 13px;
    font-weight: 400;
    color: #9D8D72;
    line-height: 1;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.floorplan-tab.active::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-color: var(--primary-bg);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
}

.floorplan-tab.active {
    color: var(--primary-color);
}

.floorplan-right {
    width: calc(100% - 270px);
}

.floorplan-tab-slider {
    display: none;
    overflow: hidden;
}

.floorplan-tab-slider.active {
    display: block;
}

.floorplan-slide {
    background-color: #EBE6DF;
    padding: 30px 0 20px;
    height: auto;
}

.floorpan-slide-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
    padding-top: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.floorplan-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floorplan-img{cursor: pointer;}
.floorplan-popup{position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; background-color: rgba(0, 0, 0, 0.75); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 9999;}
.floorplan-popup.active{opacity: 1; visibility: visible; pointer-events: auto;}
.floorplan-popup-overlay{position: absolute; inset: 0;}
.floorplan-popup-dialog{position: relative; width: auto; max-height: 100%; background-color: #FFFFFF; padding: 56px 24px 24px; overflow: auto; z-index: 1;}
.floorplan-popup-image img{display: block; width: 100%; height: auto; object-fit: contain;}
.floorplan-popup-close{position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; padding: 0;}
.floorplan-popup-close span{position: absolute; top: 17px; left: 7px; width: 22px; height: 2px; background-color: var(--primary-color);}
.floorplan-popup-close span:first-child{transform: rotate(45deg);}
.floorplan-popup-close span:last-child{transform: rotate(-45deg);}
body.floorplan-popup-open{overflow: hidden;}


@media screen and (max-width:1199px) {

    .floorplan-section .kri-main-title {
        justify-content: flex-start;
    }
}

@media screen and (max-width:767px) {

    .floorplan-wrapper {
        flex-direction: column;
        margin-bottom: 0;
    }

    .floorplan-left {
        width: 100%;
    }

    .floorplan-right {
        width: 100%;
    }

    .floorplan-tab-slider {
        margin-right: -24px;
    }
}

/* floorplan css end */


/* amenities section css start */
.amenities-section .highlight-bird {
    left: 50px;
    top: -60px;
}

.amenities-section .highlight-bird img {
    width: 190px;
    height: auto;
}

.amenities-btn {
    margin-top: 30px;
    text-align: center;
    display: none;
}

.amenity-hide {
    display: none;
}

.amenities-btn .expanded .btn-arrow {
    rotate: 180deg;
}

@media screen and (max-width:1199px) {

    .amenities-section .highlight-bird {
        left: 40px;
        top: -50px;
    }

    .amenities-section .highlight-bird img {
        width: 150px;
        height: auto;
    }
}

@media screen and (max-width:1024px) {

    .amenities-btn {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width:767px) {

    .amenities-section .highlight-bird {
        display: none;
    }
}

/* amenities section css end */


/* specification css start */
.specification-slider {
    overflow: hidden;
    margin-right: -60px;
}

.specification-img {
    height: auto;
}

.specification-img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(35, 26, 10, 0) 75.99%, #231A0A 100%);
    z-index: 1;
}

.specification-img img {
    width: 100%;
    height: 100%;
}

.specification-img .kri-small-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.speci-slide-item li {
    list-style-type: disc;
}

.speci-slide-item {
    padding-inline-start: 20px;
    margin-top: 20px;
}

@media screen and (max-width:1199px) {

    .specification-slider {
        margin-right: -40px;
    }
}

@media screen and (max-width:1199px) {

    .specification-section .kri-main-title {
        justify-content: flex-start;
    }
}

@media screen and (max-width:767px) {

    .specification-slider {
        margin-right: -24px;
    }
}

/* specification css end */


/* location css start */
.location-wrapper {
    display: flex;
    gap: 30px;
}

.location-left {
    width: 300px;
}

.location-right {
    width: calc(100% - 330px);
}

.location-benefit {
    width: 100%;
    border: 1px solid #D2CCC2;
}

.location-bene-a {
    padding: 18px 9px;
    border-bottom: 1px solid #D2CCC2;
    display: flex;
    gap: 12px;
    align-items: center;
}

.location-bene-a:last-child {
    border: 0;
}

.location-bene-a img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.location-bene-a .location-bene-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.1;
    width: calc(100% - 24px);
}

.location-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.location-map {
    width: 100%;
    display: flex;
    justify-content: center;
}

.location-map__container {position: relative; width: 100%; max-width: 1000px; height: 600px; overflow: hidden;}
.location-map__overlay{position: absolute; inset: 0; pointer-events: none; z-index: 1;}
.location-map__marker{position: absolute; transform: translate(-50%, -100%); background: transparent; border: none; display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; z-index: 2; transition: transform 0.2s ease;}
.location-map__marker:hover, .location-map__marker:focus-visible, .location-map__marker.is-active-marker{transform: translate(-50%, -105%) scale(1.05); outline: none; z-index: 5;}
.location-map__marker.is-active-marker .location-map__icon path{fill: #B22A2A;}
.location-map__marker.is-active-marker .location-map__icon circle{fill: #B22A2A;}
.location-map__icon{width: 24px; height: 34px; filter: drop-shadow(0 4px 6px rgba(106, 78, 35, 0.2));}
.location-map__icon path{fill: var(--primary-bg);}
.location-map__icon circle{fill: var(--primary-bg);} 

.location-map__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black-color);
    white-space: nowrap;
    text-shadow: 2px 2px 0 var(--map-bg), -2px -2px 0 var(--map-bg), 2px -2px 0 var(--map-bg), -2px 2px 0 var(--map-bg);
}

.location-card {
    position: absolute;
    width: 240px;
    background: var(--white-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(106, 78, 35, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: translate(-50%, calc(-100% - 10px));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

/* FLICKER FIX: pointer-events none hi rakha gaya hai */
.location-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, calc(-100% - 24px));
    pointer-events: none;
}

.location-card__img-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
}

.location-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.location-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.location-card__badge {
    background: #F2EBE2;
    color: #222222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.location-card.is-active {opacity: 1; visibility: visible; pointer-events: none; transform: translate(-50%, calc(-100% - 20px));}
.location-card.is-active.card-bottom {transform: translate(-50%, 20px);}
.location-card.is-active.card-bottom.card-left {transform: translate(-20%, 0) !important;}
.location-card.is-active.card-left {transform: translate(-20%, -216px) !important;}
.location-card.card-bottom {transform: translate(-80%, 0px) !important;}
.location-map__label br:last-child{display: none;}

@media (max-width: 768px) {

    .location-map__container{height: 500px; border-radius: 12px;} 
    .location-map__marker{top: var(--top-mobile) !important; left: var(--left-mobile) !important;}
    .location-card{width: 180px; max-width: 85vw; border-radius: 10px;} 
    .location-card__content{padding: 10px;}
    .location-card__img-wrapper{height: 120px;} 

    .location-card__title {
        font-size: 14px;
    }

    .location-card__badge {
        padding: 5px 12px;
        font-size: 11px;
    }

    .location-map__label {
        font-size: 9px;
    }

    .location-map__label br:last-child{display: block;}

    .location-card.is-active {
        /* Mobile par transition aur smooth karne ke liye */
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
        max-width: 85vw;
        /* Screen se bada na ho */
    }

    .location-card.card-bottom {transform: translate(-50%, 0px) !important; }
}


@media screen and (max-width:991px) {

    .location-wrapper {
        flex-direction: column;
    }

    .location-left {
        width: 100%;
    }

    .location-right {
        width: 100%;
    }
}

/* location css end */


/* sustain css start */
.sustain-section .highlight-bird img {
    width: 350px;
}

.sustain-section .highlight-bird {
    left: 0;
    top: -160px;
}

.sustain-section .highlight-wrapper {
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width:1024px) {

    .sustain-section .highlight-bird img {
        width: 280px;
    }

    .sustain-section .highlight-bird {
        left: 0;
        top: -130px;
    }
}

@media screen and (max-width:991px) {

    .sustain-section .highlight-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:767px) {

    .sustain-section .highlight-bird img {
        width: 200px;
    }

    .sustain-section .highlight-bird {
        right: 0;
        left: inherit;
        top: -80px;
    }
}

@media screen and (max-width:450px) {

    .sustain-section .highlight-bird img {
        width: 150px;
    }

    .sustain-section .highlight-bird {
        right: 0;
        left: inherit;
        top: -70px;
    }
}



/* sustain css end */


/* crafted excellence css start */
.crafted-excellence-section .krisumi-border {
    width: 100%;
}

.crafted-excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crafted-excellence-item {
    padding: 32px 10px 32px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #9D8D72;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    border-right: 1px solid #CFC8BF;
    border-bottom: 1px solid #CFC8BF;
}
.crafted-excellence-item span{font-weight: 500;}

.crafted-excellence-item:nth-child(2n) {
    border-right: 0;
}

.crafted-excellence-item:nth-last-child(-n+2) {
    border-bottom: 0;
}
.crafted-sub-head {font-size: 20px; font-weight: 400; color: #4C4C4C; line-height: 1.1; margin: 20px 0 25px; text-align: center;}
.crafted-excellence-section .kri-main-title{margin-bottom: 0 !important;}


@media screen and (max-width:1199px) {

    .crafted-excellence-item {
        padding: 26px 30px;
    }
}

@media screen and (max-width:767px) {

    .crafted-excellence-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .crafted-excellence-item {
        padding: 20px 16px;
        border-right: 0;
        border-bottom: 1px solid #CFC8BF;
        font-size: 13px;
    }

    .crafted-excellence-item:last-child {
        border-bottom: 0;
    }
    .crafted-excellence-item:nth-last-child(-n+2){border-bottom: 1px solid #CFC8BF;}
    .crafted-sub-head{font-size: 16px; text-align: left;}
}

/* crafted excellence css end */


/* faq css start */
.faq_specility{display: none;}
.faq-wrapper {
    display: flex;
    gap: 200px;
    padding-bottom: 100px;
}

.aq-area-a {
    width: 50%;
}

.faq-item {
    padding: 17px 0;
    border-top: 1px solid #C8C2B8;
}

.faq-item:last-of-type {
    border-bottom: 1px solid #C8C2B8;
}

.faq-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.faq-title {
    display: flex;
    gap: 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    transition: all 0.3s;
    text-transform: capitalize;
}

.faq-title .faq-num {
    opacity: 40%;
}

.faq-content .kri-main-para {
    padding: 12px 0 50px 30px;
}

.faq-content {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
    max-width: 80%;
}

.faq-item.active .faq-title {
    font-size: 16px;
    font-weight: 500;
}

.faq-item.active .faq-arrow {
    rotate: 180deg;
}

.faq-item.active .faq-content {
    opacity: 1;
    height: max-content;
    visibility: visible;
    transition: all 0.3s;
}

.faq-item.active .faq-title .faq-num {
    opacity: 100%;
}

@media screen and (max-width:1400px) {

    .faq-wrapper {
        gap: 120px;
    }
}

@media screen and (max-width:1199px) {

    .faq-wrapper {
        gap: 60px;
    }

    .faq-content .kri-main-para {
        padding-bottom: 20px;
    }
}

@media screen and (max-width:991px) {

    .faq-wrapper {
        flex-direction: column;
        padding-bottom: 80px;
    }

    .faq-area-a {
        width: 100%;
        flex: inherit;
    }

    .faq-wrapper {
        gap: 0px;
    }

    .faq-content .kri-main-para {
        padding-bottom: 20px;
    }

    .faq-area-a:first-child .faq-item:last-child {
        border-bottom: 0;
    }
}

@media screen and (max-width:767px) {

    .faq-wrapper {
        padding: 0;
    }

    .faq-content .kri-main-para {
        width: 100%;
    }

    .footer-section {
        padding-bottom: 80px;
    }
}


.sticky-btn .krisumi-btn {
    width: 180px;
}


.sticky-btn .btn-arrow {
    transform: rotate(-90deg);
}

/* faq css end */

@media screen and (max-width:767px) {
    .footer-section {
        padding-bottom: 80px;
    }
}

.sticky-btn .btn-arrow {
    transform: rotate(-90deg);
}