* {
    margin: 0px;
    font-family: 'DM MONO';
}

body {
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}
b {
    font-family: 'Cormorant Garamond' !important;
}
#property-header .navbar-nav li {
    position: relative;
    padding: 0.5rem 1rem;
}

.header-area .sticky-logo-img {
    display: none;
}

.sticky_header .sticky-logo-img {
    display: block;
}

.sticky_header .header-logo-img {
    display: none;
}

#property-header .navbar-nav .nav-item .nav-link::after {
    content: unset;
}

#property-header .navbar-nav .nav-item .nav-link i {
    padding-left: 14px;
}

#property-header .nav-link {
    letter-spacing: 1px;
    display: flex;
    position: relative;
    z-index: 1;
    height: 100%;
    align-items: center;
    transition: 0.4s;
    text-transform: capitalize;
    color: #fff;
    font-family: 'DM MONO';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover {
    /*color: #0071E3 !important;*/
    transition: all .3s linear;
}

#property-header .navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #21211F;
    transition: all .3s linear;
    border-bottom: 2px solid #21211F;
}

#property-header .dropdown-item.active,
.dropdown-item:active {
    color: #DEE1E3;
    text-decoration: none;
    background-color: #21211F;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover.nav-link::before {
    opacity: 1;
    transition: all .3s linear;
}

#property-header .navbar-dark .navbar-nav .nav-link:hover:after {
    opacity: 1;
    transition: all .3s linear;
}




/* #property-header .nav-link.active {
    color: #0784C7 !important;
} */

#property-header .nav-link.active.nav-link::before {
    opacity: 1;
    transition: all .3s linear;
}

#property-header .navbar-collapse {
    flex-grow: 0 !important;
}

.bg_load {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: url(../images/loading_icon.gif) 50% 50% no-repeat #000;
}

.bg-contact .navbar {
    background-color: #f6cabf !important;
    border-bottom: 0.063rem solid #f6beb1 !important;
}

.header {
    position: absolute;
    z-index: 1;
    width: 100%;
}

#property-header .navbar-light .navbar-nav .nav-link.active-menu {
    color: #21211F;
    border-bottom: 3px solid #21211F;
    width: fit-content;
}

.sticky_header {
    position: fixed !important;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-animation-name: fadeInDown;
    animation-duration: 1s;

}

.header-area.sticky_header {
    background: #1A1814;
    width: 100%;
}

.scrollToTop {
    background-image: url(../images/apple-scroll-to-top.png);
    width: 46px;
    height: 40px;
    position: fixed;
    right: 82px;
    bottom: 63px;
    background-repeat: no-repeat;
    z-index: 99;
}

.navbar-collapse.collapse.show li.nav-item {
    color: #000;
}

/*----onscroll animation start-----*/
.in-view.anim-delay2 {
    -webkit-transition-delay: 0.4s !important;
}

.in-view.anim-delay3 {
    -webkit-transition-delay: 0.8s !important;
}

.in-view.anim-delay4 {
    -webkit-transition-delay: 1.2s !important;
}

.in-view.anim-delay5 {
    -webkit-transition-delay: 1.6s !important;
}

.in-view.anim-delay6 {
    -webkit-transition-delay: 2s !important;
}

.animation-element.slide-top {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
    -moz-transform: translate3d(0px, -60px, 0px);
    -webkit-transform: translate3d(0px, -60px, 0px);
    -o-transform: translate(0px, -60px);
    -ms-transform: translate(0px, -60px);
    transform: translate3d(0px, -60px, 0px);
}

.animation-element.fadein {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
}

.animation-element.slide-bottom {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
    -moz-transform: translate3d(0px, 60px, 0px);
    -webkit-transform: translate3d(0px, 60px, 0px);
    -o-transform: translate(0px, 60px);
    -ms-transform: translate(0px, 60px);
    transform: translate3d(0px, 60px, 0px);
}


.animation-element.slide-left {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
    -moz-transform: translate3d(-50px, 0, 0);
    -webkit-transform: translate3d(-50px, 0, 0);
    -o-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate3d(-50px, 0, 0);
}

.animation-element.slide-right {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
    -moz-transform: translate3d(50px, 0, 0);
    -webkit-transform: translate3d(50px, 0, 0);
    -o-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    transform: translate3d(50px, 0, 0);
}

.animation-element.slide-left.in-view,
.animation-element.slide-top.in-view,
.animation-element.slide-right.in-view,
.animation-element.slide-bottom.in-view,
.animation-element.fadein.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}


.header-area {
    padding-top: 0px;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .9px;
    line-height: 26px;
    text-transform: uppercase;
    color: #0784C7;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #0071E3;
}

.navbar-dark .navbar-nav .nav-link:hover {
    /* color: #62CEC5 !important; */
    transition: all .3s linear;
}

.navbar-dark .navbar-nav .nav-link:hover:after {
    opacity: 1;
    transition: all .3s linear;
}

a.nav-link {
    position: relative;
}

.header-button {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 12rem;
    padding: 0.375rem 1.55rem;
    border-radius: 50px;
    background-color: #62CEC5;
}

.container {
    padding-right: 3vw !important;
    padding-left: 3vw !important;
    margin: unset !important;
    max-width: unset;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 2px 0;
}

/* .navbar {
    padding-top: .8rem;
    padding-bottom: .8rem;
} */

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
}

.btn:focus {
    box-shadow: unset;
}

.header-area {
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
    top: 10px;
    background: #1A1814;
    border-radius: 16px;
}


.scrollToTop {
    background-image: url(../images/apple-scroll-to-top.png);
    width: 46px;
    height: 40px;
    position: fixed;
    right: 82px;
    bottom: 56px;
    background-repeat: no-repeat;
    z-index: 99;
}

