body {
   font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

/* =========================================
   WMK TOP SCX NAVBAR
========================================= */
h1,h2,h3 {
    font-family: "Playfair Display", serif;
}
.wmk-top-scx-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 17px 4.5vw;
}

.wmk-top-scx-navbar-container {
    max-width: 100%;
    padding: 0;
}

/* Logo */

.wmk-top-scx-navbar-logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.wmk-top-scx-navbar-logo img {
    display: block;
    width: 100px;
    height: auto;
    object-fit: contain;
    /* filter: brightness(30); */
}

/* Navigation wrapper */

.wmk-top-scx-navbar-collapse {
    justify-content: flex-end;
    align-items: center;
}

/* Menu */

.wmk-top-scx-navbar-menu {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-right: 32px;
}

.wmk-top-scx-nav-link {
    position: relative;
    display: block;
    padding: 18px 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.wmk-top-scx-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: #c9954b;
    transition: width 0.3s ease;
}

.wmk-top-scx-nav-link:hover {
    color: #ffffff !important;
}

.wmk-top-scx-nav-link:hover::after,
.wmk-top-scx-nav-link.active::after {
    width: 100%;
}

/* Let's Talk */

.wmk-top-scx-navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 92px;
    height: 40px;

    padding: 0 20px;

    border: 1px solid #9d743c;

    color: #fff;
    background: #d3a35c;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.wmk-top-scx-navbar-cta:hover {
    color: #ffffff;
    background: #b88946;
    border-color: #b88946;
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.wmk-top-scx-navbar-toggler {
    width: 42px;
    height: 38px;

    padding: 7px 8px;

    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 0;

    box-shadow: none !important;

    background: rgba(0, 0, 0, 0.15);
}

.wmk-top-scx-navbar-toggler:focus {
    box-shadow: none !important;
}

.wmk-top-scx-toggler-line {
    display: block;
    width: 24px;
    height: 1px;
    margin: 5px auto;

    background: #ffffff;

    transition: 0.3s ease;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .wmk-top-scx-navbar {
        padding: 15px 30px;
    }

    .wmk-top-scx-navbar-logo img {
        width: 165px;
    }

    .wmk-top-scx-navbar-collapse {
        margin-top: 15px;
        padding: 15px 20px 20px;

        background: rgba(5, 7, 9, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wmk-top-scx-navbar-menu {
        width: 100%;
        gap: 0;
        margin: 0;
    }

    .wmk-top-scx-navbar-menu .nav-item {
        width: 100%;
    }

    .wmk-top-scx-nav-link {
        padding: 13px 0 !important;
        font-size: 10px;
    }

    .wmk-top-scx-nav-link::after {
        bottom: 5px;
    }

    .wmk-top-scx-navbar-cta {
        margin-top: 12px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .wmk-top-scx-navbar {
        padding: 13px 20px;
    }

    .wmk-top-scx-navbar-logo img {
        width: 80px;
    }

    .wmk-top-scx-navbar-collapse {
        margin-top: 12px;
        padding: 12px 18px 18px;
    }

    .wmk-top-scx-navbar-cta {
        width: 100%;
    }
}
.wnk-hero-scx {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #080808;
}

.wnk-hero-scx-slider,
.wnk-hero-scx-slide {
    width: 100%;
    height: 100%;
}

.wnk-hero-scx-slide {
    position: relative;
    overflow: hidden;
}

.wnk-hero-scx-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.wnk-hero-scx-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.82) 24%,
            rgba(0, 0, 0, 0.46) 48%,
            rgba(0, 0, 0, 0.10) 78%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.76) 0%,
            transparent 35%,
            rgba(0, 0, 0, 0.12) 100%
        );
}

.wnk-hero-scx-container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 7%;
}

.wnk-hero-scx-content {
    position: absolute;
    top: 50%;
    left: 7%;
    max-width: 560px;
    transform: translateY(-56%);
}

.wnk-hero-scx-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
    color: #c89a55;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.6px;
}

.wnk-hero-scx-eyebrow-line {
    display: inline-block;
    width: 27px;
    height: 1px;
    background: #c89a55;
}

.wnk-hero-scx-title {
    margin: 0;
    color: #f5f3ef;
    font-size: clamp(54px, 5.25vw, 78px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;
}

.wnk-hero-scx-title span {
    color: #c99851;
}

.wnk-hero-scx-title-line {
    width: 33px;
    height: 2px;
    margin: 26px 0 17px;
    background: #c99851;
}

.wnk-hero-scx-description {
    max-width: 360px;
    margin: 0;
    color: rgb(255 255 255 / 79%);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.wnk-hero-scx-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 27px;
}

.wnk-hero-scx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 140px;
    height: 50px;
    padding: 0 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
}

.wnk-hero-scx-btn-arrow {
    font-size: 15px;
    line-height: 1;
}

.wnk-hero-scx-btn-primary {
    color: #fff;
    background: #c69650;
    border: 1px solid #c69650;
}

.wnk-hero-scx-btn-primary:hover {
    color: #fff;
    background: #b7833d;
    border-color: #b7833d;
}

.wnk-hero-scx-btn-outline {
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: transparent;
}

.wnk-hero-scx-btn-outline:hover {
    color: #fff;
    border-color: #c69650;
    background: rgba(198, 150, 80, 0.08);
}


/* Bottom Section */

.wnk-hero-scx-bottom {
    position: absolute;
    right: 7%;
    bottom: 9%;
    left: 7%;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.wnk-hero-scx-counter {
    flex: 0 0 125px;
    padding-bottom: 2px;
}

.wnk-hero-scx-counter-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    letter-spacing: 0.5px;
}

.wnk-hero-scx-counter-number .wnk-hero-scx-current {
    color: #c99851;
    font-size: 24px;
    font-weight: 400;
}

.wnk-hero-scx-progress {
    position: relative;
    width: 120px;
    height: 2px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.28);
}

.wnk-hero-scx-progress span {
    display: block;
    width: 40%;
    height: 100%;
    background: #c99851;
}


/* Features */

.wnk-hero-scx-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    max-width: 760px;
}

.wnk-hero-scx-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 180px;
}

.wnk-hero-scx-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(198, 150, 80, 0.7);
    border-radius: 50%;
}

.wnk-hero-scx-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #c99851;
    stroke-width: 1;
}

.wnk-hero-scx-feature-content h4 {
    margin: 0 0 3px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
}

.wnk-hero-scx-feature-content p {
 margin: 0;
    color: rgb(255 255 255 / 63%);
    font-size: 14px;
    line-height: 1.45;
}


/* Arrows */

.wnk-hero-scx-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wnk-hero-scx-arrow span {
    margin-top: -3px;
    font-size: 23px;
    font-weight: 200;
    line-height: 1;
}

.wnk-hero-scx-arrow:hover {
    background: #c69650;
    border-color: #c69650;
}

.wnk-hero-scx-prev {
    left: 12px;
}

.wnk-hero-scx-next {
    right: 12px;
}


/* Slick */

.wnk-hero-scx-slider .slick-list,
.wnk-hero-scx-slider .slick-track {
    height: 100%;
}

.wnk-hero-scx-slider .slick-slide {
    height: 100%;
}

.wnk-hero-scx-slider .slick-slide > div {
    height: 100%;
}


/* Animation */

.wnk-hero-scx-slide .wnk-hero-scx-content,
.wnk-hero-scx-slide .wnk-hero-scx-bottom {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.9s ease;
}

.wnk-hero-scx-slide.slick-active .wnk-hero-scx-content {
    opacity: 1;
    transform: translateY(-56%);
}

.wnk-hero-scx-slide.slick-active .wnk-hero-scx-bottom {
    opacity: 1;
}


/* Tablet */

@media (max-width: 991.98px) {

    .wnk-hero-scx {
        min-height: 650px;
    }

    .wnk-hero-scx-container {
        padding: 0 5%;
    }

    .wnk-hero-scx-content {
        left: 5%;
        max-width: 500px;
    }

    .wnk-hero-scx-title {
        font-size: clamp(50px, 7vw, 68px);
    }

    .wnk-hero-scx-bottom {
        right: 5%;
        bottom: 6%;
        left: 5%;
    }

    .wnk-hero-scx-features {
        gap: 15px;
    }

    .wnk-hero-scx-feature {
        min-width: auto;
    }

    .wnk-hero-scx-feature-content {
        display: none;
    }

    .wnk-hero-scx-feature-icon {
        width: 43px;
        height: 43px;
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .wnk-hero-scx {
        height: 100svh;
        min-height: 650px;
    }

    .wnk-hero-scx-bg {
        background-position: 63% center;
    }

    .wnk-hero-scx-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.91) 0%,
                rgba(0, 0, 0, 0.72) 70%,
                rgba(0, 0, 0, 0.30) 100%
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.88) 0%,
                transparent 48%
            );
    }

    .wnk-hero-scx-container {
        padding: 0 25px;
    }

    .wnk-hero-scx-content {
        top: 44%;
        left: 25px;
        right: 25px;
        max-width: none;
        transform: translateY(-50%);
    }

    .wnk-hero-scx-eyebrow {
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .wnk-hero-scx-title {
        font-size: clamp(43px, 13vw, 58px);
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .wnk-hero-scx-title-line {
        margin: 20px 0 14px;
    }

    .wnk-hero-scx-description {
        max-width: 290px;
        font-size: 10px;
    }

    .wnk-hero-scx-actions {
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .wnk-hero-scx-btn {
        min-width: 135px;
        height: 34px;
        font-size: 7px;
    }

    .wnk-hero-scx-bottom {
        right: 25px;
        bottom: 27px;
        left: 25px;
        display: block;
    }

    .wnk-hero-scx-counter {
        width: 100%;
        margin-bottom: 17px;
    }

    .wnk-hero-scx-progress {
        width: 100px;
    }

    .wnk-hero-scx-features {
        justify-content: space-between;
        width: 100%;
    }

    .wnk-hero-scx-feature {
        gap: 0;
    }

    .wnk-hero-scx-feature-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .wnk-hero-scx-feature-icon svg {
        width: 19px;
        height: 19px;
    }

    .wnk-hero-scx-feature-content {
        display: none;
    }

    .wnk-hero-scx-arrow {
        top: 50%;
        width: 28px;
        height: 28px;
    }

    .wnk-hero-scx-prev {
        left: 8px;
    }

    .wnk-hero-scx-next {
        right: 8px;
    }
}


/* Small Mobile */

@media (max-width: 400px) {

    .wnk-hero-scx {
        min-height: 600px;
    }

    .wnk-hero-scx-title {
        font-size: 41px;
    }

    .wnk-hero-scx-description {
        max-width: 260px;
    }

    .wnk-hero-scx-bottom {
        bottom: 20px;
    }

    .wnk-hero-scx-feature-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .wnk-hero-scx-actions {
        gap: 7px;
    }

    .wnk-hero-scx-btn {
        min-width: 125px;
    }
}
.wmk-expertise-scx {
    position: relative;
    overflow: hidden;
    padding: 72px 0 40px;
    background: #ffffff;
    color: #171717;
}




/* Intro */

.wmk-expertise-scx-intro {
    max-width: 650px;
    margin-bottom: 28px;
}

.wmk-expertise-scx-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #b7833f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3.8px;
}

.wmk-expertise-scx-label i {
    display: block;
    width: 59px;
    height: 1px;
    background: #b7833f;
}

.wmk-expertise-scx-title {
    margin: 0 0 20px;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.7px;
}

.wmk-expertise-scx-title span {
    color: #b77e39;
}

.wmk-expertise-scx-description {
    margin: 11px 0 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.55;
}

.wmk-expertise-scx-title-line {
    width: 20px;
    height: 1px;
    margin-top: 11px;
    background: #b7833f;
}


/* Cards Grid */

.wmk-expertise-scx-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 20px;
}