.btn.btn-primary.border-0:active:focus,
.btn-primary:focus {
    background: #f36a3a !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: unset !important;
}

.sticky_header .top-header {
    display: none;
}
.dropdown-menu{
    background: #000;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.dropdown-item{
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    transition: 0.3s;
}


.dropdown-toggle::after{
    display: none;
}
.dropdown-item:hover{
    background: #f5f5f5;
    /* color: #000; */
}
@media (max-width: 767px) {

    .top-header {
        padding: 0;
        background-color: transparent !important;
    }

    .header-btn .zoop-btn {
        padding: 0rem 0rem !important;
        font-weight: 400 !important;
        color: #000 !important;
    }

    .sticky-social {
        display: none;
    }

    .h-height {
        height: 156px;
    }

    .navbar-dark .navbar-toggler {
        color: unset !important;
        border-color: #fff !important;
        box-shadow: unset !important;
    }

    .scrollToTop {
        right: 20px;
    }

    .container {
        padding: 0px 15px !important;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        content: unset;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #fff !important;
    }

    .navbar-nav {
        margin-top: 10px !important;
    }

    .scrollToTop {
        background-image: url(../images/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 27px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }

    .header-area {
        /* background-color: #FAFAFA; */
    }

    .header-button {
        margin-left: unset !important;
        padding: 8px 20px !important;
    }

    .navbar-dark .navbar-nav .nav-link:after {
        position: unset !important;
    }

    /* .navbar-brand img {
        width: 160px;
    } */
}

@media(min-width:768px) and (max-width:991px) {
    .navbar-dark .navbar-nav .nav-link::before {
        content: unset;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: .5rem 0rem;
    }

    .navbar-nav {
        margin-top: 10px !important;
    }

    .header-btn .zoop-btn {
        padding: 0rem 0rem;
    }

    .header-btn .zoop-btn {
        font-weight: 400;
        background: transparent !important;
        color: rgba(0, 0, 0, .7) !important;
        font-weight: 400 !important;
    }

    .header-btn .zoop-btn.btn-primary:hover {
        background: transparent !important;
    }

    .scrollToTop {
        background-image: url(../images/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 40px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }

    .header-button {
        margin-left: unset !important;
    }
}

@media (max-width: 575px) {
    .scrollToTop {
        background-image: url(../images/apple-scroll-to-top.png);
        width: 46px;
        height: 40px;
        position: fixed;
        right: 20px;
        bottom: 20px;
        background-repeat: no-repeat;
        z-index: 99;
    }
}

a.navbar-brand.pt-0 {
    color: #fff;
}

a.talk-btn {
    color: #B8954A;
    border: 1px solid #B8954A;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.banner-wrap {
    margin: 60px 0 0;
    position: relative;
}

.stats-section {
    display: flex;
    border-top: 1px solid #d8d3cc;
    border-bottom: 1px solid #d8d3cc;
    background: #f6f3ee;
}

.stats-box {
    flex: 1;
    padding: 30px 28px;
    border-right: 1px solid #d8d3cc;
}

.stats-box:last-child {
    border-right: none;
}

.stats-box h2 {
    font-size: 72px;
    font-weight: 700;
    color: #B8954A;
    margin: 0 0 10px;
    /* line-height: 1; */
    font-family: 'Cormorant Garamond';
}

.stats-box p {
    margin: 0;
    font-size: 16px;
    color: #3A3A3A;
    text-transform: uppercase;
    font-family: 'DM Mono';
    display: block;
}

/* Responsive */
@media(max-width:768px) {
    .stats-section {
        flex-direction: column;
    }

    .stats-box {
        border-right: none;
        border-bottom: 1px solid #d8d3cc;
    }

    .stats-box:last-child {
        border-bottom: none;
    }
}

section.marquee-section {
    background: #F5F2EC;
    border-bottom: 1px solid #d8d3cc;
}


/* css start  */
.silk-banner{
    position:relative;
    min-height:600px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.banner-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.silk-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.3);
    z-index:-1;
}

.silk-content{
    position: relative;
    z-index: 2;
}


.silk-content h1 {
    font-size: 60px;
    color: #fff;
    font-family: 'Cormorant Garamond';
    letter-spacing: 10%;
}
.silk-content h2{
    color: #fff;
    font-size: 120px;
    line-height: 1;
    margin: 0;
    font-weight: 700;
    font-family: 'Cormorant Garamond';
}

.silk-content h2 em{
    font-style: italic;
    font-weight: 400;
    font-family: 'Cormorant Garamond';
}

@media(max-width:768px){

    .silk-banner{
        min-height: 220px;
        padding: 40px 0;
    }

    .sub-title{
        font-size: 14px;
        letter-spacing: 2px;
    }

    .silk-content h2{
        font-size: 42px;
        line-height: 1.1;
    }
}

h2 {
    font-size: 48px;
    font-weight: 500;
    /* line-height: 72px; */
}


section.video-sec {
    background: #000000;
}
p.quotes-para {
    font-family: 'Cormorant Garamond';
    color: #3A3A3A;
    font-size: 20px;
    background: #F2EDE6;
    border: 1px solid var(--Lines, #1A181433);
    padding: 30px;
    position: relative;
}
p.quotes-para img {
    position: absolute;
    right: 20px;
    bottom: 0;
}
p.font-italic {
    font-family: 'Cormorant Garamond';
    font-size: 20px;
    color: #3A3A3A;
    font-style: italic;
    margin-bottom: 20px;
}
.s-work-sec h3 {
    padding: 20px 0 10px;
    font-size: 24px;
}

.btn-wrp a {
    border: 1px solid #1E1E1E;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}

.works-btm-sec p {
    width: 60%;
}

section.accordion {
    background: #FBE20C;
}

div#accordionExample {
    background: #FBE20C;
}

.card {
    /* background: #FBE20C; */
    border: none;
    /* box-shadow: none; */
}

.card-header {
    background: none;
}

button.btn.btn-link {
    font-size: 42px;
    text-decoration: none;
    font-weight: 500;
}

.accordion-wrap h2 {
    border-bottom: 1px solid;
    padding-bottom: 20px;
}

section.about-us {
    background: #fafafa;
}

.num-wrap span {
    font-size: 200px;
    font-weight: 600;
}

section.testimonials {
    background: #FBE20C;
}

.num-wrap {
    width: 80%;
}

sup {
    font-size: 48px;
    top: -120px;
}


.marquee {
    width: 100%;
    overflow: hidden;
    background: #F5F2EC;
    padding: 15px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.marquee-content li {
    list-style: none;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 200;
    font-family: 'DM Mono';
    color: #3A3A3A;
    line-height: 72px;
    text-transform: uppercase;
}

.marquee-content img {
    width: 40px;
    height: 40px;
    object-fit: contain;
        margin-bottom: 8px;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .marquee-content li {
        font-size: 36px;
    }

    .marquee-content img {
        width: 24px;
        height: 24px;
    }
}

.who-we-are-sec {
    background: #F5F2EC;
    padding: 80px 0;
    border-bottom: 1px solid #d8d3cc;
}



.sub-title {
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    color: #B8954A;
    margin-bottom: 20px;
    font-family: 'DM Mono';
    font-weight: 500;
}

.who-we-are-sec h3 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.who-we-are-sec h3 span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.top-para {
    font-size: 20px;
    color: #3A3A3A;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    line-height: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 20px;
}

.content-grid p {
    font-size: 18px;
    color: #3A3A3A;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    line-height: 30px;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 1px solid #0A0A0B;
    text-decoration: none;
    color: #0A0A0B;
    font-size: 16px;
    transition: 0.3s ease;
    font-family: 'DM Mono';
    border-radius: 8px;
}

.view-btn:hover {
    background: #1b1b1b;
    color: #fff;
}

.view-btn span {
    font-size: 18px;
}

@media(max-width:991px) {

    .who-we-are-sec {
        padding: 60px 0;
    }

    .who-we-are-sec h2 {
        font-size: 38px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media(max-width:767px) {

    .who-we-are-sec h3 {
        font-size: 30px;
        line-height: 1.5;
    }

    .top-para,
    .content-grid p {
        font-size: 16px;
        line-height: 1.8;
    }

    .view-btn {
        padding: 14px 22px;
        font-size: 13px;
    }
}

.how-we-work-sec {
    background-image: url(../images/how-we-work-bg.png);
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
}


.top-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
}



.right-content h3 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.right-content h3 span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #1A181433;

    /* ADD */
    width: calc(100% - 260px);
    margin-left: auto;
}

.principle-box {
    padding: 40px;
    border-right: 1px solid #ddd6cd;
    border-bottom: 1px solid #ddd6cd;
    background: rgba(245, 242, 236, 0.5);
}

.principle-box:nth-child(2),
.principle-box:nth-child(4) {
    border-right: none;
}

.principle-box:nth-child(3),
.principle-box:nth-child(4) {
    border-bottom: none;
}

.tag {
    display: inline-block;
    border: 1px solid #1A181433;
    padding: 6px 12px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #3A3A3A;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.principle-box h3 {
    font-size: 30px;
    font-weight: 500;
    color: #0A0A0B;
    font-family: 'Cormorant Garamond';
    line-height: 42px;
}

.principle-box p {
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    margin: 0;
    font-family: 'Cormorant Garamond';
}

@media(max-width:991px) {

    .top-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .right-content h2 {
        font-size: 38px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-box {
        border-right: none !important;
        border-bottom: 1px solid #ddd6cd !important;
    }

    .principle-box:last-child {
        border-bottom: none !important;
    }
}

@media(max-width:767px) {

    .how-we-work-sec {
        padding: 60px 0;
    }

    .right-content h3 {
        font-size: 30px;
        line-height: 1.5;
    }

    .principle-box {
        padding: 30px 22px;
    }

    .principle-box h3 {
        font-size: 26px;
    }

    .principle-box p {
        font-size: 16px;
        line-height: 1.8;
    }
}

.faq-accordion-sec {
    padding: 80px 0;
    background: #F5F2EC;
}


.main-title {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.main-title span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

/* ACCORDION */

.accordion-item {
    border: none;
    border-bottom: 1px solid #d7d0c7;
    background: #F5F2EC;
}

.accordion-item:last-child {
    border-bottom: 1px solid #d7d0c7;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 32px 0;
}

.accordion-header h3 {
    margin: 0;
    font-family: 'Cormorant Garamond';
    font-size: 30px;
    font-weight: 500;
    color: #0A0A0B;
    line-height: 42px;
    font-style: italic;
}

.accordion-header h3 span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.icon {
    font-size: 26px;
    color: #6f675f;
    transition: .4s;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.content-left {
    flex: 1;
}

.content-left p {
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    /* max-width: 970px; */
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond';
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tags span {
    border: 1px solid #d7d0c7;
    padding: 8px 14px;
    font-size: 14px;
    color: #3A3A3A;
    line-height: 30px;
}

.know-more {
    text-decoration: none;
    color: #3A3A3A;
    font-size: 18px;
	border: 1px solid ;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
}
.accordion-inner a:hover {
    color: #B8954A;
}

.content-right {
    width: 280px;
    flex-shrink: 0;
    text-align: right;
}

.content-right img {
    width: 100%;
    max-width: 300px;
}

/* SMOOTH ACCORDION FIX */

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .7s cubic-bezier(0.87, 0, 0.13, 1),
        padding .4s ease;
    overflow: hidden;
    padding: 0;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
    padding-bottom: 40px;
}

/* INNER WRAPPER */

.accordion-inner {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.accordion-inner p {
    font-family: 'Cormorant Garamond';
}

/* RESPONSIVE */

@media(max-width:991px) {

    .accordion-inner {
        flex-direction: column;
    }

}

/* RESPONSIVE */

@media(max-width:991px) {

    .main-title {
        font-size: 40px;
    }

    .accordion-content {
        flex-direction: column;
    }

    .content-right {
        width: 100%;
        text-align: left;
    }

}

@media(max-width:767px) {

    .faq-accordion-sec {
        padding: 60px 0;
    }

    .main-title {
        font-size: 30px;
		line-height: 42px;
    }

    .accordion-header h3 {
        font-size: 24px;
        padding-right: 15px;
    }

}

.quote-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 80px 60px;
    background: #1A1814;
    color: #F6F6F6;
}

.quote-left {
    flex: 1;
    max-width: 50%;
}

.quote-left h2 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #F6F6F6;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.quote-left span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.quote-right {
    flex: 1;
    max-width: 50%;
}

.quote-right p {
    font-size: 20px;
    line-height: 30px;
    color: rgba(245, 242, 236, 0.7);
    margin-bottom: 14px;
    font-family: Cormorant Garamond;
}

/* Responsive */
@media (max-width: 900px) {
    .quote-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 24px;
    }

    .quote-left h2 {
        font-size: 34px;
    }
}

section.team-section {
    background: #F5F2EC;
    padding: 80px 0;
}

.team-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-label {
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b48a3c;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
}

.dot {
    width: 5px;
    height: 5px;
    background: #b48a3c;
    border-radius: 50%;
}

.team-heading h3 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}
h3#memberName{
	margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #0A0A0B;
    font-family: 'DM Mono';
	font-style: normal;
}

.team-heading h3 span {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.divider {
    width: 100%;
    height: 1px;
    background: #ddd7cc;
    margin: 45px 0;
}

.team-member {
    /* max-width: 950px; */
    margin-left: auto;
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.member-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.member-info img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #0A0A0B;
    font-family: 'DM Mono';
}

.member-info p {
    margin: 4px 0 0;
    font-size: 16px;
    letter-spacing: 1px;
    color: #0A0A0B;
    text-transform: uppercase;
    font-weight: 400;
}

.slider-buttons {
    display: flex;
    gap: 10px;
}

.slider-buttons button {
    width: 38px;
    height: 38px;
    border: 1px solid #c9c1b5;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.slider-buttons button:hover {
    background: #b48a3c;
    border-color: #b48a3c;
    color: #fff;
}

.member-content {
    min-height: 220px;
}

.member-content p {
    font-size: 20px;
    line-height: 30px;
    color: #0A0A0B;
    animation: fade 0.4s ease;
    font-family: 'Cormorant Garamond';
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .team-top {
        flex-direction: column;
        gap: 20px;
    }

    .team-heading h3 {
        font-size: 34px;
		line-height:48px;
    }
	h3#memberName {
    font-size: 24px;
    font-weight: 500;
    color: #0A0A0B;
    font-family: 'DM Mono';
    font-style: normal;
}
    .member-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .team-section {
        padding: 50px 24px;
    }
}
.our-edge-sec{
    background-image: url(../images/edge-bg.png);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid #1A181433;
    background-size: cover;
    background-repeat: repeat;
}



.edge-wrapper{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}
h2.sub-title{
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    color: #B8954A;
    margin-bottom: 20px;
    font-family: 'DM Mono';
    font-weight: 500;
}
.sub-title{
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    color: #B8954A;
    margin-bottom: 20px;
    font-family: 'DM Mono';
    font-weight: 500;
}

.edge-img img{
    width: 100%;
    display: block;
}
.edge-content img {
    margin-bottom: 42px;
    width: 100%;
}
.edge-right h2{
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 42px;
    font-family: 'Cormorant Garamond';
    border-bottom: 1px solid #1A181433;
    padding-bottom: 36px;
    font-style: italic;
}

.edge-right h2 span{
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.edge-content{
    /* max-width: 900px; */
    width: 100%;
}

.edge-content p{
    font-size: 20px;
    line-height: 30px;
    color: #0A0A0B;
    font-family: 'Cormorant Garamond';
}

.bottom-line{
    width: 260px;
    height: 1px;
    background: #ddd6cd;
    margin-top: 35px;
}

.edge-img {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media(max-width:991px){

    .edge-wrapper{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sub-title{
        margin-bottom: 30px;
    }

    .edge-img img{
        max-width: 180px;
    }

    .edge-right h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .our-edge-sec{
        padding: 60px 0;
    }

    .edge-right h2{
        font-size: 30px;
        line-height: 1.5;
    }

    .edge-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .bottom-line{
        width: 180px;
    }
}
.partner-sec{
    background: #f7f4ef;
    padding: 80px 0;
    border-bottom: 1px solid #1A181433;
}

.partner-wrapper{
    display: grid;
    grid-template-columns: 1fr 620px;
    gap: 70px;
    align-items: start;
}


.partner-content h2{
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    border-bottom: 1px solid #1A181433;
    padding-bottom: 24px;
}

.partner-content h2 span{
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.partner-content p{
    font-size: 18px;
    line-height: 30px;
    color: #0A0A0B;
    font-family: 'Cormorant Garamond';
}

.partner-logos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.logo-box{
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}


@media(max-width:991px){

    .partner-wrapper{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partner-content h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .partner-sec{
        padding: 60px 0;
    }

    .partner-content h2{
        font-size: 30px;
        line-height: 1.5;
    }

    .partner-content p{
        font-size: 14px;
        line-height: 1.8;
    }

    .partner-logos{
        grid-template-columns: 1fr;
    }

    .logo-box{
        min-height: 150px;
    }
}


.reach-us-sec{
    background: #f7f4ef;
    padding: 80px 0 0;
}

.reach-top{
    margin-bottom: 50px;
}
h2{
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
}
h2 span{
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}
.reach-top h2{
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.reach-top h2 span{
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.reach-top p{
    font-size: 16px;
    line-height: 30px;
    color: #3A3A3A;
    margin: 0;
    font-family: 'Cormorant Garamond';
}
.reach-top p a {
    color: #B8954A;
    text-decoration: none;
    font-family: Cormorant Garamond;
    font-size: 20px;
}

.reach-top p {
    font-size: 20px;
}
.reach-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ddd6cd;
    border-bottom: 1px solid #ddd6cd;
}

.reach-box{
    padding: 30px 40px;
    border-right: 1px solid #ddd6cd;
}

.reach-box:last-child{
    border-right: none;
}

.platform{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    color: #B8954A;
    margin-bottom: 20px;
    font-family: 'DM Mono';
    line-height: 30px;
}

.platform img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.reach-box h3{
    font-size: 30px;
    font-weight: 500;
    color: #0A0A0B;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond';
    border-bottom: 1px solid #1A181433;
    display: inline-block;
    padding-bottom: 15px;
}

.reach-box h3 span{
    font-size: 24px;
    color: #3A3A3A;
}

.reach-box p{
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    margin: 0;
    font-style: italic;
    font-family: 'Cormorant Garamond';
    letter-spacing: 10%;
}
.copy-rights p {
    color: #3A3A3A;
    font-size: 12px;
    line-height: 30px;
    margin: 0;
    text-transform: uppercase;
}

.copy-rights {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.reach-box a {
    text-decoration: none;
    display: inline-block;
}
@media(max-width:991px){

    .reach-top h2{
        font-size: 38px;
    }

    .reach-grid{
        grid-template-columns: 1fr;
    }

    .reach-box{
        border-right: none;
        border-bottom: 1px solid #ddd6cd;
    }

    .reach-box:last-child{
        border-bottom: none;
    }
}

@media(max-width:767px){

    .reach-us-sec{
        padding: 60px 0;
    }

    .reach-top h2{
        font-size: 30px;
        line-height: 1.5;
    }

    .reach-top p{
        font-size: 16px;
        line-height: 1.8;
    }

    .reach-box{
        padding: 24px 20px;
    }

    .reach-box h3{
        font-size: 26px;
    }
}

/* about us css  */

section.inner-bnr-sec {
    padding: 160px 0 80px;
    background: #F5F2EC;
    border-bottom: 1px solid #d8d3cc;
}

.banner-cont-wrap h2 {
    color: #B8954A;
    font-size: 48px;
    font-weight: 500;
    /*line-height: 100%;*/
    max-width: 90%;
    margin-inline: auto;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.banner-cont-wrap {
    margin-inline: auto;
    text-align: center;
}

.banner-cont-wrap h1 {
    color: #0A0A0B80;
    font-weight: 500;
    font-family: 'DM Mono';
    font-size: 18px;
    margin-bottom: 20px;
    display: inline-block;
}

.cta-section{
    background: #F5F2EC;
    padding: 40px 0 40px;
    border-bottom: 1px solid #1A181433;
}



.cta-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-content{
    /* max-width: 760px; */
}


.cta-content h2 span{
    color: #b8913f;
}

.cta-content p{
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    margin-bottom: 35px;
    font-family: 'Cormorant Garamond';
}



.cta-btn span{
    font-size: 18px;
}

.cta-image img{
    width: 100%;
    /* max-width: 340px; */
    display: block;
}

@media(max-width:991px){

    .cta-wrapper{
        flex-direction: column;
        text-align: center;
    }

    .cta-content{
        max-width: 100%;
    }

    .cta-content p{
        max-width: 100%;
    }

    .cta-content h2{
        font-size: 38px;
    }

    .cta-image img{
        max-width: 260px;
        margin: auto;
    }
}

@media(max-width:767px){

    .cta-section{
        padding: 60px 0;
    }

    .cta-content h2{
        font-size: 30px;
        line-height: 1.5;
    }

    .cta-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .cta-btn{
        padding: 14px 22px;
        font-size: 13px;
    }
}

.need-this-sec{
    background: #F5F2EC;
    padding: 80px 0;
}




.need-image img{
    width: 100%;
    display: block;
    object-fit: cover;
}

@media(max-width:991px){

    .need-this-sec h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .need-this-sec{
        padding: 60px 0;
    }

    .need-this-sec h2{
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
}


.what-we-do-sec{
    padding: 80px 0;
    background-image: url(../images/inner-prod-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}


.what-we-do-sec h2{
    font-size: 48px;
    font-weight: 500;
    color: #FAFAFA;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond';
}

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

.service-box{
    background: #100F10;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 35px;
    min-height: 170px;
    transition: 0.3s ease;
}

.service-box:hover{
    border-color: rgba(196, 153, 86, 0.4);
    transform: translateY(-4px);
}

.service-box img{
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 24px;
}

.service-box p{
    font-size: 30px;
    line-height: 42px;
    color: #FAFAFA;
    margin: 0;
    font-family: 'Cormorant Garamond';
    font-weight: 500;
}

@media(max-width:991px){

    .what-we-do-sec h2{
        font-size: 38px;
    }

    .service-box p{
        font-size: 22px;
    }
}

@media(max-width:767px){

    .what-we-do-sec{
        padding: 60px 0;
    }

    .services-grid{
        grid-template-columns: 1fr;
    }

    .what-we-do-sec h2{
        font-size: 30px;
    }

    .service-box{
        padding: 30px 24px;
        min-height: auto;
    }

    .service-box p{
        font-size: 18px;
        line-height: 1.5;
    }
}

.what-changes-sec{
    background: #F5F2EC;
    padding: 80px 0;
    border-bottom: 1px solid #1A181433;
}

.changes-wrapper{
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
    align-items: start;
}


.changes-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.change-box{
    border: 1px solid #ddd6cd;
    background: transparent;

    padding: 35px 28px;
    min-height: 180px;

    transition: 0.3s ease;
}

.change-box:hover{
    background: #f1ece5;
}

.change-box img{
    height: 85px;
    object-fit: contain;
    margin-bottom: 20px;
}

.change-box h3{
    font-size: 30px;
    font-weight: 500;
    color: #1A1814;
    margin: 0;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

@media(max-width:991px){

    .changes-wrapper{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .changes-right h2{
        font-size: 38px;
    }

    .changes-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px){

    .what-changes-sec{
        padding: 60px 0;
    }

    .changes-right h2{
        font-size: 30px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .changes-grid{
        grid-template-columns: 1fr;
    }

    .change-box{
        min-height: auto;
        padding: 30px 24px;
    }

    .change-box h3{
        font-size: 24px;
    }
}


.contact-form-sec{
    background: #f7f4ef;
    padding: 80px 0 0;
    /* border-bottom: 1px solid #1A181433; */
}


.form-heading{
    margin-bottom: 30px;
}


.form-heading p{
    font-size: 20px;
    line-height: 30px;
    color: #3A3A3A;
    margin: 0;
    font-family: 'Cormorant Garamond';
}

.form-group label{
    display: block;
    font-size: 24px;
    color: #1A1814;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: 'Cormorant Garamond';
}

.form-control,
.form-select{
    width: 100%;
    height: 47px;
    border: 1px solid #ddd6cd;
    border-radius: 0;
    background: transparent;
    padding: 8px 18px;
    font-size: 18px;
    color: #3A3A3A;
    box-shadow: none !important;
    outline: none;
    transition: 0.3s ease;
    font-family: 'Cormorant Garamond';
}

.form-control:focus,
.form-select:focus{
    border-color: #b8913f;
}

.form-control::placeholder{
    color: #aaa39a;
}

textarea.form-control{
    height: 140px;
    resize: none;
    padding-top: 18px;
}

.submit-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #1b1b1b;
    background: transparent;
    border-radius: 8px;
    padding: 14px 28px;

    color: #1b1b1b;
    font-size: 14px;

    transition: 0.3s ease;
}

.submit-btn:hover{
    background: #1b1b1b;
    color: #fff;
}

.submit-btn span{
    font-size: 18px;
}

#contact_thank_you{
    margin-top: 15px;
    font-size: 14px;
    color: green;
}
.form-group{
    position: relative;
}

.form-group select.form-select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    padding-right: 45px;
    font-family: Cormorant Garamond;
}
.form-heading a {
    color: #B8954A;
    font-family: 'Cormorant Garamond';
}

.form-heading a:hover {
    color: #B8954A;
}
#who-we-are,
#what-we-do,
#how-we-work,
#the-collective,
#our-edge,
#contact-us{
    scroll-margin-top: 80px;
}
@media(max-width:991px){

    .form-heading h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .contact-form-sec{
        padding: 60px 0;
    }

    .form-heading h2{
        font-size: 30px;
        line-height: 1.5;
    }

    .form-group label{
        font-size: 22px;
    }

    .form-control,
    .form-select{
        height: 52px;
    }

    textarea.form-control{
        height: 120px;
    }
}

/* Tablet */
@media (max-width: 991px){

    .principles-grid{
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 767px){

    .principles-grid{
        width: 100%;
        grid-template-columns: 1fr;
        margin-left: 0;
    }
    .quote-left {
    max-width: 100%;
}

.quote-right {
    max-width: 100%;
}
.silk-content {
    padding-top: 90px;
}
.talk-btn{
        display: none;
    }
    .copy-rights {
        display:block;
    padding: 10px !important;
}

section.reach-us-sec {
    padding-bottom: 0;
}
}


/* blog css start  */
.blog-section{
    padding:80px 0;
    background: #F5F2EC;
    border-bottom: 1px solid #1A181433;
}

.blog-wrapper{
    display:flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-content{
     width:70%; 
}
.blog-wrapper>p {
    width: 70%;
}
.sidebar{
    width:30%;
}

.blog-item{
    padding-bottom:60px;
    margin-bottom:60px;
    border-bottom:1px solid #d8d2c7;
}

.blog-item img{
    width:100%;
    display:block;
    margin-bottom:25px;
    height: 436px;
    width: 872px;
}


.blog-item h2{
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom:20px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.blog-item p{
    font-size: 18px;
    line-height: 30px;
    color: #0A0A0B;
    margin-bottom:30px;
    font-family: 'Cormorant Garamond';
}

.read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:1px solid #222;
    padding:14px 25px;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.read-btn:hover{
    background:#222;
    color:#fff;
}

.search-box{
    margin-bottom:40px;
}

.search-box input{
    width:100%;
    padding:18px;
    border:1px solid #ccc;
    outline:none;
}

.sidebar h3{
    font-size: 30px;
    color: #1A1814;
    font-family: 'DM Mono';
    line-height: 72px;
}

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{
    border-bottom: 1px solid #3A3A3A;
}

.category-list a{
    display:flex;
    justify-content:space-between;
    padding:20px 0;
    color: #8B8B8B;
    text-decoration:none;
    font-size: 20px;
    font-family: 'DM Mono';
    font-weight: 500;
}

.pagination{
    display:flex;
    gap:15px;
}

.pagination a{
    width:45px;
    height:45px;
    border:1px solid #222;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#222;
}

@media(max-width:991px){

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

    .blog-content,
    .sidebar{
        width:100%;
    }

    .blog-item h2{
        font-size:36px;
    }
}



/* blog details css start  */

.blog-details-page{
    background:#F5F2EC;
    padding: 80px 0 0;
    /* border-bottom: 1px solid #1A181433; */
}
.related-post,.comments,.comments-form{
    background:#F5F2EC;
    padding: 40px 0;
}
.blog-layout{
    display:flex;
    gap:60px;
}

.blog-main{
    width:70%;
}

.blog-sidebar{
    width:30%;
}

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

.blog-meta{
    margin:30px 0 0;
    display:flex;
    gap:20px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#b88a32;
    font-size:14px;
}

.blog-content p{
    line-height: 30px;
    margin-bottom:25px;
    color: #0A0A0B;
    font-family: 'Cormorant Garamond';
    font-size: 20px;
}

.author-box{
    padding:30px 0;
    display:flex;
    align-items:center;
    gap:20px;
}

.author-box img{
    width:70px;
    height:70px;
    border-radius:50%;
}

.related-posts h2{
    margin-bottom:30px;
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-style: italic;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.related-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}


.related-card h3{
    font-size: 30px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom:20px;
    color: #1A1814;
    font-family: 'Cormorant Garamond';
}

.related-card a{
    display:inline-block;
    padding:12px 20px;
    border: 1px solid #1A181433;
    text-decoration:none;
    color: #8B8B8B;
    border-radius: 8px;
    font-family: 'DM Mono';
    font-size: 18px;
}

.comment-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.leave-comment-btn{
    border: 1px solid #0A0A0B;
    padding:14px 25px;
    text-decoration:none;
    color: #0A0A0B;
    border-radius: 8px;
}
.related-posts {
    border-bottom: 1px solid #1A181433;
    padding-bottom: 40px;
    max-width: 1300px;
    margin: 0 auto;
}
.comment-item{
    border-bottom:1px solid #ddd;
    padding-bottom:30px;
    margin-bottom:30px;
}
.comment-header h2 {
    margin-bottom: 0;
    font-style: italic;
}
.comment-user{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:20px;
}

.avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#b88a32;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.reply-box{
    margin-left:70px;
    border-left: 1px solid #D9D9D9;
    padding-left:25px;
    /* margin-bottom:40px; */
}

.comment-form h2{
    margin-bottom:30px;
    font-style: italic;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}


.comment-form button{
    border:1px solid #222;
    background:none;
    padding:14px 25px;
    cursor:pointer;
}
.reply-box p {
    margin-bottom: 0;
}
.search-box input{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
}
span.sub-title.black {
    color: #3A3A3A;
}
.blog-sidebar h3{
    margin:30px 0;
    text-transform:uppercase;
}

.blog-sidebar ul{
    list-style:none;
    padding:0;
}
.author-box p {
    color: #0A0A0B;
    font-size: 18px;
    line-height: 30px;
}

.author-box h4 {
    color: #0A0A0B;
    font-size: 24px;
    font-weight: 500;
    font-family: 'DM Mono';
    line-height: 36px;
}
.blog-sidebar li{
    border-bottom:1px solid #ccc;
}

.blog-sidebar a{
    display:block;
    padding:20px 0;
    color:#222;
    text-decoration:none;
}
.related-card span {
    padding-top: 24px !important;
}
.comment-item h4 {
    color: #01023A;
}

.comment-item p {
    color: #01023A;
    font-size: 18px;
    font-family: 'Cormorant Garamond';
    line-height: 30px;
}

.comment-user h5 {
    color: #01023A;
    font-size: 18px;
    font-weight: 500;
    font-family: 'DM Mono';
    text-transform: uppercase;
    margin-bottom: 0;
}

.comment-user span {
    font-size: 18px;
    font-family: 'Cormorant Garamond';
    color: #01023A;
    line-height: 30px;
}
.s-comment-wrap {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
section.comments-form {
    border-bottom: 1px solid #1A181433;
}
@media(max-width:991px){

    .blog-layout{
        flex-direction:column;
    }

    .blog-main,
    .blog-sidebar{
        width:100%;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

.team-section{
    background:#F5F2EC;
    padding:100px 0;
}

.team-wrapper{
    display:grid;
    grid-template-columns:250px 1fr;
    gap: 20px;
    align-items: flex-start;
}


.team-section.testimonial-page-wrap {
    border-bottom: 1px solid #1A181433 !important;
}


.team-divider{
    border-top:1px solid #d7d2ca;
    margin-bottom:40px;
}

.team-item{
    border-bottom:1px solid #d7d2ca;
    padding:40px 0;
}

.team-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.team-info{
    display:flex;
    gap:20px;
    align-items:center;
}

.team-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.team-info h3{
    margin:0;
    font-size: 24px;
    font-family: 'DM Mono';
    letter-spacing:1px;
}

.team-info p{
    margin:5px 0 0;
    font-size:18px;
    text-transform:uppercase;
}

.arrow{
    font-size: 35px;
    transition:.4s;
    color: #3A3A3A;
}

.team-body{
    max-height:0;
    overflow:hidden;
    transition:.5s ease;
}

.team-body p{
    font-size: 20px !important;
    line-height:1.8;
    margin:25px 0;
    color: #3A3A3A;
    font-family:'Cormorant Garamond', serif;
}
.team-body p span{
    font-size: 20px !important;
    line-height:1.8;
    margin:25px 0;
    color: #3A3A3A;
    font-family:'Cormorant Garamond', serif;
}
.team-item.active .team-body{
    max-height:1200px;
}

.team-item.active .arrow{
    transform:rotate(180deg);
}
.team-content .team-item:last-of-type{
    border-bottom: none;
}
section.blog-details-page .blog-main {
    width: 100%;
}
section.blog-details-page .blog-layout {
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid #1A181433;
}
.comments-section {
    max-width: 1300px;
    margin: 0 auto;
}

.comment-form {
    max-width: 1300px;
    margin: 0 auto;
}

section.blog-details-page .blog-content {
    width: 100%;
}
 .pagination-wrapper{
    display:flex;
    gap:15px;
}

.page-arrow{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
    transition:0.3s;
}

.page-arrow:disabled{
    opacity:0.4;
    cursor:not-allowed;
}
button.page-arrow {
    border: 1px solid #8B8B8B;
    color: #8B8B8B;
    border-radius: 6px;
    font-size: 22px;
}

.breadcrumb-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 16px;
    text-transform: uppercase;
    color: #777;
    margin-bottom:20px;
}

.breadcrumb-wrap a {
    text-decoration: none;
    color: #B8954A;
    font-weight: 500;
}

.breadcrumb-wrap span {
    color: #8B8B8B;
    font-weight: 500;
}
.blog-content p span {
    line-height: 30px;
    margin-bottom: 25px;
    color: #0A0A0B !important;
    font-family: 'Cormorant Garamond';
    font-size: 20px !important;
}
h2.team-title {
    font-style: italic;
}
.quote-right .view-btn {
    color: #fff;
    border-color: #fff;
    margin-top: 12px;
}
.blog-content {
    position: relative;
}
i {
    font-style: normal;
    font-family: 'Cormorant Garamond';
}
/* ==========================
   TABLET
========================== */
@media (max-width: 991px){

    .team-section{
        padding:60px 0;
    }

    .team-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .team-title{
        font-size:48px;
        line-height:1.3;
    }

    .team-info h3{
        font-size:22px;
    }

    .team-info p{
        font-size:16px;
    }

    .team-body p{
        font-size:17px;
        line-height:1.8;
    }

    .arrow{
        font-size:36px;
    }

}


/* ==========================
   MOBILE
========================== */
@media (max-width: 767px){

    .team-section{
        padding:40px 0;
    }

    .team-wrapper{
        gap:30px;
    }

    .team-divider{
        margin-bottom:20px;
    }

    .team-item{
        padding:25px 0;
    }

    .team-header{
        align-items:flex-start;
        gap:15px;
    }

    .team-info{
        gap:15px;
        flex:1;
    }

    .team-info img{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .team-info h3{
        font-size:18px;
        line-height:1.4;
    }

    .team-info p{
        font-size:12px;
        line-height:1.5;
        margin-top:3px;
    }

    .team-title{
        font-size:32px;
        line-height:1.4;
        margin-bottom:25px;
    }

    .team-body p{
        font-size:16px;
        line-height:1.8;
        margin:18px 0;
    }

    .arrow{
        font-size:28px;
        flex-shrink:0;
    }

}


/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px){

    .team-title{
        font-size:28px;
    }

    .team-info{
        gap:12px;
    }

    .team-info img{
        width:50px;
        height:50px;
    }

    .team-info h3{
        font-size:16px;
    }

    .team-info p{
        font-size:11px;
    }

    .team-body p{
        font-size:15px;
    }

    .arrow{
        font-size:24px;
    }
	.blog-content p {
    font-size: 16px !important;
	}
	.blog-meta {
    flex-wrap: wrap;
}

.blog-meta .sub-title {
    margin-bottom: 0px;
}

.blog-content p span {
    font-size: 16px !important;
}
.reach-box p {
    font-size: 16px;
}
p.quotes-para {
    font-size: 16px;
}

p.font-italic {
    font-size: 16px;
}

.content-left p {
    font-size: 16px;
}

.quote-right p {
    font-size: 16px;
}

.member-content p {
    font-size: 16px;
}
div#pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.related-card img {
    height: auto;
}
.blog-item img {
    width: auto;
    height: auto;
}
.breadcrumb-wrap {
    font-size: 12px;
}
}


.privacy-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.privacy-check input{
    margin-top:5px;
}

.privacy-check label{
    font-size:15px;
    line-height:1.6;
    color:#333;
}

.privacy-check a{
    color:#000;
    text-decoration:underline;
}

.privacy-check input.error{
    outline:2px solid red;
}


.privacy-policy-section{
    padding:80px 0 10px;
	background:#f7f4ef;
}

.privacy-content{
    color:#444;
    line-height:1.9;
}

.privacy-content h2{
    margin:30px 0 15px;
    font-size:32px;
    font-weight:600;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

section.privacy-policy-section h3 {
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}
.privacy-content h3 {
    font-size: 30px !important;
    color: #0A0A0B !important;
}
.privacy-content p{line-height: 30px;margin-bottom: 25px;color: #0A0A0B;font-family: 'Cormorant Garamond';font-size: 20px;}

.privacy-content ul{
    margin:0 0 20px 20px;
    line-height: 30px;
    margin-bottom: 25px;
    color: #0A0A0B;
    font-family: 'Cormorant Garamond';
    font-size: 20px;
}

.privacy-content li{
    margin-bottom:10px;
    font-family: 'Cormorant Garamond';
}

.privacy-content a{
    color:#000;
    text-decoration:underline;
	font-size: 18px;
}

@media(max-width:767px){

    .privacy-content h2{
        font-size:26px;
    }

    .privacy-content h3{
        font-size:20px;
    }

}