.wmk-expertise-scx-card {
    min-height: 151px;
    padding: 14px 8px 10px;
    text-align: center;
    border: 1px solid #eeeeee;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.wmk-expertise-scx-card:hover {
    transform: translateY(-4px);
    border-color: #d9c09c;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}


/* Icons */

.wmk-expertise-scx-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border: 1px solid #d8bd94;
    border-radius: 50%;
}

.wmk-expertise-scx-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #b7833f;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Card Typography */

.wmk-expertise-scx-card h3 {
    min-height: 24px;
    margin: 0 0 10px;
    color: #202020;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.wmk-expertise-scx-card p {
    max-width: 145px;
    margin: 0 auto;
    color: #777777;
    font-size: 14px;
    line-height: 1.65;
}


/* Bottom Ornament */

.wmk-expertise-scx-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 30px;
}

.wmk-expertise-scx-bottom::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eeeeee;
    content: "";
}

.wmk-expertise-scx-bottom span {
    position: relative;
    z-index: 1;
    display: block;
    width: 7px;
    height: 7px;
    background: #b7833f;
    transform: rotate(45deg);
}


/* Tablet */

@media (max-width: 991.98px) {

    .wmk-expertise-scx {
        padding: 60px 0 35px;
    }

    .wmk-expertise-scx-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .wmk-expertise-scx-card {
        min-height: 165px;
        padding: 18px 12px;
    }

    .wmk-expertise-scx-card h3 {
        font-size: 9px;
    }

    .wmk-expertise-scx-card p {
        font-size: 8px;
    }
}


/* Mobile */

@media (max-width: 575.98px) {

    .wmk-expertise-scx {
        padding: 50px 0 25px;
    }

    .wmk-expertise-scx-intro {
        margin-bottom: 25px;
    }

    .wmk-expertise-scx-label {
        font-size: 8px;
        letter-spacing: 2.8px;
    }

    .wmk-expertise-scx-title {
        font-size: 28px;
        line-height: 1.05;
    }

    .wmk-expertise-scx-description {
        font-size: 10px;
    }

    .wmk-expertise-scx-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .wmk-expertise-scx-card {
        min-height: 170px;
        padding: 18px 10px 14px;
    }

    .wmk-expertise-scx-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 12px;
    }

    .wmk-expertise-scx-icon svg {
        width: 23px;
        height: 23px;
    }

    .wmk-expertise-scx-card h3 {
        font-size: 8px;
    }

    .wmk-expertise-scx-card p {
        max-width: 130px;
        font-size: 7px;
    }
}


/* Extra Small */

@media (max-width: 380px) {

    .wmk-expertise-scx-title {
        font-size: 25px;
    }

    .wmk-expertise-scx-grid {
        grid-template-columns: 1fr;
    }

    .wmk-expertise-scx-card {
        min-height: 145px;
    }

}
.wmk-hm-abt-scx {
    position: relative;
    overflow: hidden;
    padding: 75px 0 35px;
    background: #ffffff;
    color: #151515;
}

.wmk-hm-abt-scx .container {
    position: relative;
}


/* Main Layout */

.wmk-hm-abt-scx-main {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1.45fr 0.48fr;
    align-items: center;
    min-height: 305px;
}


/* Background W */

.wmk-hm-abt-scx-background-letter {
    position: absolute;
    top: 15px;
    left: 36%;
    z-index: 0;
    color: #f5f4f1;
    font-size: 275px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}


/* Content */

.wmk-hm-abt-scx-content {
    position: relative;
    z-index: 2;
}

.wmk-hm-abt-scx-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #b57c35;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3.5px;
}

.wmk-hm-abt-scx-label i {
    display: block;
    width: 67px;
    height: 1px;
    background: #c6a16d;
}

.wmk-hm-abt-scx-title {
    margin: 0;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1.2px;
}

.wmk-hm-abt-scx-title span {
    color: #bd8240;
}

.wmk-hm-abt-scx-description {
    max-width: 310px;
    margin: 12px 0 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.wmk-hm-abt-scx-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #222222;
    padding-bottom: 5px;
    padding-top: 10px;
}

.wmk-hm-abt-scx-link span {
    font-size: 13px;
    line-height: 1;
}


/* Images */

.wmk-hm-abt-scx-images {
    position: relative;
    z-index: 2;
    height: 300px;
        display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
}

.wmk-hm-abt-scx-person {
    width: 150px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

.wmk-hm-abt-scx-person img,
.wmk-hm-abt-scx-building img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.wmk-hm-abt-scx-building { 
    width: 250px;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
}


/* Stats */

.wmk-hm-abt-scx-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    height: 100%;
    padding-left: 15px;
}

.wmk-hm-abt-scx-stat strong {
    display: block;
    color: #111111;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.wmk-hm-abt-scx-stat strong span {
    color: #b57d3b;
}

.wmk-hm-abt-scx-stat p {
    margin: 5px 0 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.35;
}


/* Features */

.wmk-hm-abt-scx-features {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 10px;
}

.wmk-hm-abt-scx-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 55px;
    padding: 0 18px;
    border-right: 1px solid #eeeeee;
}

.wmk-hm-abt-scx-feature:first-child {
    padding-left: 10px;
}

.wmk-hm-abt-scx-feature:last-child {
    border-right: 0;
}

.wmk-hm-abt-scx-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
}

.wmk-hm-abt-scx-feature-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: #b98647;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wmk-hm-abt-scx-feature h3 {
    margin: 0 0 4px;
    color: #262626;
    font-size: 18px;
}

.wmk-hm-abt-scx-feature p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.45;
}


/* Bottom Divider */

.wmk-hm-abt-scx-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin-top: 6px;
}

.wmk-hm-abt-scx-divider::before {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 50%;
    height: 1px;
    background: #eadfce;
    content: "";
}

.wmk-hm-abt-scx-divider span {
    position: relative;
    z-index: 2;
    display: block;
    width: 7px;
    height: 7px;
    background: #bd8240;
    transform: rotate(45deg);
}


/* Tablet */

@media (max-width: 991.98px) {

    .wmk-hm-abt-scx {
        padding: 60px 0 35px;
    }

    .wmk-hm-abt-scx-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .wmk-hm-abt-scx-background-letter {
        left: 45%;
        font-size: 220px;
    }

    .wmk-hm-abt-scx-images {
        height: 270px;
    }

    .wmk-hm-abt-scx-building {
        right: 0;
        width: 190px;
        height: 250px;
    }

    

    .wmk-hm-abt-scx-stats {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 10px 0 0;
    }

    .wmk-hm-abt-scx-features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }

    .wmk-hm-abt-scx-feature:nth-child(2) {
        border-right: 0;
    }

    .wmk-hm-abt-scx-feature:nth-child(3) {
        padding-left: 10px;
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .wmk-hm-abt-scx {
        padding: 50px 0 30px;
    }

    .wmk-hm-abt-scx-main {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
    }

    .wmk-hm-abt-scx-background-letter {
        top: 70px;
        left: 25%;
        font-size: 180px;
    }

    .wmk-hm-abt-scx-title {
        font-size: 45px;
        line-height: 1.06;
    }

    .wmk-hm-abt-scx-description {
        max-width: 100%;
        font-size: 14px;
    }

    .wmk-hm-abt-scx-images {
        height: 300px;
        width: 100%;
    }

    .wmk-hm-abt-scx-building {
        right: 5%;
        width: 210px;
        height: 275px;
    }


    .wmk-hm-abt-scx-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 100%;
    }

    .wmk-hm-abt-scx-stat strong {
        font-size: 24px;
    }

    .wmk-hm-abt-scx-stat p {
        font-size: 14px;
    }

    .wmk-hm-abt-scx-features {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .wmk-hm-abt-scx-feature,
    .wmk-hm-abt-scx-feature:first-child,
    .wmk-hm-abt-scx-feature:nth-child(3) {
        padding: 15px 5px;
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .wmk-hm-abt-scx-feature:last-child {
        border-bottom: 0;
    }

    .wmk-hm-abt-scx-feature h3 {
        font-size: 14px;
    }

    .wmk-hm-abt-scx-feature p {
        font-size: 14px;
    }

    .wmk-hm-abt-scx-divider::before {
        left: 10%;
        width: 80%;
    }
}


/* Small Mobile */

@media (max-width: 400px) {

    .wmk-hm-abt-scx-title {
        font-size: 45px;
    }

    .wmk-hm-abt-scx-images {
        height: 270px;
    }

    .wmk-hm-abt-scx-building {
        width: 185px;
        height: 245px;
    }



    .wmk-hm-abt-scx-stats {
        gap: 8px;
    }

    .wmk-hm-abt-scx-stat strong {
        font-size: 21px;
    }

}
/* =========================================================
   WINMARK - FEATURED PROJECTS
   Main Class: .wmk-hm-proj-scx
   ========================================================= */

.wmk-hm-proj-scx {
    position: relative;
    overflow: hidden;
    padding: 70px 0 35px;
    background: #ffffff;
    color: #171717;
}


/* =========================================================
   MAIN BOOTSTRAP ROW
   ========================================================= */

.wmk-hm-proj-scx-layout {
    min-height: 320px;
}


/* =========================================================
   LEFT INTRO CONTENT
   ========================================================= */

.wmk-hm-proj-scx-intro {
    padding-right: 10px;
}

.wmk-hm-proj-scx-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #b77e39;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1.3;
    white-space: nowrap;
}

.wmk-hm-proj-scx-label i {
    display: block;
    width: 50px;
    height: 1px;
    flex-shrink: 0;
    background: #c69d69;
}

.wmk-hm-proj-scx-title {
    margin: 0;
    color: #171717;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1px;
}

.wmk-hm-proj-scx-title span {
    color: #b77e39;
}

.wmk-hm-proj-scx-description {
    max-width: 310px;
    margin: 18px 0 0;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.wmk-hm-proj-scx-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 145px;
    margin-top: 25px;
    padding: 11px 12px;
    color: #333333;
    background: #ffffff;
    border: 1px solid #d3ad7b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.wmk-hm-proj-scx-button strong {
    color: #b77e39;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: color 0.3s ease;
}

.wmk-hm-proj-scx-button:hover {
    color: #ffffff;
    background: #b77e39;
    border-color: #b77e39;
}

.wmk-hm-proj-scx-button:hover strong {
    color: #ffffff;
}


/* =========================================================
   PROJECTS AREA
   Bootstrap columns control the widths
   ========================================================= */


.wmk-hm-proj-scx-projects > [class*="col-"] {
    height: 100%;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.wmk-hm-proj-scx-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #111820;
    border-radius: 20px;
}

.wmk-hm-proj-scx-card-large {
    height: 400px;
}

.wmk-hm-proj-scx-card-right {
    height: 400px;
}


/* =========================================================
   MIDDLE PROJECT COLUMN
   ========================================================= */

.wmk-hm-proj-scx-middle {
    height: 320px;
}

.wmk-hm-proj-scx-middle > .col-12 {
    height: 62%;
}

.wmk-hm-proj-scx-card-small {
    height: 100%;
}


/* =========================================================
   PROJECT IMAGE
   ========================================================= */

.wmk-hm-proj-scx-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wmk-hm-proj-scx-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.wmk-hm-proj-scx-card:hover .wmk-hm-proj-scx-image img {
    transform: scale(1.06);
}


/* =========================================================
   DARK IMAGE OVERLAY
   ========================================================= */

.wmk-hm-proj-scx-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / 48%) 10%, rgb(0 0 0 / 56%) 35%, rgba(0, 4, 9, 0.92) 100%);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.wmk-hm-proj-scx-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}





/* =========================================================
   PROJECT INFO
   ========================================================= */

.wmk-hm-proj-scx-project-info {
    color: #ffffff;
}

.wmk-hm-proj-scx-project-info h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.wmk-hm-proj-scx-location {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.wmk-hm-proj-scx-location span:first-child {
    flex-shrink: 0;
    color: #c69756;
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   PROJECT LINK
   ========================================================= */

.wmk-hm-proj-scx-project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 14px;
    padding-top: 8px;
    color: #c69756;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.wmk-hm-proj-scx-project-link:hover {
    color: #ffffff;
}

.wmk-hm-proj-scx-project-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #c69756;
    border: 1px solid #c69756;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        padding: 0 0 2px;
}

.wmk-hm-proj-scx-project-link:hover span {
    color: #ffffff;
    background: #b77e39;
    border-color: #b77e39;
}


/* =========================================================
   BOTTOM DECORATIVE DIVIDER
   ========================================================= */

.wmk-hm-proj-scx-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    margin-top: 40px;
}

.wmk-hm-proj-scx-divider::before {
    position: absolute;
    top: 50%;
    left: 18%;
    width: 64%;
    height: 1px;
    background: #eadfce;
    content: "";
}

.wmk-hm-proj-scx-divider span {
    position: relative;
    z-index: 2;
    display: block;
    width: 7px;
    height: 7px;
    background: #bd8240;
    transform: rotate(45deg);
}


/* =========================================================
   TABLET
   Bootstrap md/lg breakpoint
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-hm-proj-scx {
        padding: 60px 0 35px;
    }

    .wmk-hm-proj-scx-layout {
        min-height: auto;
    }

    .wmk-hm-proj-scx-intro {
        max-width: 650px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .wmk-hm-proj-scx-title {
        font-size: 45px;
        line-height: 1.1;
    }

    .wmk-hm-proj-scx-description {
        max-width: 550px;
        font-size: 14px;
    }

    .wmk-hm-proj-scx-projects {
        height: 420px;
    }

    .wmk-hm-proj-scx-card-large,
    .wmk-hm-proj-scx-card-right {
        height: 420px;
    }

    .wmk-hm-proj-scx-middle {
        height: 420px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-hm-proj-scx {
        padding: 50px 0 30px;
    }

    .wmk-hm-proj-scx-label {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .wmk-hm-proj-scx-title {
        font-size: 45px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .wmk-hm-proj-scx-description {
        max-width: 100%;
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.6;
    }

    .wmk-hm-proj-scx-button {
        margin-top: 20px;
        font-size: 14px;
    }


    /* Projects */

    .wmk-hm-proj-scx-projects {
        height: auto;
    }

    .wmk-hm-proj-scx-projects > [class*="col-"] {
        height: auto;
    }

    .wmk-hm-proj-scx-card-large {
        height: 400px;
    }

    .wmk-hm-proj-scx-card-right {
        height: 400px;
    }


    /* Middle */

    .wmk-hm-proj-scx-middle {
        height: auto;
    }

    .wmk-hm-proj-scx-middle > .col-12 {
        height: auto;
    }

    .wmk-hm-proj-scx-card-small {
        height: 300px;
    }


    /* Card Content */

    .wmk-hm-proj-scx-card-content {
        padding: 16px;
    }

    .wmk-hm-proj-scx-project-info h3 {
        font-size: 18px;
    }

    .wmk-hm-proj-scx-location {
        font-size: 14px;
    }

    .wmk-hm-proj-scx-project-link {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-hm-proj-scx {
        padding: 45px 0 25px;
    }

    .wmk-hm-proj-scx-title {
        font-size: 45px;
        line-height: 1.08;
    }

    .wmk-hm-proj-scx-description {
        font-size: 14px;
    }

    .wmk-hm-proj-scx-card-large,
    .wmk-hm-proj-scx-card-right {
        height: 360px;
    }

    .wmk-hm-proj-scx-card-small {
        height: 280px;
    }

    .wmk-hm-proj-scx-card-content {
        padding: 15px;
    }

    .wmk-hm-proj-scx-divider {
        margin-top: 10px;
    }

    .wmk-hm-proj-scx-divider::before {
        left: 5%;
        width: 90%;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .wmk-hm-proj-scx-title {
        font-size: 45px;
    }

    .wmk-hm-proj-scx-card-large,
    .wmk-hm-proj-scx-card-right {
        height: 340px;
    }

    .wmk-hm-proj-scx-card-small {
        height: 260px;
    }

    .wmk-hm-proj-scx-project-info h3 {
        font-size: 18px;
    }

    .wmk-hm-proj-scx-location,
    .wmk-hm-proj-scx-project-link {
        font-size: 14px;
    }

}
/* =========================================================
   WHY CHOOSE US
   Main Class: .wmk-hm-why-scx
   ========================================================= */

.wmk-hm-why-scx {
    position: relative;
    overflow: hidden;
    padding: 70px 0 30px;
    background: #ffffff;
    color: #171717;
}



/* =========================================================
   SECTION HEADING
   ========================================================= */

.wmk-hm-why-scx-heading {
    max-width: 600px;
    margin: 0 auto 35px;
    text-align: center;
}

.wmk-hm-why-scx-label {
    color: #b77e39;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1.3;
}

.wmk-hm-why-scx-heading-line {
    width: 30px;
    height: 1px;
    margin: 12px auto 10px;
    background: #c49a65;
}

.wmk-hm-why-scx-title {
    margin: 0;
    color: #171717;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
}

.wmk-hm-why-scx-title span {
    color: #b77e39;
}

.wmk-hm-why-scx-description {
    max-width: 540px;
    margin: 12px auto 0;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   FEATURE ROW
   ========================================================= */

.wmk-hm-why-scx-row {
    align-items: stretch;
}


/* =========================================================
   FEATURE CARD
   ========================================================= */

.wmk-hm-why-scx-card {
    height: 100%;
    padding: 16px 28px 12px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.wmk-hm-why-scx-card:hover {
    border-color: #dec39d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}


/* =========================================================
   CARD HEADING
   ========================================================= */

.wmk-hm-why-scx-card-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wmk-hm-why-scx-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    background: #faf7f2;
    border-radius: 50%;
}

.wmk-hm-why-scx-card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #bd8240;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wmk-hm-why-scx-card-heading h3 {
    margin: 0;
    color: #1c1c1c;
    font-size: 20px;
    line-height: 1.25;
}

.wmk-hm-why-scx-card-line {
    display: block;
    width: 24px;
    height: 1px;
    margin-top: 9px;
    background: #bd8240;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.wmk-hm-why-scx-list {
    margin-top: 12px;
}

.wmk-hm-why-scx-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 53px;
    padding: 7px 0;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

.wmk-hm-why-scx-item:last-child {
    border-bottom: 0;
}

.wmk-hm-why-scx-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
}

.wmk-hm-why-scx-item-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #bd8240;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wmk-hm-why-scx-item p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   BOTTOM DIVIDER
   ========================================================= */

.wmk-hm-why-scx-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    margin-top: 35px;
}

.wmk-hm-why-scx-divider::before {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 50%;
    height: 1px;
    background: #eadfce;
    content: "";
}

.wmk-hm-why-scx-divider span {
    position: relative;
    z-index: 2;
    display: block;
    width: 7px;
    height: 7px;
    background: #bd8240;
    transform: rotate(45deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-hm-why-scx {
        padding: 60px 0 30px;
    }

    .wmk-hm-why-scx-heading {
        margin-bottom: 30px;
    }

    .wmk-hm-why-scx-title {
        font-size: 45px;
    }

    .wmk-hm-why-scx-card {
        padding: 18px 22px 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-hm-why-scx {
        padding: 50px 0 25px;
    }

    .wmk-hm-why-scx-heading {
        margin-bottom: 25px;
    }

    .wmk-hm-why-scx-label {
        font-size: 14px;
    }

    .wmk-hm-why-scx-title {
        font-size: 45px;
        line-height: 1.08;
    }

    .wmk-hm-why-scx-description {
        font-size: 14px;
    }

    .wmk-hm-why-scx-desktop-break {
        display: none;
    }

    .wmk-hm-why-scx-card {
        padding: 20px 22px 15px;
    }

    .wmk-hm-why-scx-card-heading h3 {
        font-size: 18px;
    }

    .wmk-hm-why-scx-item p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-hm-why-scx {
        padding: 45px 0 25px;
    }

    .wmk-hm-why-scx-title {
        font-size: 45px;
    }

    .wmk-hm-why-scx-card {
        padding: 20px 18px 15px;
    }

    .wmk-hm-why-scx-item {
        gap: 12px;
    }

    .wmk-hm-why-scx-divider::before {
        left: 5%;
        width: 90%;
    }

}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width: 400px) {

    .wmk-hm-why-scx-title {
        font-size: 45px;
    }

    .wmk-hm-why-scx-card-icon {
        width: 50px;
        height: 50px;
    }

    .wmk-hm-why-scx-card-heading h3 {
        font-size: 18px;
    }

    .wmk-hm-why-scx-item p {
        font-size: 14px;
    }

}
/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */

.wmk-testimo-scx {
    position: relative;
    overflow: hidden;
    padding: 55px 0 28px;
    background: #fdfbf7;
    color: #171717;
}




/* =========================================================
   ARCHITECTURAL BACKGROUND
   ========================================================= */

.wmk-testimo-scx-bg {
    position: absolute;
    z-index: 1;
    width: 280px;
    height: 300px;
    opacity: 0.45;
    pointer-events: none;
}

.wmk-testimo-scx-bg-left {
    left: -70px;
    top: 85px;
    background-image:
        linear-gradient(30deg, transparent 48%, #ddd1bf 49%, transparent 50%),
        linear-gradient(150deg, transparent 48%, #ddd1bf 49%, transparent 50%);
    background-size: 55px 45px;
    transform: perspective(350px) rotateY(15deg);
}

.wmk-testimo-scx-bg-right {
    right: -55px;
    top: 45px;
    background-image:
        linear-gradient(30deg, transparent 48%, #d9ccb8 49%, transparent 50%),
        linear-gradient(150deg, transparent 48%, #d9ccb8 49%, transparent 50%);
    background-size: 55px 45px;
    transform: perspective(350px) rotateY(-15deg);
}


/* =========================================================
   HEADING
   ========================================================= */

.wmk-testimo-scx-heading {
    max-width: 650px;
    margin: 0 auto 17px;
    text-align: center;
}

.wmk-testimo-scx-label {
    color: #b18148;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: 1.3;
}

.wmk-testimo-scx-label-line {
    display: block;
    width: 38px;
    height: 1px;
    margin: 10px auto 11px;
    background: #c29a66;
}

.wmk-testimo-scx-title {
    margin: 0;
    color: #171717;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
}

.wmk-testimo-scx-title span {
    color: #b07d3d;
    font-style: italic;
}

.wmk-testimo-scx-description {
    margin: 13px 0 0;
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================================
   SLIDER WRAPPER
   ========================================================= */

.wmk-testimo-scx-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


/* =========================================================
   SLICK SLIDER
   ========================================================= */

.wmk-testimo-scx-slider {
    width: 100%;
}

.wmk-testimo-scx-slider .slick-list {
    margin: 0 -7px;
    padding: 0;
}

.wmk-testimo-scx-slide {
    padding: 0 7px;
}


/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

.wmk-testimo-scx-card {
    position: relative;
    height: 258px;
    padding: 19px 24px 17px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #eeeae4;
    border-radius: 11px;
    box-shadow: 0 7px 20px rgba(40, 32, 20, 0.045);
}

.wmk-testimo-scx-quote {
    height: 28px;
    color: #b9874b;
    font-size: 42px;
    font-weight: 700;
    line-height: 0.8;
}

.wmk-testimo-scx-text {
    min-height: 91px;
    margin: 12px 0 0;
    color: #303030;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   AUTHOR DIVIDER
   ========================================================= */

.wmk-testimo-scx-line {
    width: 36px;
    height: 1px;
    margin: 7px 0 12px;
    background: #c69b62;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.wmk-testimo-scx-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wmk-testimo-scx-avatar {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    overflow: hidden;
    border-radius: 50%;
    background: #eee8df;
}

.wmk-testimo-scx-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wmk-testimo-scx-author-info {
    min-width: 0;
}

.wmk-testimo-scx-author-info h3 {
    margin: 0 0 4px;
    color: #222222;
    font-size: 16px;
    line-height: 1.2;
}

.wmk-testimo-scx-role {
    display: block;
    color: #b18148;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.wmk-testimo-scx-author-info p {
    margin: 3px 0 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.2;
}


/* =========================================================
   ARROWS
   ========================================================= */

.wmk-testimo-scx-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    padding: 0;
    color: #2c2c2c;
    background: #fdfbf7;
    border: 1px solid #d7b98e;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.wmk-testimo-scx-arrow span {
    position: relative;
    top: -3px;
}

.wmk-testimo-scx-arrow:hover {
    color: #ffffff;
    background: #b18148;
    border-color: #b18148;
}

.wmk-testimo-scx-prev {
    left: -60px;
}

.wmk-testimo-scx-next {
    right: -60px;
}


/* =========================================================
   DOTS
   ========================================================= */

.wmk-testimo-scx-dots {
    min-height: 15px;
    margin-top: 13px;
}

.wmk-testimo-scx-dots ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wmk-testimo-scx-dots li {
    display: block;
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
}

.wmk-testimo-scx-dots li button {
    display: block;
    width: 9px;
    height: 9px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: transparent;
    border: 1px solid #9f8c73;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
}

.wmk-testimo-scx-dots li button::before {
    display: none;
}

.wmk-testimo-scx-dots li.slick-active button {
    background: #b9874b;
    border-color: #b9874b;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-testimo-scx {
        padding: 55px 0 30px;
    }

    .wmk-testimo-scx-title {
        font-size: 45px;
    }

    .wmk-testimo-scx-prev {
        left: -48px;
    }

    .wmk-testimo-scx-next {
        right: -48px;
    }

    .wmk-testimo-scx-card {
        height: 270px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-testimo-scx {
        padding: 48px 0 28px;
    }

    .wmk-testimo-scx-heading {
        margin-bottom: 25px;
    }

    .wmk-testimo-scx-title {
        font-size: 45px;
        line-height: 1.08;
    }

    .wmk-testimo-scx-description {
        font-size: 14px;
    }

    .wmk-testimo-scx-description br {
        display: none;
    }

    .wmk-testimo-scx-slider {
        padding: 0 8px;
    }

    .wmk-testimo-scx-slider .slick-list {
        margin: 0;
    }

    .wmk-testimo-scx-slide {
        padding: 0;
    }

    .wmk-testimo-scx-card {
        height: auto;
        min-height: 280px;
        padding: 20px 22px;
    }

    .wmk-testimo-scx-text {
        min-height: 100px;
    }

    .wmk-testimo-scx-arrow {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .wmk-testimo-scx-prev {
        left: -2px;
    }

    .wmk-testimo-scx-next {
        right: -2px;
    }

    .wmk-testimo-scx-bg {
        opacity: 0.2;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-testimo-scx {
        padding: 42px 0 25px;
    }

    .wmk-testimo-scx-title {
        font-size: 45px;
    }

    .wmk-testimo-scx-card {
        min-height: 285px;
        padding: 19px;
    }

    .wmk-testimo-scx-text {
        font-size: 14px;
    }

    .wmk-testimo-scx-prev {
        left: -3px;
    }

    .wmk-testimo-scx-next {
        right: -3px;
    }

    .wmk-testimo-scx-arrow {
        width: 32px;
        height: 32px;
    }

    .wmk-testimo-scx-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

}
/* =========================================================
   CTA SECTION
   ========================================================= */

.wmk-cta-scx {
    position: relative;
    min-height: 325px;
    overflow: hidden;
    background-color: #f8f3eb;

    /* Placeholder architectural image */
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 243, 235, 1) 0%,
            rgba(248, 243, 235, 0.98) 35%,
            rgba(248, 243, 235, 0.88) 48%,
            rgba(248, 243, 235, 0.35) 62%,
            rgba(248, 243, 235, 0) 72%
        ),
        url("../img/cta-ban-wnk.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.wmk-cta-scx .container {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    min-height: 265px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.wmk-cta-scx-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 52%;
    min-height: 265px;
    padding: 40px 0 25px;
}


/* =========================================================
   LABEL
   ========================================================= */

.wmk-cta-scx-label {
    color: #ae783d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.wmk-cta-scx-label-line {
    display: block;
    width: 30px;
    height: 1px;
    margin-top: 9px;
    margin-bottom: 10px;
    background: #bd8b52;
}


/* =========================================================
   HEADING
   ========================================================= */

.wmk-cta-scx-title {
    margin: 0;
    color: #171717;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.8px;
}

.wmk-cta-scx-title span {
    color: #ae783d;
    font-style: italic;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.wmk-cta-scx-description {
    margin: 12px 0 0;
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.wmk-cta-scx-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 17px;
}

.wmk-cta-scx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 160px;
    min-height: 40px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.wmk-cta-scx-btn strong {
    font-size: 18px;
    font-weight: 400;
    line-height: 0.8;
}

.wmk-cta-scx-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.wmk-cta-scx-btn-primary {
    color: #ffffff;
    background: #b57d3e;
    border: 1px solid #b57d3e;
}

.wmk-cta-scx-btn-primary:hover {
    color: #ffffff;
    background: #98662f;
    border-color: #98662f;
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.wmk-cta-scx-btn-secondary {
    color: #272727;
    background: transparent;
    border: 1px solid #c8a06e;
}

.wmk-cta-scx-btn-secondary:hover {
    color: #ffffff;
    background: #b57d3e;
    border-color: #b57d3e;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-cta-scx {
        min-height: 300px;
        background-position: 58% center;
    }

    .wmk-cta-scx .container {
        min-height: 300px;
    }

    .wmk-cta-scx-content {
        width: 60%;
        min-height: 300px;
    }

    .wmk-cta-scx-title {
        font-size: 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-cta-scx {
        min-height: auto;
        background-position: 70% center;
    }

    .wmk-cta-scx::before {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(248, 243, 235, 0.82);
        content: "";
    }

    .wmk-cta-scx .container {
        min-height: auto;
    }

    .wmk-cta-scx-content {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: auto;
        padding: 55px 20px;
    }

    .wmk-cta-scx-title {
        font-size: 45px;
        line-height: 1.06;
    }

    .wmk-cta-scx-description {
        font-size: 14px;
    }

    .wmk-cta-scx-desktop-break {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-cta-scx-content {
        padding: 45px 15px;
    }

    .wmk-cta-scx-label {
        font-size: 14px;
    }

    .wmk-cta-scx-title {
        font-size: 45px;
    }

    .wmk-cta-scx-buttons {
        align-items: flex-start;
        gap: 10px;
    }

    .wmk-cta-scx-btn {
        width: 190px;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.wmk-footer-scx {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #222222;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.wmk-footer-scx-main {
    position: relative; 
    padding: 50px 0 50px;
}


.wmk-footer-scx-row {
    align-items: flex-start;
}


/* =========================================================
   BRAND
   ========================================================= */

.wmk-footer-scx-brand {
    padding-right: 30px;
}

.wmk-footer-scx-logo img {
    width: 130px;
}



/* =========================================================
   BRAND DESCRIPTION
   ========================================================= */

.wmk-footer-scx-brand-line {
    width: 38px;
    height: 1px;
    margin: 15px 0 17px;
    background: #b58140;
}

.wmk-footer-scx-brand p {
    max-width: 235px;
    margin: 0;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.wmk-footer-scx-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.wmk-footer-scx-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: #282828;
    background: #ffffff;
    border: 1px solid #d8b986;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.wmk-footer-scx-socials a:hover {
    color: #ffffff;
    background: #b58140;
    border-color: #b58140;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.wmk-footer-scx-column,
.wmk-footer-scx-contact { 
    padding-left: 28px;
    border-left: 1px solid #eeeeee;
}

.wmk-footer-scx-column h3,
.wmk-footer-scx-contact h3 {
    margin: 0;
    color: #1e1e1e;
    font-size: 20px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.wmk-footer-scx-heading-line {
    display: block;
    width: 27px;
    height: 1px;
    margin: 11px 0 17px;
    background: #b58140;
}


/* =========================================================
   LINKS
   ========================================================= */

.wmk-footer-scx-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wmk-footer-scx-column li {
    margin: 0;
    padding: 0;
}

.wmk-footer-scx-column li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 32px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.wmk-footer-scx-column li a b {
    color: #b58140;
    font-size: 17px;
    font-weight: 400;
}

.wmk-footer-scx-column li a:hover {
    color: #b58140;
}


/* =========================================================
   CONTACT
   ========================================================= */

.wmk-footer-scx-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 51px;
    padding: 9px 0;
    border-bottom: 1px solid #eeeeee;
}

.wmk-footer-scx-contact-item:first-of-type {
    padding-top: 5px;
}

.wmk-footer-scx-contact-icon {
    flex: 0 0 20px;
    color: #b58140;
    font-size: 18px;
    line-height: 1.2;
}

.wmk-footer-scx-contact-item p {
    margin: 0;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.5;
}




/* =========================================================
   BOTTOM BAR
   ========================================================= */

.wmk-footer-scx-bottom {
    position: relative;
    z-index: 5;
    min-height: 51px;
    background: #191919;
}


.wmk-footer-scx-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 51px;
}

.wmk-footer-scx-bottom p {
    margin: 0;
    color: #d7d7d7;
    font-size: 14px;
    line-height: 1.4;
}

.wmk-footer-scx-legal {
    display: flex;
    align-items: center;
    gap: 27px;
}

.wmk-footer-scx-legal a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.wmk-footer-scx-legal a:hover {
    color: #b58140;
}

.wmk-footer-scx-legal span {
    width: 1px;
    height: 14px;
    background: #777777;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199.98px) {


    .wmk-footer-scx-brand {
        padding-right: 15px;
    }

    .wmk-footer-scx-column,
    .wmk-footer-scx-contact {
        padding-left: 20px;
    }


}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-footer-scx-main {
        padding: 50px 0 50px;
    }

    .wmk-footer-scx-brand {
        margin-bottom: 40px;
    }

    .wmk-footer-scx-column,
    .wmk-footer-scx-contact {
        margin-bottom: 35px;
    }


}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-footer-scx-main {
        min-height: auto;
        padding: 45px 0 70px;
    }

    .wmk-footer-scx-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .wmk-footer-scx-brand p {
        max-width: 310px;
    }

    .wmk-footer-scx-column,
    .wmk-footer-scx-contact {
        min-height: auto;
        margin-bottom: 30px;
        padding-left: 0;
        border-left: 0;
    }

    .wmk-footer-scx-column h3,
    .wmk-footer-scx-contact h3 {
        font-size: 16px;
    }

    .wmk-footer-scx-column li a {
        min-height: 36px;
        font-size: 14px;
        justify-content: start;
    }

    .wmk-footer-scx-contact-item p {
        font-size: 13px;
    }

    

    .wmk-footer-scx-bottom {
        padding: 18px 0;
    }

    .wmk-footer-scx-bottom-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .wmk-footer-scx-legal {
        gap: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-footer-scx-main {
        padding: 40px 0 55px;
    }

    

    .wmk-footer-scx-brand p {
        font-size: 14px;
    }

    .wmk-footer-scx-column,
    .wmk-footer-scx-contact {
        margin-bottom: 25px;
    }


    .wmk-footer-scx-bottom-row {
        align-items: center;
    }

    .wmk-footer-scx-bottom p {
        font-size: 10px;
    }

    .wmk-footer-scx-legal a {
        font-size: 10px;
    }

}
/* =========================================================
   INNER HERO
   ========================================================= */

.inner-hero-scx {
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.88) 23%,
            rgba(10, 10, 10, 0.58) 35%,
            rgba(10, 10, 10, 0.12) 54%,
            rgba(10, 10, 10, 0) 70%
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=85");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.inner-hero-scx .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CONTENT
   ========================================================= */

.inner-hero-scx-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 370px;
    min-height: 385px;
    padding: 150px 0 100px;
}


/* =========================================================
   LABEL
   ========================================================= */

.inner-hero-scx-label {
    display: block;
    margin-bottom: 7px;
    color: #bd9259; 
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 1.3;
}


/* =========================================================
   HEADING
   ========================================================= */

.inner-hero-scx-title {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1px;
}

.inner-hero-scx-title span {
    color: #b98a4f;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.inner-hero-scx-line {
    display: block;
    width: 40px;
    height: 1px;
    margin: 13px 0 12px;
    background: #bd9259;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.inner-hero-scx-description {
    max-width: 350px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82); 
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .inner-hero-scx {
        min-height: 350px;

        background-image:
            linear-gradient(
                90deg,
                rgba(10, 10, 10, 0.94) 0%,
                rgba(10, 10, 10, 0.82) 42%,
                rgba(10, 10, 10, 0.25) 70%,
                rgba(10, 10, 10, 0) 100%
            ),
            url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85");
    }

    .inner-hero-scx .container {
        min-height: 350px;
    }

    .inner-hero-scx-content {
        min-height: 350px;
        width: 400px;
    }

    .inner-hero-scx-title {
        font-size: 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .inner-hero-scx {
        min-height: 430px;
        background-position: 65% center;

        background-image:
            linear-gradient(
                90deg,
                rgba(8, 8, 8, 0.93) 0%,
                rgba(8, 8, 8, 0.78) 55%,
                rgba(8, 8, 8, 0.45) 100%
            ),
            url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=85");
    }

    .inner-hero-scx .container {
        min-height: 430px;
    }

    .inner-hero-scx-content {
        width: 100%;
        max-width: 500px;
        min-height: 430px;
        padding: 45px 20px;
    }

    .inner-hero-scx-title {
        font-size: 45px;
        line-height: 1.06;
    }

    .inner-hero-scx-description {
        max-width: 430px;
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .inner-hero-scx {
        min-height: 460px;
    }

    .inner-hero-scx .container {
        min-height: 460px;
    }

    .inner-hero-scx-content {
        min-height: 460px;
        padding: 40px 15px;
    }

    .inner-hero-scx-title {
        font-size: 45px;
    }

    .inner-hero-scx-description {
        font-size: 14px;
        line-height: 1.65;
    }

}
.wmk-abt-pg-scx-1 {
    position: relative;
    overflow: hidden;
    padding: 90px 0 35px;
    background: #ffffff;
}

.wmk-abt-pg-scx-1-row {
    min-height: 470px;
}


/* Content */

.wmk-abt-pg-scx-1-content {
    max-width: 470px;
    padding-right: 35px;
}

.wmk-abt-pg-scx-1-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #b17c3f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.wmk-abt-pg-scx-1-label span {
    width: 65px;
    height: 1px;
    background: #c49a65;
}

.wmk-abt-pg-scx-1-title {
    margin: 0;
    color: #171717;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
}

.wmk-abt-pg-scx-1-title span {
    color: #b27d3f;
}

.wmk-abt-pg-scx-1-description {
    margin: 17px 0 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

.wmk-abt-pg-scx-1-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding-bottom: 6px;
    color: #222222;
    border-bottom: 1px solid #b68143;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.wmk-abt-pg-scx-1-link span {
    color: #b68143;
    font-size: 18px;
    line-height: 1;
}

.wmk-abt-pg-scx-1-link:hover {
    color: #b68143;
}


/* Images */

.wmk-abt-pg-scx-1-images {
    position: relative;
    height: 470px;
    margin-left: 15px;
}

.wmk-abt-pg-scx-1-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 405px;
    overflow: hidden;
    border-radius: 4px;
}

.wmk-abt-pg-scx-1-main-image img,
.wmk-abt-pg-scx-1-secondary-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wmk-abt-pg-scx-1-secondary-image {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 185px;
    height: 225px;
    overflow: hidden;
    border: 7px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* Decorative Text */

.wmk-abt-pg-scx-1-images::before {
    font-family: "Playfair Display", serif;
    position: absolute;
    z-index: 0;
    top: 20px;
    left: -55px;
    color: rgba(182, 165, 140, 0.09);
    content: "W";
    font-size: 300px;
    line-height: 1;
}


/* Experience */

.wmk-abt-pg-scx-1-experience {
    position: absolute;
    z-index: 3;
    right: -5px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 105px;
    height: 105px;
    padding-left: 17px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.wmk-abt-pg-scx-1-experience strong {
    color: #1b1b1b;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.wmk-abt-pg-scx-1-experience span {
    margin-top: 7px;
    color: #777777;
    font-size: 14px;
    line-height: 1.35;
}


/* Highlights */

.wmk-abt-pg-scx-1-highlights {
    margin-top: 45px;
}

.wmk-abt-pg-scx-1-highlight {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 75px;
    padding: 8px 25px;
    border-right: 1px solid #eeeeee;
}

.wmk-abt-pg-scx-1-highlight:last-child {
    border-right: 0;
}

.wmk-abt-pg-scx-1-highlight-icon {
    flex: 0 0 42px;
    color: #b68143;
    font-size: 30px;
}

.wmk-abt-pg-scx-1-highlight h3 {
    margin: 0 0 5px;
    color: #282828;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.wmk-abt-pg-scx-1-highlight p {
    max-width: 250px;
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.45;
}


/* Divider */

.wmk-abt-pg-scx-1-divider {
    position: relative;
    width: 300px;
    height: 1px;
    margin: 30px auto 0;
    background: #e4d5c2;
}

.wmk-abt-pg-scx-1-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: #b68143;
    transform: translate(-50%, -50%) rotate(45deg);
}


/* Tablet */

@media (max-width: 991.98px) {

    .wmk-abt-pg-scx-1 {
        padding: 70px 0 30px;
    }

    .wmk-abt-pg-scx-1-content {
        padding-right: 15px;
    }

    .wmk-abt-pg-scx-1-title {
        font-size: 45px;
    }

    .wmk-abt-pg-scx-1-images {
        height: 400px;
    }

    .wmk-abt-pg-scx-1-main-image {
        height: 350px;
    }

    .wmk-abt-pg-scx-1-secondary-image {
        width: 145px;
        height: 180px;
    }

    .wmk-abt-pg-scx-1-highlight {
        padding: 8px 15px;
    }

}


/* Mobile */

@media (max-width: 767.98px) {

    .wmk-abt-pg-scx-1 {
        padding: 55px 0 25px;
    }

    .wmk-abt-pg-scx-1-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 45px;
    }

    .wmk-abt-pg-scx-1-title {
        font-size: 45px;
    }

    .wmk-abt-pg-scx-1-images {
        height: 380px;
        margin-left: 0;
    }

    .wmk-abt-pg-scx-1-main-image {
        width: 82%;
        height: 330px;
    }

    .wmk-abt-pg-scx-1-secondary-image {
        width: 145px;
        height: 175px;
    }

    .wmk-abt-pg-scx-1-experience {
        right: 0;
        bottom: 20px;
    }

    .wmk-abt-pg-scx-1-highlights {
        margin-top: 40px;
    }

    .wmk-abt-pg-scx-1-highlight {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

}


/* Small Mobile */

@media (max-width: 575.98px) {

    .wmk-abt-pg-scx-1 {
        padding: 45px 0 20px;
    }

    .wmk-abt-pg-scx-1-label {
        letter-spacing: 2.5px;
    }

    .wmk-abt-pg-scx-1-title {
        font-size: 45px;
        line-height: 1.06;
    }

    .wmk-abt-pg-scx-1-images {
        height: 330px;
    }

    .wmk-abt-pg-scx-1-main-image {
        width: 85%;
        height: 285px;
    }

    .wmk-abt-pg-scx-1-secondary-image {
        width: 115px;
        height: 145px;
    }

    .wmk-abt-pg-scx-1-experience {
        width: 90px;
        height: 90px;
    }

    .wmk-abt-pg-scx-1-experience strong {
        font-size: 24px;
    }

    .wmk-abt-pg-scx-1-divider {
        width: 220px;
    }

}
.wmk-abt-pg-scx-2 {
    overflow: hidden;
    background: #f7f5f1;
}

.wmk-abt-pg-scx-2-row {
    min-height: 350px;
}


/* =========================================================
   FOUNDERS AREA
   ========================================================= */

.wmk-abt-pg-scx-2-founders {
    position: relative;
    height: 100%;
    padding: 28px 35px 25px;
}

.wmk-abt-pg-scx-2-section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    color: #765d42;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wmk-abt-pg-scx-2-section-label span {
    width: 42px;
    height: 1px;
    background: #b58a57;
}


/* Founder */

.wmk-abt-pg-scx-2-founder {
    padding-right: 25px;
}

.wmk-abt-pg-scx-2-founder-row > div:first-child
.wmk-abt-pg-scx-2-founder {
    border-right: 1px solid #dedbd5;
}




/* Founder Content */

.wmk-abt-pg-scx-2-founder-content {
    padding-top: 10px;
}

.wmk-abt-pg-scx-2-founder-content h2 {
    margin: 0;
    color: #252525;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.wmk-abt-pg-scx-2-founder-content h3 {
    margin: 5px 0 0;
    color: #806345;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.wmk-abt-pg-scx-2-founder-line {
    display: block;
    width: 30px;
    height: 1px;
    margin: 10px 0 9px;
    background: #b58a57;
}

.wmk-abt-pg-scx-2-founder-content p {
    margin: 0;
    color: #3f3f3f;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   QUOTE
   ========================================================= */

.wmk-abt-pg-scx-2-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 350px;
    padding: 40px 45px;
    background: #171717;
}

.wmk-abt-pg-scx-2-quote-mark {
    display: block;
    margin-bottom: 4px;
    color: #b88a52;
    font-size: 42px;
    font-weight: 600;
    line-height: 0.7;
}

.wmk-abt-pg-scx-2-quote h2 {
    margin: 0;
    color: #f2eee8;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
}

.wmk-abt-pg-scx-2-quote-line {
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 17px;
    background: #a77a47;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .wmk-abt-pg-scx-2-founders {
        padding-left: 25px;
        padding-right: 25px;
    }

    .wmk-abt-pg-scx-2-founder {
        gap: 14px;
        padding-right: 15px;
    }

    .wmk-abt-pg-scx-2-founder-image {
        flex-basis: 125px;
        width: 125px;
        height: 150px;
    }

    .wmk-abt-pg-scx-2-quote {
        padding: 35px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-abt-pg-scx-2-founders {
        padding: 35px 30px;
    }

    .wmk-abt-pg-scx-2-founder {
        height: auto;
        min-height: 250px;
    }

    .wmk-abt-pg-scx-2-founder-image {
        flex-basis: 145px;
        width: 145px;
        height: 170px;
    }

    .wmk-abt-pg-scx-2-founder-content p {
        max-width: 100%;
    }

    .wmk-abt-pg-scx-2-quote {
        min-height: 280px;
        padding: 45px 50px;
    }

    .wmk-abt-pg-scx-2-quote h2 {
        max-width: 650px;
        font-size: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-abt-pg-scx-2-founders {
        padding: 40px 20px 20px;
    }

    .wmk-abt-pg-scx-2-founder-row > div {
        margin-bottom: 35px;
    }

    .wmk-abt-pg-scx-2-founder-row > div:last-child {
        margin-bottom: 0;
    }

    .wmk-abt-pg-scx-2-founder {
        height: auto;
        min-height: 0;
        padding-right: 0;
    }

    .wmk-abt-pg-scx-2-founder-row > div:first-child
    .wmk-abt-pg-scx-2-founder {
        padding-bottom: 35px;
        border-right: 0;
        border-bottom: 1px solid #dedbd5;
    }

    .wmk-abt-pg-scx-2-founder-image {
        flex-basis: 135px;
        width: 135px;
        height: 165px;
    }

    .wmk-abt-pg-scx-2-quote {
        min-height: 300px;
        padding: 50px 30px;
    }

    .wmk-abt-pg-scx-2-quote h2 {
        max-width: 550px;
        font-size: 28px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-abt-pg-scx-2-founders {
        padding: 35px 15px 15px;
    }

    .wmk-abt-pg-scx-2-section-label {
        margin-bottom: 20px;
    }

    .wmk-abt-pg-scx-2-founder {
        gap: 14px;
    }

    .wmk-abt-pg-scx-2-founder-image {
        flex-basis: 105px;
        width: 105px;
        height: 140px;
    }

    .wmk-abt-pg-scx-2-founder-content h2 {
        font-size: 18px;
    }

    .wmk-abt-pg-scx-2-founder-content h3 {
        font-size: 16px;
    }

    .wmk-abt-pg-scx-2-founder-content p {
        font-size: 14px;
        line-height: 1.45;
    }

    .wmk-abt-pg-scx-2-quote {
        min-height: 280px;
        padding: 40px 25px;
    }

    .wmk-abt-pg-scx-2-quote h2 {
        font-size: 26px;
    }

}
.wmk-abt-pg-scx-3 {
    position: relative;
    overflow: hidden;
    padding: 25px 0 30px;
    background: #fff;
}

.wmk-abt-pg-scx-3-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #6f604f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.wmk-abt-pg-scx-3-heading i {
    display: block;
    width: 38px;
    height: 1px;
    background: #b99569;
}

.wmk-abt-pg-scx-3-row {
    align-items: stretch;
}

.wmk-abt-pg-scx-3-row > div {
    border-right: 1px solid #dedbd5;
}

.wmk-abt-pg-scx-3-row > div:last-child {
    border-right: 0;
}

.wmk-abt-pg-scx-3-item {
    min-height: 135px;
    padding: 4px 14px 0;
    text-align: center;
}

.wmk-abt-pg-scx-3-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 45px;
    margin: 0 auto 7px;
    color: #806847;
    font-size: 28px;
    line-height: 1;
}

.wmk-abt-pg-scx-3-item h3 {
    margin: 0 0 6px;
    color: #252525;
    font-size: 18px;
    line-height: 1.15;
}

.wmk-abt-pg-scx-3-item p {
    max-width: 145px;
    margin: 0 auto;
    color: #555555;
    font-size: 14px;
    line-height: 1.35;
}


/* Tablet */

@media (max-width: 991.98px) {

    .wmk-abt-pg-scx-3 {
        padding: 35px 0;
    }

    .wmk-abt-pg-scx-3-row > div:nth-child(3),
    .wmk-abt-pg-scx-3-row > div:nth-child(6) {
        border-right: 0;
    }

    .wmk-abt-pg-scx-3-row > div:nth-child(-n+3) {
        margin-bottom: 25px;
    }

    .wmk-abt-pg-scx-3-item {
        padding: 5px 15px;
    }

}


/* Mobile */

@media (max-width: 767.98px) {

    .wmk-abt-pg-scx-3 {
        padding: 35px 0 25px;
    }

    .wmk-abt-pg-scx-3-heading {
        margin-bottom: 20px;
    }

    .wmk-abt-pg-scx-3-row > div {
        border-right: 0;
        border-bottom: none;
        margin-bottom: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .wmk-abt-pg-scx-3-row > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .wmk-abt-pg-scx-3-item {
        min-height: 155px;
    }

}


/* Small Mobile */

@media (max-width: 575.98px) {

    .wmk-abt-pg-scx-3 {
        padding: 30px 0 20px;
    }

    .wmk-abt-pg-scx-3-item {
        min-height: 150px;
        padding: 5px 8px;
    }

    .wmk-abt-pg-scx-3-icon {
        margin-bottom: 8px;
        font-size: 26px;
    }

    .wmk-abt-pg-scx-3-item h3 {
        font-size: 18px;
    }

    .wmk-abt-pg-scx-3-item p {
        font-size: 14px;
    }

}
.wmk-abt-pg-scx-4 {
    position: relative;
    overflow: hidden;
    padding: 28px 0 35px;
    background: #fff;
}

.wmk-abt-pg-scx-4-heading {
    margin-bottom: 16px;
    color: #75624c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wmk-abt-pg-scx-4-row {
    position: relative;
}


/* Process Item */

.wmk-abt-pg-scx-4-item {
    position: relative;
    min-height: 175px;
    padding: 0 12px;
    text-align: center;
}


/* Connecting Line */

.wmk-abt-pg-scx-4-row > div:not(:last-child)
.wmk-abt-pg-scx-4-item::after {
    position: absolute;
    top: 29px;
    right: -1px;
    width: calc(100% - 65px);
    height: 1px;
    background: #b9a991;
    content: "";
    transform: translateX(50%);
}


/* Arrow */

.wmk-abt-pg-scx-4-row > div:not(:last-child)
.wmk-abt-pg-scx-4-item::before {
    position: absolute;
    z-index: 2;
    top: 26px;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid #b9a991;
    border-right: 1px solid #b9a991;
    content: "";
    transform: rotate(45deg);
}


/* Icon */

.wmk-abt-pg-scx-4-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 8px;
    color: #665b4e;
    background: #f8f7f4;
    font-size: 29px;
    line-height: 1;
}


/* Number */

.wmk-abt-pg-scx-4-number {
    margin-bottom: 5px;
    color: #3f3b35;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}


/* Heading */

.wmk-abt-pg-scx-4-item h3 {
    min-height: 21px;
    margin: 0 0 6px;
    color: #282622;
    font-size: 18px;
    line-height: 1.15;
}


/* Description */

.wmk-abt-pg-scx-4-item p {
    max-width: 155px;
    margin: 0 auto;
    color: #55514b;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-abt-pg-scx-4 {
        padding: 35px 0;
    }

    .wmk-abt-pg-scx-4-row > div {
        margin-bottom: 30px;
    }

    .wmk-abt-pg-scx-4-row > div:nth-child(3)
    .wmk-abt-pg-scx-4-item::after,
    .wmk-abt-pg-scx-4-row > div:nth-child(6)
    .wmk-abt-pg-scx-4-item::after {
        display: none;
    }

    .wmk-abt-pg-scx-4-row > div:nth-child(3)
    .wmk-abt-pg-scx-4-item::before,
    .wmk-abt-pg-scx-4-row > div:nth-child(6)
    .wmk-abt-pg-scx-4-item::before {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-abt-pg-scx-4 {
        padding: 35px 0 25px;
    }

    .wmk-abt-pg-scx-4-heading {
        margin-bottom: 20px;
    }

    .wmk-abt-pg-scx-4-item {
        min-height: 180px;
        padding: 5px 8px;
    }

    .wmk-abt-pg-scx-4-row > div {
        margin-bottom: 20px;
    }

    .wmk-abt-pg-scx-4-row > div:nth-child(even)
    .wmk-abt-pg-scx-4-item::after {
        display: none;
    }

    .wmk-abt-pg-scx-4-row > div:nth-child(even)
    .wmk-abt-pg-scx-4-item::before {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-abt-pg-scx-4 {
        padding: 30px 0 20px;
    }

    .wmk-abt-pg-scx-4-item {
        min-height: 175px;
    }

    .wmk-abt-pg-scx-4-icon {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .wmk-abt-pg-scx-4-item h3 {
        font-size: 18px;
    }

    .wmk-abt-pg-scx-4-item p {
        font-size: 14px;
    }

}
.wmk-work-tab-scx {
    padding: 70px 0px 70px;
    background: #f8f6f1;
}


/* =========================================================
   TABS
   ========================================================= */

.wmk-work-tab-scx-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #d8d1c6;
}

.wmk-work-tab-scx-nav .nav-item {
    position: relative;
}

.wmk-work-tab-scx-nav .nav-item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 12px;
    background: #bdb5aa;
    content: "";
    transform: translateY(-50%);
}

.wmk-work-tab-scx-nav .nav-link {
    position: relative;
    min-width: 155px;
    padding: 11px 28px 13px;
    color: #33302c;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.wmk-work-tab-scx-nav .nav-link:hover {
    color: #a77a45;
}

.wmk-work-tab-scx-nav .nav-link.active {
    color: #a77a45;
    background: transparent;
}

.wmk-work-tab-scx-nav .nav-link.active::after {
    position: absolute;
    right: 20px;
    bottom: -1px;
    left: 20px;
    height: 2px;
    background: #b68a54;
    content: "";
}


/* =========================================================
   GRID
   ========================================================= */

.wmk-work-tab-scx-content {
    padding-top: 12px;
}

.wmk-work-tab-scx-grid {
    margin-right: -8px;
    margin-left: -8px;
}

.wmk-work-tab-scx-grid > div {
    padding: 0 8px 14px;
}


/* =========================================================
   CARD
   ========================================================= */

.wmk-work-tab-scx-card {
    overflow: hidden;
    border: 1px solid #e4dfd6;
    background: #f9f7f2;
}


/* Image */

.wmk-work-tab-scx-image {
    height: 200px;
    overflow: hidden;
}

.wmk-work-tab-scx-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wmk-work-tab-scx-card:hover .wmk-work-tab-scx-image img {
    transform: scale(1.04);
}


/* Info */

.wmk-work-tab-scx-info {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 7px 13px;
}

.wmk-work-tab-scx-number {
    flex: 0 0 40px;
    color: #a9804d;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.wmk-work-tab-scx-details {
    flex: 1;
    min-width: 0;
}

.wmk-work-tab-scx-details h3 {
    margin: 0 0 2px;
    color: #292724;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.wmk-work-tab-scx-details p {
    margin: 0;
    color: #66615a;
    font-size: 14px;
    line-height: 1.2;
}

.wmk-work-tab-scx-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: 10px;
    color: #947248;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.wmk-work-tab-scx-link span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.wmk-work-tab-scx-link:hover {
    color: #765631;
}

.wmk-work-tab-scx-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-work-tab-scx {
        padding-right: 15px;
        padding-left: 15px;
    }

    .wmk-work-tab-scx-nav {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .wmk-work-tab-scx-nav .nav-link {
        min-width: 145px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .wmk-work-tab-scx-image {
        height: 150px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-work-tab-scx {
        padding: 0 10px 40px;
    }

    .wmk-work-tab-scx-nav {
        justify-content: flex-start;
    }

    .wmk-work-tab-scx-nav .nav-link {
        min-width: auto;
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .wmk-work-tab-scx-nav .nav-link.active::after {
        right: 10px;
        left: 10px;
    }

    .wmk-work-tab-scx-content {
        padding-top: 10px;
    }

    .wmk-work-tab-scx-grid {
        margin-right: 0;
        margin-left: 0;
    }

    .wmk-work-tab-scx-grid > div {
        padding-right: 0;
        padding-left: 0;
    }

    .wmk-work-tab-scx-image {
        height: 190px;
    }

    .wmk-work-tab-scx-info {
        min-height: 70px;
        padding: 10px 12px;
    }

    .wmk-work-tab-scx-number {
        flex-basis: 42px;
        font-size: 27px;
    }

    .wmk-work-tab-scx-details h3 {
        font-size: 18px;
    }

    .wmk-work-tab-scx-link {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-work-tab-scx-nav .nav-link {
        padding: 11px 14px;
        font-size: 14px;
    }

    .wmk-work-tab-scx-image {
        height: 170px;
    }

    .wmk-work-tab-scx-info {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 12px;
    }

    .wmk-work-tab-scx-number {
        flex-basis: 38px;
        font-size: 25px;
    }

    .wmk-work-tab-scx-details h3 {
        font-size: 18px;
    }

    .wmk-work-tab-scx-details p {
        font-size: 14px;
    }

    .wmk-work-tab-scx-link {
        width: 100%;
        margin-top: 8px;
        margin-left: 38px;
    }

}
.wmk-services-scx {
    padding: 90px 0;
    background: #f8f7f4;
}

.wmk-services-scx-head {
    margin-bottom: 45px;
}

.wmk-services-scx-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #a8793e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.wmk-services-scx-label i {
    display: block;
    width: 48px;
    height: 1px;
    background: #b78a52;
}

.wmk-services-scx-head h2 {
    margin: 0;
    color: #202020;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.08;
}

.wmk-services-scx-head h2 span {
    color: #b17d3e;
    font-style: italic;
}

.wmk-services-scx-head p {
    max-width: 460px;
    margin: 0 0 5px auto;
    color: #5d5a55;
    font-size: 14px;
    line-height: 1.7;
}

.wmk-services-scx-row {
    row-gap: 20px;
}

.wmk-services-scx-card {
    position: relative;
    height: 100%;
    min-height: 275px;
    padding: 32px 30px;
    border: 1px solid #e2ddd4;
    background: #fbfaf7;
    transition: all 0.35s ease;
}

.wmk-services-scx-card:hover {
    border-color: #b78a52;
    transform: translateY(-5px);
}

.wmk-services-scx-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border: 1px solid #c7a16e;
    border-radius: 50%;
    color: #a8793e;
    font-size: 25px;
}

.wmk-services-scx-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #b98a50;
    font-size: 14px;
}

.wmk-services-scx-card h3 {
    margin: 0 0 12px;
    color: #252321;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.wmk-services-scx-card p {
    max-width: 360px;
    margin: 0 0 25px;
    color: #625f59;
    font-size: 14px;
    line-height: 1.65;
}

.wmk-services-scx-card a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #8e693f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.4px;
}

.wmk-services-scx-card a span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.wmk-services-scx-card a:hover {
    color: #624727;
}

.wmk-services-scx-card a:hover span {
    transform: translateX(5px);
}


@media (max-width: 991.98px) {

    .wmk-services-scx {
        padding: 70px 0;
    }

    .wmk-services-scx-head p {
        margin: 25px 0 0;
    }

}


@media (max-width: 767.98px) {

    .wmk-services-scx {
        padding: 55px 0;
    }

    .wmk-services-scx-head {
        margin-bottom: 30px;
    }

    .wmk-services-scx-head h2 {
        font-size: 40px;
    }

    .wmk-services-scx-card {
        min-height: 250px;
        padding: 28px 25px;
    }

}


@media (max-width: 575.98px) {

    .wmk-services-scx-head h2 {
        font-size: 35px;
    }

    .wmk-services-scx-card {
        min-height: 240px;
    }

}
.wmk-contact-scx {
    padding: 90px 0;
    background: #f8f7f4;
}

.wmk-contact-scx-head {
    margin-bottom: 45px;
}

.wmk-contact-scx-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #a8793e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.wmk-contact-scx-label i {
    display: block;
    width: 48px;
    height: 1px;
    background: #b78a52;
}

.wmk-contact-scx-head h2 {
    margin: 0;
    color: #202020;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.08;
}

.wmk-contact-scx-head h2 span {
    color: #b17d3e;
    font-style: italic;
}

.wmk-contact-scx-head p {
    max-width: 460px;
    margin: 0 0 5px auto;
    color: #5d5a55;
    font-size: 14px;
    line-height: 1.7;
}


/* Main Contact Area */

.wmk-contact-scx-main {
    overflow: hidden;
    border: 1px solid #e1ddd5;
    background: #fbfaf7;
}


/* Contact Details */

.wmk-contact-scx-details {
    height: 100%;
    padding: 38px 35px;
    border-right: 1px solid #e1ddd5;
    background: #f2eee7;
}

.wmk-contact-scx-item {
    display: flex;
    gap: 17px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd7cd;
}

.wmk-contact-scx-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border: 1px solid #c7a16e;
    border-radius: 50%;
    color: #a8793e;
    font-size: 19px;
}

.wmk-contact-scx-item h3 {
    margin: 0 0 7px;
    color: #292724;
    font-size: 18px;
    font-weight: 500;
}

.wmk-contact-scx-item p {
    margin: 0;
    color: #625f59;
    font-size: 14px;
    line-height: 1.7;
}

.wmk-contact-scx-item a {
    display: block;
    margin-bottom: 4px;
    color: #625f59;
    font-size: 14px;
    text-decoration: none;
}

.wmk-contact-scx-item a:hover {
    color: #a8793e;
}


/* WhatsApp */

.wmk-contact-scx-whatsapp {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    color: #ffffff;
    background: #a8793e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wmk-contact-scx-whatsapp i {
    font-size: 21px;
}

.wmk-contact-scx-whatsapp span {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wmk-contact-scx-whatsapp b {
    font-size: 20px;
    font-weight: 400;
}

.wmk-contact-scx-whatsapp:hover {
    color: #ffffff;
    background: #896632;
}


/* Form */

.wmk-contact-scx-form-wrap {
    padding: 38px 40px;
}

.wmk-contact-scx-form-wrap > h3 {
    margin: 0 0 28px;
    color: #292724;
    font-size: 22px;
    font-weight: 500;
}

.wmk-contact-scx-field {
    margin-bottom: 22px;
}

.wmk-contact-scx-field label {
    display: block;
    margin-bottom: 8px;
    color: #4e4a44;
    font-size: 14px;
    font-weight: 500;
}

.wmk-contact-scx-field input,
.wmk-contact-scx-field select,
.wmk-contact-scx-field textarea {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcd6cc;
    border-radius: 0;
    outline: none;
    color: #33302c;
    background: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.wmk-contact-scx-field input,
.wmk-contact-scx-field select {
    height: 48px;
}

.wmk-contact-scx-field textarea {
    min-height: 110px;
    resize: vertical;
}

.wmk-contact-scx-field input:focus,
.wmk-contact-scx-field select:focus,
.wmk-contact-scx-field textarea:focus {
    border-color: #b78a52;
}

.wmk-contact-scx-field input::placeholder,
.wmk-contact-scx-field textarea::placeholder {
    color: #99948c;
}

.wmk-contact-scx-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 175px;
    padding: 14px 22px;
    border: 1px solid #a8793e;
    color: #ffffff;
    background: #a8793e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wmk-contact-scx-submit span {
    font-size: 20px;
    font-weight: 400;
}

.wmk-contact-scx-submit:hover {
    color: #a8793e;
    background: transparent;
}


/* Map */

.wmk-contact-scx-map {
    margin-top: 35px;
    border: 1px solid #e1ddd5;
    background: #fbfaf7;
}

.wmk-contact-scx-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 30px;
}

.wmk-contact-scx-map-head span {
    display: block;
    margin-bottom: 6px;
    color: #a8793e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.wmk-contact-scx-map-head h3 {
    margin: 0;
    color: #292724;
    font-size: 22px;
    font-weight: 500;
}

.wmk-contact-scx-map-head p {
    max-width: 420px;
    margin: 0;
    color: #625f59;
    font-size: 14px;
    line-height: 1.6;
}

.wmk-contact-scx-map-frame {
    width: 100%;
    height: 350px;
    border-top: 1px solid #e1ddd5;
}

.wmk-contact-scx-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Tablet */

@media (max-width: 991.98px) {

    .wmk-contact-scx {
        padding: 70px 0;
    }

    .wmk-contact-scx-head p {
        margin: 25px 0 0;
    }

    .wmk-contact-scx-details {
        padding: 30px 25px;
    }

    .wmk-contact-scx-form-wrap {
        padding: 30px;
    }

}


/* Mobile */

@media (max-width: 767.98px) {

    .wmk-contact-scx {
        padding: 55px 0;
    }

    .wmk-contact-scx-head {
        margin-bottom: 30px;
    }

    .wmk-contact-scx-head h2 {
        font-size: 40px;
    }

    .wmk-contact-scx-details {
        border-right: 0;
        border-bottom: 1px solid #e1ddd5;
    }

    .wmk-contact-scx-form-wrap {
        padding: 30px 22px;
    }

    .wmk-contact-scx-map-head {
        display: block;
        padding: 22px;
    }

    .wmk-contact-scx-map-head p {
        margin-top: 12px;
    }

    .wmk-contact-scx-map-frame {
        height: 300px;
    }

}


/* Small Mobile */

@media (max-width: 575.98px) {

    .wmk-contact-scx-head h2 {
        font-size: 35px;
    }

    .wmk-contact-scx-details {
        padding: 25px 20px;
    }

    .wmk-contact-scx-form-wrap {
        padding: 25px 18px;
    }

    .wmk-contact-scx-map-frame {
        height: 260px;
    }

}
.wmk-gallery-scx {
    padding: 90px 0;
    background: #f8f7f4;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.wmk-gallery-scx-head {
    margin-bottom: 45px;
}

.wmk-gallery-scx-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #a8793e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.wmk-gallery-scx-label i {
    display: block;
    width: 48px;
    height: 1px;
    background: #b78a52;
}

.wmk-gallery-scx-head h2 {
    margin: 0;
    color: #202020;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.08;
}

.wmk-gallery-scx-head h2 span {
    color: #b17d3e;
    font-style: italic;
}

.wmk-gallery-scx-head p {
    max-width: 460px;
    margin: 0 0 5px auto;
    color: #5d5a55;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.wmk-gallery-scx-grid {
    margin: -6px;
}

.wmk-gallery-scx-grid > div {
    padding: 6px;
}


/* =========================================================
   UNIFORM CARD
   ========================================================= */

.wmk-gallery-scx-card {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #ddd;
}

.wmk-gallery-scx-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.wmk-gallery-scx-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.wmk-gallery-scx-link:hover img {
    transform: scale(1.06);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.wmk-gallery-scx-overlay {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 16px;
    background: rgba(24, 22, 19, 0.82);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.wmk-gallery-scx-link:hover .wmk-gallery-scx-overlay {
    opacity: 1;
    transform: translateY(0);
}

.wmk-gallery-scx-overlay span {
    display: block;
    margin-bottom: 5px;
    color: #c29a67;
    font-size: 14px;
    line-height: 1;
}

.wmk-gallery-scx-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
}

.wmk-gallery-scx-overlay i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .wmk-gallery-scx {
        padding: 70px 0;
    }

    .wmk-gallery-scx-head p {
        margin: 25px 0 0;
    }

    .wmk-gallery-scx-card {
        height: 270px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .wmk-gallery-scx {
        padding: 55px 0;
    }

    .wmk-gallery-scx-head {
        margin-bottom: 30px;
    }

    .wmk-gallery-scx-head h2 {
        font-size: 40px;
    }

    .wmk-gallery-scx-card {
        height: 250px;
    }

    .wmk-gallery-scx-overlay {
        right: 12px;
        bottom: 12px;
        left: 12px;
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .wmk-gallery-scx {
        padding: 45px 0;
    }

    .wmk-gallery-scx-head h2 {
        font-size: 35px;
    }

    .wmk-gallery-scx-grid {
        margin: -5px;
    }

    .wmk-gallery-scx-grid > div {
        padding: 5px;
    }

    .wmk-gallery-scx-card {
        height: 230px;
    }

    .wmk-gallery-scx-overlay {
        padding: 12px;
    }

    .wmk-gallery-scx-overlay h3 {
        font-size: 18px;
    }

}
.wmk-expertise-scx::before {
    font-family: "Playfair Display", serif;
    position: absolute;
    z-index: 0;
    top: 20px;
    right: 55px;
    color: rgba(182, 165, 140, 0.09);
    content: "W";
    font-size: 400px;
    line-height: 1;
}