/* =========================================================
   MITHARV HERO
   REFERENCE-MATCHED DESIGN
   ========================================================= */


* {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.mthx-hero {

    position: relative;

    width: 100%;

    min-height: 90svh;

    overflow: hidden;

    background: #101820;

    color: #ffffff;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mthx-hero__bg {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.mthx-hero__bg-image {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mthx-hero__overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(90deg,
            rgba(3, 9, 14, .78) 0%,
            rgba(3, 9, 14, .42) 40%,
            rgba(3, 9, 14, .12) 72%,
            rgba(3, 9, 14, .32) 100%),

        linear-gradient(180deg,
            rgba(2, 7, 11, .72) 0%,
            rgba(2, 7, 11, .05) 24%,
            rgba(2, 7, 11, .10) 58%,
            rgba(2, 7, 11, .74) 100%);
}


/* =========================================================
   HEADER
   ========================================================= */

.mthx-hero__header {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    height: 62px;

    border-bottom: 1px solid rgba(255, 255, 255, .14);

    background:
        rgba(4, 10, 15, .18);

    backdrop-filter: blur(7px);

    -webkit-backdrop-filter: blur(7px);
}


.mthx-hero__header-inner {

    width: calc(100% - 108px);

    max-width: 1440px;

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.mthx-hero__logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.mthx-hero__logo img {

    display: block;

    width: 150px;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.mthx-hero__nav {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 50px;
}


.mthx-hero__nav a {

    position: relative;

    display: inline-flex;

    align-items: center;

    height: 100%;

    color:
        rgba(255, 255, 255, .86);

    font-size: 12px;

    font-weight: 500;

    letter-spacing: .02em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color .2s ease;
}


.mthx-hero__nav a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 2px;

    width: 0;

    margin: auto;

    background: #c9a45f;

    transition: width .25s ease;
}


.mthx-hero__nav a:hover {

    color: #ffffff;
}


.mthx-hero__nav a:hover::after {

    width: 100%;
}


/* =========================================================
   CONTACT
   ========================================================= */

.mthx-hero__nav-contact {

    height: 38px !important;

    padding: 0 22px;

    margin-left: 5px;

    background: #c7a05b;

    color: #11171a !important;

    justify-content: center;

    transition:
        background-color .2s ease,
        transform .2s ease !important;
}


.mthx-hero__nav-contact::after {

    display: none !important;
}


.mthx-hero__nav-contact:hover {

    background: #dfbd7a;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mthx-hero__menu {

    display: none;

    width: 40px;

    height: 40px;

    padding: 9px;

    border: 1px solid rgba(255, 255, 255, .3);

    background:
        rgba(0, 0, 0, .18);

    cursor: pointer;
}


.mthx-hero__menu span {

    display: block;

    width: 100%;

    height: 1px;

    margin: 5px 0;

    background: #ffffff;
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.mthx-hero__container {

    position: relative;

    width: calc(100% - 108px);

    max-width: 1440px;

    min-height: 90svh;

    margin: auto;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.mthx-hero__content {

    position: absolute;

    left: 0;

    top: 50%;

    width: 620px;

    transform:
        translateY(-44%);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mthx-hero__eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 22px;

    color:
        rgba(225, 202, 157, .82);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.mthx-hero__eyebrow b {

    color: rgba(255, 255, 255, .4);

    font-size: 8px;

    font-weight: 400;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.mthx-hero__title {

    margin: 0;

    font-size: clamp(50px,
            5.4vw,
            70px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.045em;

    text-transform: uppercase;
}


.mthx-hero__title span {

    display: block;

    color: #ffffff;
}


.mthx-hero__title strong {

    display: block;

    color: #d2ad6d;

    font-weight: 400;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mthx-hero__description {

    max-width: 600px;

    margin: 22px 0 0;

    color:
        rgba(255, 255, 255, .72);

    font-size: 14px;

    line-height: 1.65;

    letter-spacing: .01em;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.mthx-hero__actions {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 27px;
}


.mthx-hero__button {

    min-height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 17px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .04em;

    text-decoration: none;

    text-transform: none;

    transition:
        .25s ease;
}


.mthx-hero__button svg {

    width: 13px;

    height: 13px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform .25s ease;
}


.mthx-hero__button:hover svg {

    transform: translateX(3px);
}


/* Gold */

.mthx-hero__button--gold {

    background: #c7a05b;

    border: 1px solid #c7a05b;

    color: #11171a;
}


.mthx-hero__button--gold:hover {

    background: #dfbd7a;

    border-color: #dfbd7a;

    transform: translateY(-1px);
}


/* Outline */

.mthx-hero__button--outline {

    border: 1px solid rgba(255, 255, 255, .6);

    background:
        rgba(0, 0, 0, .06);

    color: #ffffff;
}


.mthx-hero__button--outline:hover {

    border-color: #ffffff;

    background:
        rgba(255, 255, 255, .1);

    transform: translateY(-1px);
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.mthx-hero__side-indicator {

    position: absolute;

    right: -75px;

    top: 50%;

    transform:
        translateY(-36%);

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 35px;
}


.mthx-hero__side-text {

    color:
        rgba(255, 255, 255, .7);

    font-size: 15px;

    line-height: 1.45;

    text-align: right;
}


.mthx-hero__side-numbers {

    display: flex;

    flex-direction: column;

    gap: 25px;
}


.mthx-hero__side-numbers span {

    position: relative;

    color:
        rgba(255, 255, 255, .48);

    font-size: 12px;

    letter-spacing: .08em;

    transition:
        color .2s ease;
}


.mthx-hero__side-numbers span.is-active {

    color: #e0bb76;
}


.mthx-hero__side-numbers span.is-active::before {

    content: "";

    position: absolute;

    right: 24px;

    top: 50%;

    width: 18px;

    height: 1px;

    background: #c7a05b;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.mthx-hero__bottom {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, .22);
}


/* =========================================================
   STATS
   ========================================================= */

.mthx-hero__stats {

    display: flex;

    align-items: stretch;

    height: 58px;
}


.mthx-hero__stat {

    min-width: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 0 25px;

    border-right: 1px solid rgba(255, 255, 255, .25);
}


.mthx-hero__stat:first-child {

    padding-left: 0;
}


.mthx-hero__stat strong {

    color: #ffffff;

    font-size: 35px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.04em;
}


.mthx-hero__stat strong span {

    color: #FFF;
}


.mthx-hero__stat small {

    margin-top: 6px;

    color:
        rgba(255, 255, 255, .58);

    font-size: 12px;

    line-height: 1.2;

    letter-spacing: .03em;
}


/* =========================================================
   SCROLL
   ========================================================= */

.mthx-hero__scroll {

    display: flex;

    align-items: center;

    gap: 13px;
}


.mthx-hero__scroll>span {

    color:
        rgba(255, 255, 255, .72);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .08em;
}


.mthx-hero__scroll button {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .55);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, .12);

    color: #ffffff;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}


.mthx-hero__scroll button:hover {

    background:
        rgba(255, 255, 255, .12);

    transform: translateY(2px);
}


.mthx-hero__scroll svg {

    width: 14px;

    height: 14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mthx-hero__header-inner,
    .mthx-hero__container {

        width: calc(100% - 70px);
    }


    .mthx-hero__nav {

        gap: 20px;
    }


    .mthx-hero__content {

        width: 570px;
    }


    .mthx-hero__stat {

        min-width: 125px;

        padding-inline: 18px;
    }

}


/* =========================================================
   991px — TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mthx-hero__header-inner,
    .mthx-hero__container {

        width: calc(100% - 44px);
    }


    .mthx-hero__nav {

        gap: 13px;
    }


    .mthx-hero__nav a {

        font-size: 7px;
    }


    .mthx-hero__nav-contact {

        padding-inline: 13px;
    }


    .mthx-hero__content {

        width: 65%;
    }


    .mthx-hero__title {

        font-size: clamp(43px,
                6.7vw,
                65px);
    }


    .mthx-hero__side-indicator {

        right: 5px;
    }


    .mthx-hero__stat {

        min-width: 105px;

        padding-inline: 13px;
    }


    .mthx-hero__stat strong {

        font-size: 22px;
    }

}


/* =========================================================
   767px — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mthx-hero {

        min-height: 780px;
    }


    .mthx-hero__header {

        height: 64px;
    }


    .mthx-hero__header-inner {

        width: calc(100% - 30px);
    }


    .mthx-hero__logo img {

        width: 125px;
    }


    .mthx-hero__nav {

        display: none;
    }


    .mthx-hero__menu {

        display: block;
    }


    .mthx-hero__container {

        width: calc(100% - 30px);

        min-height: 780px;
    }


    .mthx-hero__bg-image {

        object-position: 62% center;
    }


    .mthx-hero__overlay {

        background:

            linear-gradient(180deg,
                rgba(3, 9, 14, .78),
                rgba(3, 9, 14, .32) 35%,
                rgba(3, 9, 14, .72) 70%,
                rgba(3, 9, 14, .96));
    }


    .mthx-hero__content {

        left: 0;

        top: 45%;

        width: 100%;

        transform:
            translateY(-50%);
    }


    .mthx-hero__eyebrow {

        gap: 7px;

        margin-bottom: 16px;

        font-size: 6.5px;

        letter-spacing: .12em;
    }


    .mthx-hero__title {

        font-size: clamp(38px,
                11vw,
                54px);

        line-height: .96;
    }


    .mthx-hero__description {

        max-width: 370px;

        margin-top: 19px;

        font-size: 10px;

        line-height: 1.6;
    }


    .mthx-hero__actions {

        margin-top: 22px;

        gap: 8px;
    }


    .mthx-hero__button {

        min-height: 38px;

        padding-inline: 12px;

        font-size: 7px;
    }


    .mthx-hero__side-indicator {

        display: none;
    }


    /* Bottom */

    .mthx-hero__bottom {

        min-height: 110px;

        display: block;

        padding-top: 14px;

        box-sizing: border-box;
    }


    .mthx-hero__stats {

        width: 100%;

        height: 55px;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);
    }


    .mthx-hero__stat {

        min-width: 0;

        padding: 0 5px;

        align-items: center;

        text-align: center;
    }


    .mthx-hero__stat:first-child {

        padding-left: 5px;
    }


    .mthx-hero__stat strong {

        font-size: 18px;
    }


    .mthx-hero__stat small {

        font-size: 5.5px;

        margin-top: 5px;
    }


    .mthx-hero__scroll {

        position: absolute;

        right: 0;

        bottom: 9px;
    }


    .mthx-hero__scroll>span {

        font-size: 6px;
    }


    .mthx-hero__scroll button {

        width: 27px;

        height: 27px;
    }


    .mthx-hero__scroll svg {

        width: 11px;

        height: 11px;
    }

}


/* =========================================================
   420px
   ========================================================= */

@media (max-width: 420px) {

    .mthx-hero {

        min-height: 740px;
    }


    .mthx-hero__container {

        min-height: 740px;
    }


    .mthx-hero__title {

        font-size: 37px;
    }


    .mthx-hero__description {

        max-width: 310px;

        font-size: 9px;
    }


    .mthx-hero__button {

        padding-inline: 10px;

        font-size: 6.5px;
    }


    .mthx-hero__stat strong {

        font-size: 16px;
    }


    .mthx-hero__stat small {

        font-size: 5px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mthx-hero__nav a,
    .mthx-hero__button,
    .mthx-hero__button svg,
    .mthx-hero__scroll button {

        transition: none;
    }

}






































/* =========================================================
   MITHARV — TRUSTED BY
   SECTION 02 | PART 2 — CSS
   ========================================================= */

.mth-trusted {

    position: relative;

    width: 100%;

    margin: 0;

    padding: 0;

    background: #f7f7f5;

    border-top: 1px solid #dededb;

    border-bottom: 1px solid #dededb;

    box-sizing: border-box;
}


/* =========================================================
   MAIN INNER
   ========================================================= */

.mth-trusted__inner {

    width: calc(100% - 108px);

    max-width: 1440px;

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   LEFT LABEL
   ========================================================= */

.mth-trusted__label {

    width: 155px;

    min-width: 155px;

    padding-right: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 2px;

    box-sizing: border-box;
}


.mth-trusted__label span {

    display: block;

    color: #777875;

    font-size: 7px;

    font-weight: 600;

    line-height: 1.1;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.mth-trusted__label strong {

    display: block;

    color: #222624;

    font-size: 8px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: .07em;

    text-transform: uppercase;
}


/* =========================================================
   LOGOS WRAPPER
   ========================================================= */

.mth-trusted__logos {

    flex: 1;

    min-width: 0;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================================
   INDIVIDUAL LOGO
   ========================================================= */

.mth-trusted__logo {

    flex: 1;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 14px;

    box-sizing: border-box;
}


.mth-trusted__logo img {

    display: block;

    width: auto;

    max-width: 125px;

    max-height: 65px;

    object-fit: contain;

    object-position: center;

    /* filter: grayscale(100%); */

    opacity: .68;

    transition:
        opacity .25s ease,
        filter .25s ease;
}


/* Subtle hover */

.mth-trusted__logo:hover img {

    opacity: .95;

    filter: grayscale(0%);
}


/* =========================================================
   AND MORE
   ========================================================= */

.mth-trusted__more {

    width: 105px;

    min-width: 105px;

    height: 55px;

    padding-left: 12px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 7px;

    color: #9a825a;

    text-decoration: none;

    box-sizing: border-box;
}


.mth-trusted__more span {

    font-size: 7px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .08em;

    white-space: nowrap;
}


.mth-trusted__more svg {

    width: 13px;

    height: 13px;

    flex: 0 0 13px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-trusted__more:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .mth-trusted__inner {

        width: calc(100% - 70px);

        min-height: 78px;
    }


    .mth-trusted__label {

        width: 130px;

        min-width: 130px;

        padding-right: 15px;
    }


    .mth-trusted__logos {

        height: 52px;
    }


    .mth-trusted__logo {

        height: 52px;

        padding-inline: 8px;
    }


    .mth-trusted__logo img {

        max-width: 90px;

        max-height: 32px;
    }


    .mth-trusted__more {

        width: 90px;

        min-width: 90px;

        height: 52px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mth-trusted__inner {

        width: calc(100% - 44px);

        min-height: 74px;
    }


    .mth-trusted__label {

        width: 105px;

        min-width: 105px;
    }


    .mth-trusted__label span {

        font-size: 6px;
    }


    .mth-trusted__label strong {

        font-size: 7px;
    }


    .mth-trusted__logos {

        height: 48px;
    }


    .mth-trusted__logo {

        height: 48px;

        padding-inline: 5px;
    }


    .mth-trusted__logo img {

        max-width: 70px;

        max-height: 27px;
    }


    .mth-trusted__more {

        width: 72px;

        min-width: 72px;

        height: 48px;

        padding-left: 5px;

        gap: 4px;
    }


    .mth-trusted__more span {

        font-size: 5.5px;
    }


    .mth-trusted__more svg {

        width: 10px;

        height: 10px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-trusted__inner {

        width: calc(100% - 24px);

        min-height: auto;

        padding: 15px 0;

        display: block;
    }


    /* Label */

    .mth-trusted__label {

        width: 100%;

        min-width: 0;

        padding: 0;

        margin-bottom: 12px;

        display: block;

        text-align: center;
    }


    .mth-trusted__label span,
    .mth-trusted__label strong {

        display: inline;

    }


    .mth-trusted__label span {

        margin-right: 5px;

        font-size: 6px;
    }


    .mth-trusted__label strong {

        font-size: 7px;
    }


    /* Logos */

    .mth-trusted__logos {

        width: 100%;

        height: 52px;

        display: grid;

        grid-template-columns:
            repeat(6, 1fr);

        align-items: center;
    }


    .mth-trusted__logo {

        width: auto;

        height: 52px;

        padding: 0 4px;
    }


    .mth-trusted__logo img {

        max-width: 54px;

        max-height: 25px;
    }


    /* More */

    .mth-trusted__more {

        width: 100%;

        min-width: 0;

        height: auto;

        padding: 8px 0 0;

        justify-content: center;
    }


    .mth-trusted__more span {

        font-size: 6px;
    }


    .mth-trusted__more svg {

        width: 11px;

        height: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-trusted__inner {

        width: calc(100% - 18px);

        padding-block: 13px;
    }


    .mth-trusted__label {

        margin-bottom: 9px;
    }


    .mth-trusted__logos {

        height: 45px;
    }


    .mth-trusted__logo {

        height: 45px;

        padding-inline: 2px;
    }


    .mth-trusted__logo img {

        max-width: 48px;

        max-height: 22px;
    }


    .mth-trusted__more {

        padding-top: 7px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-trusted__logo img,
    .mth-trusted__more svg {

        transition: none;
    }

}

































/* =========================================================
   MITHARV — WHO WE ARE
   SECTION 03 | PART 2 — CSS
   ========================================================= */

.mth-about {

    --mth-about-dark: #0c1114;

    --mth-about-gold: #c6a05d;

    --mth-about-text: #15191a;

    --mth-about-muted: #777873;

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f7f7f5;

    color: var(--mth-about-text);

    box-sizing: border-box;
}


/* =========================================================
   WRAPPER
   ========================================================= */

.mth-about__wrapper {

    width: 100%;

    display: grid;

    grid-template-columns:
        39% 41% 20%;

    min-height: 390px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.mth-about__content {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        45px 42px 45px 100px;

    box-sizing: border-box;

    background: #f7f7f5;

    z-index: 2;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-about__eyebrow {

    margin-bottom: 12px;

    color: #ad956e;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-about__title {

    max-width: 440px;

    margin: 0;

    font-size: clamp(34px,
            3.4vw,
            50px);

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.045em;
}


.mth-about__title span {

    display: block;

    color: #121617;
}


.mth-about__title .mth-about__title-muted {

    color: #777a78;
}


.mth-about__title strong {

    display: block;

    color: var(--mth-about-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-about__description {

    max-width: 370px;

    margin: 18px 0 0;

    color: #646764;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-about__button {

    width: fit-content;

    min-height: 31px;

    margin-top: 20px;

    padding:
        0 14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--mth-about-gold);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;

    border-radius: 10px;
}


.mth-about__button svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    transition:
        transform .25s ease;
}


.mth-about__button:hover {

    background: #ad894d;

    transform: translateY(-1px);
}


.mth-about__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   CENTER VISUAL
   ========================================================= */

.mth-about__visual {

    position: relative;

    min-height: 390px;

    overflow: visible;

    background: #1a2225;
}


.mth-about__image {

    width: 100%;

    height: 100%;

    min-height: 390px;

    display: block;

    object-fit: cover;

    object-position: center;

    vertical-align: middle;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.mth-about__image-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .03),
            transparent 30%,
            rgba(0, 0, 0, .08));
}


/* =========================================================
   EXPERIENCE CARD
   ========================================================= */

.mth-about__experience {

    position: absolute;

    left: -43px;

    bottom: 42px;

    width: 122px;

    min-height: 116px;

    padding: 17px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .12);

    box-sizing: border-box;

    z-index: 5;

    border-radius: 15px;
}


.mth-about__experience strong {

    display: block;

    color: var(--mth-about-gold);

    font-size: 31px;

    font-weight: 400;

    line-height: 1;
}


.mth-about__experience strong span {

    font-size: 25px;
}


.mth-about__experience>span {

    display: block;

    margin-top: 8px;

    color: #858580;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.3;

    text-transform: none;
}


/* =========================================================
   RIGHT CAPABILITIES
   ========================================================= */

.mth-about__capabilities {

    position: relative;

    min-height: 390px;

    padding:
        44px max(30px, calc((100vw - 1440px) / 2)) 30px 48px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: var(--mth-about-dark);

    color: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   CAPABILITY LIST
   ========================================================= */

.mth-about__capabilities-list {

    width: 100%;
}


.mth-about__capability {

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    color: rgba(255, 255, 255, .82);

    font-size: 13px;

    font-weight: 400;

    text-decoration: none;

    transition:
        color .2s ease,
        padding-left .25s ease;
}


.mth-about__capability:first-child {

    border-top: 0;
}


.mth-about__capability span {

    white-space: nowrap;
}


.mth-about__capability svg {

    width: 13px;

    height: 13px;

    flex-shrink: 0;

    fill: none;

    stroke: var(--mth-about-gold);

    stroke-width: 1.3;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.mth-about__capability:hover {

    color: #ffffff;

    padding-left: 5px;
}


.mth-about__capability:hover svg {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   CAPABILITY FOOTER
   ========================================================= */

.mth-about__capabilities-bottom {

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, .36);

    font-size: 10px;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.mth-about__capabilities-bottom i {

    width: 25px;

    height: 1px;

    display: block;

    background: var(--mth-about-gold);
}


/* =========================================================
   1250px
   ========================================================= */

@media (max-width: 1250px) {

    .mth-about__content {

        padding-left: 35px;

        padding-right: 30px;
    }


    .mth-about__capabilities {

        padding-left: 35px;

        padding-right: 25px;
    }


    .mth-about__experience {

        left: -35px;
    }


    .mth-about__capability {

        font-size: 10px;

        min-height: 42px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-about__wrapper {

        grid-template-columns:
            40% 40% 20%;

        min-height: 330px;
    }


    .mth-about__content {

        min-height: 330px;

        padding:
            30px 22px;
    }


    .mth-about__eyebrow {

        margin-bottom: 10px;

        font-size: 7px;
    }


    .mth-about__title {

        font-size: clamp(28px,
                4vw,
                39px);
    }


    .mth-about__description {

        max-width: 290px;

        margin-top: 14px;

        font-size: 8px;
    }


    .mth-about__button {

        margin-top: 15px;

        min-height: 29px;

        padding-inline: 12px;

        font-size: 7px;
    }


    .mth-about__visual {

        min-height: 330px;
    }


    .mth-about__image {

        min-height: 330px;
    }


    .mth-about__experience {

        left: -30px;

        bottom: 28px;

        width: 105px;

        min-height: 100px;

        padding: 14px;
    }


    .mth-about__experience strong {

        font-size: 26px;
    }


    .mth-about__experience>span {

        font-size: 6px;
    }


    .mth-about__capabilities {

        min-height: 330px;

        padding:
            32px 18px 22px 28px;
    }


    .mth-about__capability {

        min-height: 39px;

        font-size: 8px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-about__wrapper {

        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    /* -----------------------------------------------
       Content
       ----------------------------------------------- */

    .mth-about__content {

        width: 100%;

        min-height: auto;

        padding:
            42px 20px 35px;
    }


    .mth-about__eyebrow {

        font-size: 7px;

        margin-bottom: 11px;
    }


    .mth-about__title {

        max-width: 430px;

        font-size: clamp(32px,
                9.5vw,
                46px);

        line-height: .98;
    }


    .mth-about__description {

        max-width: 450px;

        margin-top: 16px;

        font-size: 9px;

        line-height: 1.6;
    }


    .mth-about__button {

        margin-top: 18px;

        min-height: 34px;

        font-size: 8px;
    }


    /* -----------------------------------------------
       Image
       ----------------------------------------------- */

    .mth-about__visual {

        width: 100%;

        min-height: 310px;

        overflow: visible;
    }


    .mth-about__image {

        width: 100%;

        height: 310px;

        min-height: 310px;

        object-position: center;
    }


    /* -----------------------------------------------
       Experience Card
       ----------------------------------------------- */

    .mth-about__experience {

        left: 20px;

        bottom: -30px;

        width: 105px;

        min-height: 94px;

        padding: 13px;
    }


    .mth-about__experience strong {

        font-size: 25px;
    }


    /* -----------------------------------------------
       Capabilities
       ----------------------------------------------- */

    .mth-about__capabilities {

        width: 100%;

        min-height: auto;

        margin-top: 30px;

        padding:
            32px 20px 30px;
    }


    .mth-about__capability {

        min-height: 50px;

        font-size: 11px;
    }


    .mth-about__capability svg {

        opacity: 1;

        transform: none;
    }


    .mth-about__capabilities-bottom {

        margin-top: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-about__content {

        padding:
            35px 17px 30px;
    }


    .mth-about__title {

        font-size: 31px;
    }


    .mth-about__description {

        font-size: 8px;
    }


    .mth-about__visual {

        min-height: 270px;
    }


    .mth-about__image {

        height: 270px;

        min-height: 270px;
    }


    .mth-about__experience {

        left: 15px;

        bottom: -27px;

        width: 98px;

        min-height: 88px;
    }


    .mth-about__experience strong {

        font-size: 23px;
    }


    .mth-about__capabilities {

        margin-top: 27px;

        padding:
            28px 17px;
    }


    .mth-about__capability {

        min-height: 46px;

        font-size: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-about__button,
    .mth-about__button svg,
    .mth-about__capability,
    .mth-about__capability svg {

        transition: none;
    }

}





























/* =========================================================
   MITHARV — NUMBERS THAT DEFINE US
   SECTION 04 | PART 2 — CSS
   ========================================================= */

.mth-numbers {

    position: relative;

    width: 100%;

    min-height: 145px;

    overflow: hidden;

    background: #0b1114;

    color: #ffffff;

    isolation: isolate;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mth-numbers__background {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.mth-numbers__background-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    opacity: .75;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mth-numbers__overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(90deg,
            rgba(4, 10, 13, .94) 0%,
            rgba(4, 10, 13, .72) 25%,
            rgba(4, 10, 13, .65) 50%,
            rgba(4, 10, 13, .75) 75%,
            rgba(4, 10, 13, .94) 100%),

        linear-gradient(180deg,
            rgba(3, 8, 11, .35),
            rgba(3, 8, 11, .78));
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.mth-numbers__container {

    position: relative;

    width: calc(100% - 108px);

    max-width: 1440px;

    min-height: 145px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.25fr 1fr 1fr 1fr 1fr 1fr;

    align-items: center;

    box-sizing: border-box;

    text-align: center;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.mth-numbers__label {

    align-self: start;

    padding-top: 5px;

    padding-right: 25px;

    box-sizing: border-box;

    text-align: center;
    margin: auto;
}


.mth-numbers__label span {

    display: block;

    color:
        rgba(255, 255, 255, .38);

    font-size: 24px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: .14em;

    text-transform: uppercase;
}



/* =========================================================
   STAT ITEM
   ========================================================= */

.mth-numbers__item {

    position: relative;

    min-height: 65px;

    padding:
        0 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


/* Vertical separator */

.mth-numbers__item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 1px;

    height: 43px;

    transform: translateY(-50%);

    background:
        rgba(255, 255, 255, .22);
}


/* =========================================================
   NUMBER
   ========================================================= */

.mth-numbers__value {

    display: block;

    color: #ffffff;

    font-size: 40px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.045em;
}


.mth-numbers__value span {

    color: #c9a565;

    font-size: 22px;

    font-weight: 400;
}


/* =========================================================
   LABEL
   ========================================================= */

.mth-numbers__text {

    display: block;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, .56);

    font-size: 12px;

    font-weight: 400;

    line-height: 1.25;

    white-space: nowrap;
}


/* =========================================================
   HOVER
   ========================================================= */

.mth-numbers__item {

    transition:
        transform .25s ease;
}


.mth-numbers__item:hover {

    transform: translateY(-2px);
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .mth-numbers__container {

        width: calc(100% - 70px);

        grid-template-columns:
            1.15fr repeat(5, 1fr);
    }


    .mth-numbers__item {

        padding-inline: 14px;
    }


    .mth-numbers__value {

        font-size: 25px;
    }


    .mth-numbers__value span {

        font-size: 19px;
    }


    .mth-numbers__text {

        font-size: 6.5px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mth-numbers {

        min-height: 125px;
    }


    .mth-numbers__container {

        width: calc(100% - 44px);

        min-height: 125px;

        grid-template-columns:
            1.1fr repeat(5, 1fr);
    }


    .mth-numbers__label {

        padding-top: 16px;

        padding-right: 12px;
    }


    .mth-numbers__label span {

        font-size: 5.5px;
    }


    .mth-numbers__item {

        min-height: 58px;

        padding-inline: 10px;
    }


    .mth-numbers__item::before {

        height: 38px;
    }


    .mth-numbers__value {

        font-size: 21px;
    }


    .mth-numbers__value span {

        font-size: 16px;
    }


    .mth-numbers__text {

        margin-top: 5px;

        font-size: 5.5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-numbers {

        min-height: auto;
    }


    .mth-numbers__container {

        width: calc(100% - 24px);

        min-height: auto;

        padding:
            20px 0;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 18px;
    }


    /* Label */

    .mth-numbers__label {

        grid-column: 1 / -1;

        align-self: auto;

        padding: 0;

        text-align: center;
    }


    .mth-numbers__label span {

        font-size: 6px;

        letter-spacing: .13em;
    }


    /* Stats */

    .mth-numbers__item {

        min-height: 58px;

        padding:
            0 12px;

        align-items: center;

        text-align: center;
    }


    .mth-numbers__item::before {

        height: 40px;
    }


    .mth-numbers__item:nth-of-type(2n + 1)::before {

        display: none;
    }


    .mth-numbers__value {

        font-size: 23px;
    }


    .mth-numbers__value span {

        font-size: 17px;
    }


    .mth-numbers__text {

        font-size: 6px;

        white-space: normal;

        text-align: center;
    }


    /* Last item */

    .mth-numbers__item:last-child {

        grid-column: 1 / -1;

        width: 50%;

        margin: 0 auto;
    }


    .mth-numbers__item:last-child::before {

        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-numbers__container {

        width: calc(100% - 18px);

        padding-block: 17px;

        row-gap: 15px;
    }


    .mth-numbers__item {

        padding-inline: 7px;
    }


    .mth-numbers__value {

        font-size: 20px;
    }


    .mth-numbers__value span {

        font-size: 15px;
    }


    .mth-numbers__text {

        font-size: 5.5px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-numbers__item {

        transition: none;
    }

}




























/* =========================================================
   MITHARV — LANDMARK PROJECTS
   SECTION 05 | PART 2 — CSS
   ========================================================= */

.mth-projects {

    --mth-projects-gold: #c6a05d;

    position: relative;

    width: 100%;

    padding: 48px 0 40px;

    overflow: hidden;

    background: #f7f7f5;

    color: #171b1c;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-projects__container {

    width: calc(100% - 72px);

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.mth-projects__header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 25px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-projects__eyebrow {

    display: block;

    margin-bottom: 8px;

    color: #a18a68;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-projects__title {

    margin: 0;

    font-size: clamp(
        34px,
        3.3vw,
        50px
    );

    font-weight: 500;

    line-height: .94;

    letter-spacing: -.045em;
}


.mth-projects__title span {

    display: block;

    color: #15191a;
}


.mth-projects__title strong {

    display: block;

    color: var(--mth-projects-gold);

    font-weight: 500;
}


/* =========================================================
   INTRO
   ========================================================= */

.mth-projects__intro {

    min-width: 650px;

    display: flex;

    align-items: flex-end;

    gap: 30px;

    padding-bottom: 2px;
}


.mth-projects__intro p {

    max-width: 400px;

    margin: 0;

    color: #777a77;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   VIEW ALL
   ========================================================= */

.mth-projects__view-all {

    min-width: 150px;

    min-height: 40px;

    padding: 0 11px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border: 1px solid #a8a8a3;

    color: #686a67;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.mth-projects__view-all svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-projects__view-all:hover {

    border-color: var(--mth-projects-gold);

    background: var(--mth-projects-gold);

    color: #ffffff;
}


.mth-projects__view-all:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.mth-projects__grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 7px;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.mth-project-card {

    position: relative;

    min-width: 0;

    overflow: hidden;

    background: #20272a;

    aspect-ratio: 1.04 / 1;

    box-sizing: border-box;
}


.mth-project-card__link {

    position: relative;

    width: 100%;

    height: 100%;

    display: block;

    color: inherit;

    text-decoration: none;

    overflow: hidden;
}


/* =========================================================
   IMAGE
   ========================================================= */

.mth-project-card__image {

    position: absolute;

    inset: 0;

    overflow: hidden;
    

}


.mth-project-card__image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.001);

    transition:
        transform .65s cubic-bezier(
            .2,
            .65,
            .25,
            1
        );
}


/* =========================================================
   DARK GRADIENT
   ========================================================= */

.mth-project-card__overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 25%,
            rgba(0,0,0,.18) 50%,
            rgba(0,0,0,.88) 100%
        );

    z-index: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */

.mth-project-card__content {

    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 15px;

    z-index: 3;

    color: #ffffff;
}


/* =========================================================
   DETAILS
   ========================================================= */

.mth-project-card__details {

    padding-right: 45px;
}


.mth-project-card__details h3 {

    margin: 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -.01em;
}


.mth-project-card__details span {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.88);

    font-size: 15px;

    line-height: 1.2;
}


/* =========================================================
   META
   ========================================================= */

.mth-project-card__meta {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 9px;

    color: #d3b273;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .08em;

    line-height: 1;

    text-transform: uppercase;
}


.mth-project-card__meta i {

    width: 2px;

    height: 2px;

    border-radius: 50%;

    background: #d3b273;
}


/* =========================================================
   ARROW
   ========================================================= */

.mth-project-card__arrow {

    position: absolute;

    right: 13px;

    bottom: 13px;

    z-index: 4;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.72);

    border-radius: 50%;

    background:
        rgba(0,0,0,.08);

    color: #ffffff;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.mth-project-card__arrow svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.35;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.mth-project-card__link:hover
.mth-project-card__image img {

    transform: scale(1.055);
}


.mth-project-card__link:hover
.mth-project-card__arrow {

    background: var(--mth-projects-gold);

    border-color: var(--mth-projects-gold);

    transform: translate(2px, -2px);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-projects__container {

        width: calc(100% - 60px);
    }


    .mth-projects__intro {

        max-width: 370px;

        gap: 18px;
    }


    .mth-projects__intro p {

        max-width: 225px;

        font-size: 7px;
    }


    .mth-project-card__content {

        left: 12px;

        right: 12px;

        bottom: 12px;
    }


    .mth-project-card__details h3 {

        font-size: 9px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-projects {

        padding:
            40px 0
            44px;
    }


    .mth-projects__container {

        width: calc(100% - 44px);
    }


    .mth-projects__header {

        gap: 25px;

        margin-bottom: 20px;
    }


    .mth-projects__title {

        font-size: clamp(
            30px,
            4.2vw,
            42px
        );
    }


    .mth-projects__intro {

        max-width: 330px;

        gap: 12px;
    }


    .mth-projects__intro p {

        max-width: 190px;

        font-size: 6.5px;
    }


    .mth-projects__view-all {

        min-width: 100px;

        min-height: 28px;

        font-size: 6px;
    }


    .mth-projects__grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;
    }


    .mth-project-card {

        aspect-ratio: 1.35 / 1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-projects {

        padding:
            38px 0
            40px;
    }


    .mth-projects__container {

        width: calc(100% - 30px);
    }


    /* Header */

    .mth-projects__header {

        display: block;

        margin-bottom: 20px;
    }


    .mth-projects__eyebrow {

        margin-bottom: 9px;

        font-size: 6px;
    }


    .mth-projects__title {

        font-size: clamp(
            31px,
            9.5vw,
            44px
        );
    }


    .mth-projects__intro {

        margin-top: 16px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 12px;
    }


    .mth-projects__intro p {

        max-width: 235px;

        font-size: 7px;

        line-height: 1.55;
    }


    .mth-projects__view-all {

        min-width: 105px;

        min-height: 30px;

        padding-inline: 8px;

        font-size: 6px;
    }


    /* Grid */

    .mth-projects__grid {

        grid-template-columns:
            1fr;

        gap: 8px;
    }


    .mth-project-card {

        width: 100%;

        aspect-ratio: 1.45 / 1;
    }


    .mth-project-card__content {

        left: 15px;

        right: 15px;

        bottom: 15px;
    }


    .mth-project-card__details h3 {

        font-size: 11px;
    }


    .mth-project-card__details span {

        font-size: 8px;
    }


    .mth-project-card__meta {

        margin-top: 7px;

        font-size: 6px;
    }


    .mth-project-card__arrow {

        right: 13px;

        bottom: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-projects {

        padding:
            32px 0
            35px;
    }


    .mth-projects__container {

        width: calc(100% - 20px);
    }


    .mth-projects__intro {

        display: block;
    }


    .mth-projects__intro p {

        max-width: 100%;

        font-size: 7px;
    }


    .mth-projects__view-all {

        margin-top: 12px;
    }


    .mth-project-card {

        aspect-ratio: 1.25 / 1;
    }


    .mth-project-card__content {

        left: 12px;

        right: 12px;

        bottom: 12px;
    }


    .mth-project-card__details h3 {

        font-size: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-project-card__image img,
    .mth-project-card__arrow,
    .mth-projects__view-all,
    .mth-projects__view-all svg {

        transition: none;
    }

}




























/* =========================================================
   MITHARV — INTEGRATED CAPABILITIES
   SECTION 06 | PART 2 — CSS
   ========================================================= */

.mth-capabilities {

    --mth-cap-gold: #c5a061;

    width: 100%;

    padding: 40px 0 40px;

    background: #f7f7f5;

    color: #15191a;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-capabilities__container {

    width: calc(100% - 72px);

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.mth-capabilities__header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 25px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-capabilities__eyebrow {

    display: block;

    margin-bottom: 8px;

    color: #a28b67;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-capabilities__title {

    margin: 0;

    font-size: clamp(
        34px,
        3.3vw,
        50px
    );

    font-weight: 500;

    line-height: .94;

    letter-spacing: -.045em;
}


.mth-capabilities__title span {

    display: block;

    color: #15191a;
}


.mth-capabilities__title strong {

    display: block;

    color: var(--mth-cap-gold);

    font-weight: 500;
}


/* =========================================================
   INTRO
   ========================================================= */

.mth-capabilities__intro {

    max-width: 550px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 35px;
}


.mth-capabilities__intro p {

    max-width: 310px;

    margin: 0;

    color: #777a77;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-capabilities__button {

    min-width: 155px;

    min-height: 34px;

    padding: 0 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 1px solid #c1b59f;

    color: #90754a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.mth-capabilities__button svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-capabilities__button:hover {

    background: var(--mth-cap-gold);

    border-color: var(--mth-cap-gold);

    color: #ffffff;
}


.mth-capabilities__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   GRID
   ========================================================= */

.mth-capabilities__grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 7px;
}


/* =========================================================
   CARD
   ========================================================= */

.mth-capability-card {

    position: relative;

    min-width: 0;

    overflow: hidden;

    aspect-ratio: .78 / 1;

    background: #172024;
}


.mth-capability-card__link {

    position: relative;

    width: 100%;

    height: 100%;

    display: block;

    overflow: hidden;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================================
   IMAGE
   ========================================================= */

.mth-capability-card__image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.mth-capability-card__image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.001);

    transition:
        transform .65s cubic-bezier(
            .2,
            .65,
            .25,
            1
        );
        
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mth-capability-card__overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 15%,
            rgba(0,0,0,.15) 38%,
            rgba(0,0,0,.90) 100%
        );

        
}


/* =========================================================
   NUMBER / ICON
   ========================================================= */

.mth-capability-card__icon {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 3;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.52);

    border-radius: 50%;

    background:
        rgba(0,0,0,.12);

    backdrop-filter: blur(3px);
}


.mth-capability-card__icon span {

    color: rgba(255,255,255,.85);

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   CONTENT
   ========================================================= */

.mth-capability-card__content {

    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 15px;

    z-index: 3;
}


.mth-capability-card__content h3 {

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -.015em;
}


.mth-capability-card__content p {

    max-width: 145px;

    margin: 10px 0 0;

    color: rgba(255,255,255,.76);

    font-size: 12px;

    line-height: 1.35;
}


/* =========================================================
   ARROW
   ========================================================= */

.mth-capability-card__arrow {

    position: absolute;

    right: 11px;

    bottom: 12px;

    z-index: 4;

    width: 21px;

    height: 21px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;
}


.mth-capability-card__arrow svg {

    width: 13px;

    height: 13px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.35;

    transition:
        transform .25s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.mth-capability-card__link:hover
.mth-capability-card__image img {

    transform: scale(1.065);
}


.mth-capability-card__link:hover
.mth-capability-card__arrow svg {

    transform: translate(3px, -3px);
}


.mth-capability-card__link:hover
.mth-capability-card__icon {

    border-color: var(--mth-cap-gold);

    background:
        rgba(197,160,97,.15);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-capabilities__container {

        width: calc(100% - 60px);
    }


    .mth-capabilities__intro {

        gap: 18px;

        max-width: 470px;
    }


    .mth-capabilities__intro p {

        max-width: 240px;

        font-size: 7px;
    }


    .mth-capabilities__button {

        min-width: 130px;

        font-size: 6px;
    }


    .mth-capability-card__content {

        left: 11px;

        right: 11px;

        bottom: 12px;
    }


    .mth-capability-card__content h3 {

        font-size: 8px;
    }


    .mth-capability-card__content p {

        margin-top: 7px;

        font-size: 6px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-capabilities {

        padding:
            40px 0
            45px;
    }


    .mth-capabilities__container {

        width: calc(100% - 44px);
    }


    .mth-capabilities__header {

        gap: 25px;

        margin-bottom: 20px;
    }


    .mth-capabilities__title {

        font-size: clamp(
            30px,
            4.2vw,
            42px
        );
    }


    .mth-capabilities__intro {

        max-width: 350px;

        gap: 12px;
    }


    .mth-capabilities__intro p {

        max-width: 185px;

        font-size: 6px;
    }


    .mth-capabilities__button {

        min-width: 105px;

        min-height: 29px;

        padding-inline: 7px;

        font-size: 5.5px;
    }


    .mth-capabilities__grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 7px;
    }


    .mth-capability-card {

        aspect-ratio: .95 / 1;
    }


    .mth-capability-card__content h3 {

        font-size: 9px;
    }


    .mth-capability-card__content p {

        font-size: 6.5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-capabilities {

        padding:
            38px 0
            42px;
    }


    .mth-capabilities__container {

        width: calc(100% - 30px);
    }


    /* Header */

    .mth-capabilities__header {

        display: block;

        margin-bottom: 20px;
    }


    .mth-capabilities__eyebrow {

        margin-bottom: 9px;

        font-size: 6px;
    }


    .mth-capabilities__title {

        font-size: clamp(
            31px,
            9.5vw,
            44px
        );
    }


    .mth-capabilities__intro {

        margin-top: 16px;

        display: block;

        max-width: 100%;
    }


    .mth-capabilities__intro p {

        max-width: 100%;

        font-size: 7px;

        line-height: 1.55;
    }


    .mth-capabilities__button {

        margin-top: 13px;

        min-width: 125px;

        min-height: 31px;

        font-size: 6px;
    }


    /* Cards */

    .mth-capabilities__grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;
    }


    .mth-capability-card {

        aspect-ratio: .86 / 1;
    }


    .mth-capability-card__icon {

        top: 10px;

        left: 10px;

        width: 23px;

        height: 23px;
    }


    .mth-capability-card__content {

        left: 11px;

        right: 11px;

        bottom: 12px;
    }


    .mth-capability-card__content h3 {

        font-size: 9px;
    }


    .mth-capability-card__content p {

        max-width: 125px;

        margin-top: 7px;

        font-size: 6px;
    }


    .mth-capability-card__arrow {

        right: 8px;

        bottom: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-capabilities {

        padding:
            32px 0
            35px;
    }


    .mth-capabilities__container {

        width: calc(100% - 20px);
    }


    .mth-capabilities__grid {

        gap: 5px;
    }


    .mth-capability-card {

        aspect-ratio: .82 / 1;
    }


    .mth-capability-card__content {

        left: 9px;

        right: 9px;

        bottom: 10px;
    }


    .mth-capability-card__content h3 {

        font-size: 8px;
    }


    .mth-capability-card__content p {

        font-size: 5.5px;
    }


    .mth-capability-card__icon {

        width: 21px;

        height: 21px;

        top: 8px;

        left: 8px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-capability-card__image img,
    .mth-capability-card__arrow svg {

        transition: none;
    }

}













































/* =========================================================
   MITHARV — REAL ESTATE
   SECTION 07 | PART 2 — CSS
   ========================================================= */

.mth-realestate {

    --mth-re-gold: #c6a05d;

    position: relative;

    width: 100%;

    min-height: 420px;

    overflow: hidden;

    background: #101719;

    color: #ffffff;

    isolation: isolate;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mth-realestate__background {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.mth-realestate__background-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.001);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mth-realestate__overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(3,9,11,.94) 0%,
            rgba(3,9,11,.76) 25%,
            rgba(3,9,11,.18) 54%,
            rgba(3,9,11,.28) 72%,
            rgba(3,9,11,.94) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,.42)
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-realestate__container {

    position: relative;

    width: 100%;

    min-height: 420px;

    display: grid;

    grid-template-columns:
        40%
        40%
        20%;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.mth-realestate__content {

    position: relative;

    z-index: 3;

    padding:
        48px
        35px
        48px
        max(35px, calc((100vw - 1600px) / 2));

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-realestate__eyebrow {

    margin-bottom: 12px;

    color: var(--mth-re-gold);

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .17em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-realestate__title {

    max-width: 500px;

    margin: 0;

    font-size: clamp(
        35px,
        3.45vw,
        50px
    );

    font-weight: 500;

    line-height: .96;

    letter-spacing: -.045em;
}


.mth-realestate__title span {

    display: block;

    color: #ffffff;
}


.mth-realestate__title strong {

    display: block;

    margin-top: 2px;

    color: var(--mth-re-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-realestate__description {

    max-width: 400px;

    margin: 19px 0 0;

    color: rgba(255,255,255,.67);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-realestate__button {

    width: fit-content;

    min-height: 32px;

    margin-top: 20px;

    padding:
        0
        14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--mth-re-gold);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;

        border-radius: 5px;
}


.mth-realestate__button svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-realestate__button:hover {

    background: #ad894d;

    transform: translateY(-1px);
}


.mth-realestate__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   CENTER VISUAL
   ========================================================= */

.mth-realestate__visual {

    position: relative;

    min-width: 0;

    min-height: 420px;
}


/* =========================================================
   RIGHT CATEGORIES
   ========================================================= */

.mth-realestate__categories {

    position: relative;

    z-index: 4;

    min-height: 420px;

    padding:
        45px
        max(30px, calc((100vw - 1440px) / 2))
        28px
        38px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-left: 1px solid
        rgba(255,255,255,.13);

    box-sizing: border-box;
}


/* =========================================================
   CATEGORY LIST
   ========================================================= */

.mth-realestate__category-list {

    width: 100%;
}


.mth-realestate__category {

    position: relative;

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid
        rgba(255,255,255,.13);

    color: rgba(255,255,255,.82);

    font-size: 12px;

    font-weight: 400;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.mth-realestate__category:first-child {

    border-top: 0;
}


.mth-realestate__category svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: var(--mth-re-gold);

    stroke-width: 1.3;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.mth-realestate__category:hover {

    color: #ffffff;

    padding-left: 5px;
}


.mth-realestate__category:hover svg {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   BOTTOM LABEL
   ========================================================= */

.mth-realestate__bottom {

    display: flex;

    flex-direction: column;

    gap: 3px;

    color: rgba(255,255,255,.34);

    font-size: 6px;

    font-weight: 500;

    line-height: 1.25;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.mth-realestate__bottom span:first-child {

    color: var(--mth-re-gold);

    font-size: 6px;
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-realestate__content {

        padding-left: 35px;

        padding-right: 25px;
    }


    .mth-realestate__categories {

        padding-left: 25px;

        padding-right: 25px;
    }


    .mth-realestate__title {

        font-size: clamp(
            31px,
            3.8vw,
            45px
        );
    }


    .mth-realestate__category {

        font-size: 9px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-realestate {

        min-height: 350px;
    }


    .mth-realestate__container {

        min-height: 350px;

        grid-template-columns:
            42%
            38%
            20%;
    }


    .mth-realestate__content {

        min-height: 350px;

        padding:
            35px
            20px
            35px
            25px;
    }


    .mth-realestate__eyebrow {

        font-size: 6px;

        margin-bottom: 9px;
    }


    .mth-realestate__title {

        font-size: clamp(
            27px,
            4.2vw,
            38px
        );
    }


    .mth-realestate__description {

        max-width: 270px;

        margin-top: 14px;

        font-size: 7px;
    }


    .mth-realestate__button {

        min-height: 29px;

        margin-top: 15px;

        padding-inline: 11px;

        font-size: 6px;
    }


    .mth-realestate__visual {

        min-height: 350px;
    }


    .mth-realestate__categories {

        min-height: 350px;

        padding:
            35px
            18px
            22px
            22px;
    }


    .mth-realestate__category {

        min-height: 39px;

        font-size: 8px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-realestate {

        min-height: auto;
    }


    .mth-realestate__container {

        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    /* -----------------------------------------------
       Content
       ----------------------------------------------- */

    .mth-realestate__content {

        width: 100%;

        min-height: auto;

        padding:
            42px
            20px
            35px;

        order: 1;
    }


    .mth-realestate__eyebrow {

        margin-bottom: 10px;

        font-size: 6px;
    }


    .mth-realestate__title {

        max-width: 480px;

        font-size: clamp(
            32px,
            9.5vw,
            45px
        );
    }


    .mth-realestate__description {

        max-width: 450px;

        margin-top: 16px;

        font-size: 8px;

        line-height: 1.6;
    }


    .mth-realestate__button {

        margin-top: 18px;

        min-height: 34px;

        font-size: 7px;
    }


    /* -----------------------------------------------
       Image
       ----------------------------------------------- */

    .mth-realestate__visual {

        width: 100%;

        min-height: 300px;

        order: 2;
    }


    /* -----------------------------------------------
       Categories
       ----------------------------------------------- */

    .mth-realestate__categories {

        width: 100%;

        min-height: auto;

        padding:
            30px
            20px
            28px;

        border-left: 0;

        order: 3;

        background: #0b1114;
    }


    .mth-realestate__category {

        min-height: 50px;

        font-size: 10px;
    }


    .mth-realestate__category svg {

        opacity: 1;

        transform: none;
    }


    .mth-realestate__bottom {

        margin-top: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-realestate__content {

        padding:
            35px
            17px
            30px;
    }


    .mth-realestate__title {

        font-size: 31px;
    }


    .mth-realestate__description {

        font-size: 7px;
    }


    .mth-realestate__visual {

        min-height: 245px;
    }


    .mth-realestate__categories {

        padding:
            25px
            17px
            25px;
    }


    .mth-realestate__category {

        min-height: 46px;

        font-size: 9px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-realestate__button,
    .mth-realestate__button svg,
    .mth-realestate__category,
    .mth-realestate__category svg {

        transition: none;
    }

}


.mth-realestate__categories {
    padding:
        25px
        17px
        25px;
}











































/* =========================================================
   MITHARV — FROM VISION TO REALITY
   SECTION 08 | PART 2 — CSS
   ========================================================= */

.mth-process {

    --mth-process-gold: #c6a05d;

    --mth-process-dark: #171b1c;

    --mth-process-muted: #777a77;

    position: relative;

    width: 100%;

    padding: 40px 0 40px;

    overflow: hidden;

    background: #f7f7f5;

    color: var(--mth-process-dark);

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-process__container {

    width: calc(100% - 72px);

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.mth-process__header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 38px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-process__eyebrow {

    display: block;

    margin-bottom: 8px;

    color: #a28b67;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-process__title {

    margin: 0;

    font-size: clamp(
        34px,
        3.3vw,
        50px
    );

    font-weight: 500;

    line-height: .95;

    letter-spacing: -.045em;
}


.mth-process__title span {

    display: block;

    color: #15191a;
}


.mth-process__title strong {

    display: block;

    color: var(--mth-process-gold);

    font-weight: 500;
}


/* =========================================================
   INTRO
   ========================================================= */

.mth-process__intro {

    width: 42%;

    max-width: 500px;

    padding-top: 4px;
}


.mth-process__intro p {

    max-width: 380px;

    margin: 40px 0 0 auto;

    color: var(--mth-process-muted);

    font-size: 12px;

    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.mth-process__timeline {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 0;

    width: 100%;
}


/* =========================================================
   PROCESS ITEM
   ========================================================= */

.mth-process__item {

    position: relative;

    min-width: 0;

    padding-right: 45px;

    box-sizing: border-box;
}


/* =========================================================
   NUMBER
   ========================================================= */

.mth-process__number {

    margin-bottom: 8px;

    color: #34393a;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   STEP CONTENT
   ========================================================= */

.mth-process__step {

    min-height: 68px;
}


.mth-process__step h3 {

    margin: 0;

    color: #202526;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.2;
}


.mth-process__step p {

    max-width: 200px;

    margin: 9px 0 0;

    color: #777b79;

    font-size: 15px;

    line-height: 1.4;
}


/* =========================================================
   CONNECTOR
   ========================================================= */

.mth-process__connector {

    position: absolute;

    top: 39px;

    right: 8px;

    width: 42px;

    height: 15px;

    display: flex;

    align-items: center;
}


/* Line */

.mth-process__connector span {

    position: absolute;

    left: 0;

    right: 7px;

    top: 50%;

    height: 1px;

    background: #b6b7b3;

    transform: translateY(-50%);
}


/* Arrow */

.mth-process__connector svg {

    position: absolute;

    right: 0;

    width: 11px;

    height: 11px;

    fill: none;

    stroke: #999b97;

    stroke-width: 1.1;

    background: #f7f7f5;
}


/* =========================================================
   LAST ITEM
   ========================================================= */

.mth-process__item--last {

    padding-right: 0;
}


.mth-process__item--last
.mth-process__step p {

    max-width: 140px;
}


/* =========================================================
   HOVER
   ========================================================= */

.mth-process__item {

    transition:
        transform .25s ease;
}


.mth-process__item:hover {

    transform: translateY(-2px);
}


.mth-process__item:hover
.mth-process__number {

    color: var(--mth-process-gold);
}


.mth-process__item:hover
.mth-process__connector svg {

    stroke: var(--mth-process-gold);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-process__container {

        width: calc(100% - 60px);
    }


    .mth-process__item {

        padding-right: 30px;
    }


    .mth-process__connector {

        right: 2px;

        width: 30px;
    }


    .mth-process__step h3 {

        font-size: 10px;
    }


    .mth-process__step p {

        font-size: 6.5px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mth-process {

        padding:
            40px 0
            43px;
    }


    .mth-process__container {

        width: calc(100% - 44px);
    }


    .mth-process__header {

        gap: 30px;

        margin-bottom: 30px;
    }


    .mth-process__title {

        font-size: clamp(
            30px,
            4.2vw,
            42px
        );
    }


    .mth-process__intro {

        width: 45%;
    }


    .mth-process__intro p {

        max-width: 270px;

        font-size: 7px;
    }


    .mth-process__number {

        font-size: 10px;
    }


    .mth-process__item {

        padding-right: 25px;
    }


    .mth-process__connector {

        width: 24px;

        right: 0;
    }


    .mth-process__step h3 {

        font-size: 8px;
    }


    .mth-process__step p {

        max-width: 110px;

        margin-top: 7px;

        font-size: 6px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-process {

        padding:
            38px 0
            42px;
    }


    .mth-process__container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------------
       Header
       ----------------------------------------------- */

    .mth-process__header {

        display: block;

        margin-bottom: 30px;
    }


    .mth-process__eyebrow {

        margin-bottom: 9px;

        font-size: 6px;
    }


    .mth-process__title {

        font-size: clamp(
            31px,
            9.5vw,
            44px
        );
    }


    .mth-process__intro {

        width: 100%;

        max-width: 450px;

        margin-top: 15px;

        padding: 0;
    }


    .mth-process__intro p {

        max-width: 100%;

        margin: 0;

        font-size: 7px;

        line-height: 1.6;
    }


    /* -----------------------------------------------
       Timeline
       ----------------------------------------------- */

    .mth-process__timeline {

        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 0;
    }


    /* -----------------------------------------------
       Item
       ----------------------------------------------- */

    .mth-process__item {

        min-height: 105px;

        padding:
            0
            0
            25px
            55px;
    }


    /* Vertical timeline */

    .mth-process__item::before {

        content: "";

        position: absolute;

        left: 15px;

        top: 21px;

        bottom: 0;

        width: 1px;

        background: #d1d1cc;
    }


    /* Circle */

    .mth-process__item::after {

        content: "";

        position: absolute;

        left: 9px;

        top: 0;

        width: 13px;

        height: 13px;

        border: 1px solid
            var(--mth-process-gold);

        border-radius: 50%;

        background: #f7f7f5;

        box-sizing: border-box;
    }


    .mth-process__item--last::before {

        display: none;
    }


    /* Number */

    .mth-process__number {

        margin-bottom: 6px;

        font-size: 9px;
    }


    /* Content */

    .mth-process__step {

        min-height: auto;
    }


    .mth-process__step h3 {

        font-size: 11px;
    }


    .mth-process__step p {

        max-width: 260px;

        margin-top: 7px;

        font-size: 7px;

        line-height: 1.5;
    }


    /* Hide desktop connector */

    .mth-process__connector {

        display: none;
    }


    /* Disable movement */

    .mth-process__item:hover {

        transform: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-process {

        padding:
            32px 0
            35px;
    }


    .mth-process__container {

        width: calc(100% - 20px);
    }


    .mth-process__item {

        min-height: 100px;

        padding-left: 50px;

        padding-bottom: 22px;
    }


    .mth-process__item::before {

        left: 13px;

        top: 20px;
    }


    .mth-process__item::after {

        left: 7px;

        width: 13px;

        height: 13px;
    }


    .mth-process__number {

        font-size: 8px;
    }


    .mth-process__step h3 {

        font-size: 10px;
    }


    .mth-process__step p {

        font-size: 6.5px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-process__item {

        transition: none;
    }

}







































/* =========================================================
   MITHARV — WHY MIATHARV
   SECTION 09 | PART 2 — CSS
   ========================================================= */

.mth-values {

    --mth-values-gold: #c6a05d;

    --mth-values-dark: #0a1114;

    width: 100%;

    overflow: hidden;

    background: #f7f7f5;

    color: #15191a;

    box-sizing: border-box;
}


/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.mth-values__wrapper {

    width: 100%;

    min-height: 350px;

    display: grid;

    grid-template-columns:
        34%
        22%
        36%
        8%;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.mth-values__content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        42px
        35px
        42px
        max(35px, calc((100vw - 1600px) / 2));

    background: #f7f7f5;

    box-sizing: border-box;

    z-index: 2;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-values__eyebrow {

    display: block;

    margin-bottom: 10px;

    color: #a18a66;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-values__title {

    max-width: 410px;

    margin: 0;

    font-size: clamp(
        31px,
        3vw,
        50px
    );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.045em;
}


.mth-values__title span {

    display: block;

    color: #171b1c;
}


.mth-values__title strong {

    display: block;

    color: var(--mth-values-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-values__description {

    max-width: 340px;

    margin: 17px 0 0;

    color: #747874;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-values__button {

    width: fit-content;

    min-height: 31px;

    margin-top: 18px;

    padding:
        0
        14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--mth-values-gold);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;
        

        border-radius: 10px;
}


.mth-values__button svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-values__button:hover {

    background: #ac884e;

    transform: translateY(-1px);
}


.mth-values__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   VALUES POINTS
   ========================================================= */

.mth-values__points {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 20px;

    padding:
        30px
        20px
        30px
        25px;

    background: #f7f7f5;

    box-sizing: border-box;
}


/* =========================================================
   SINGLE POINT
   ========================================================= */

.mth-values__point {

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    transition:
        transform .25s ease;
}


.mth-values__point:hover {

    transform: translateX(4px);
}


/* =========================================================
   ICON
   ========================================================= */

.mth-values__icon {

    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.mth-values__icon svg {

    width: 50px;

    height: 50px;

    fill: none;

    stroke: #9a9c99;

    stroke-width: 1.1;

    transition:
        stroke .25s ease;
}


.mth-values__point:hover
.mth-values__icon svg {

    stroke: var(--mth-values-gold);
}


/* =========================================================
   POINT CONTENT
   ========================================================= */

.mth-values__point-content h3 {

    margin: 0;

    color: #313637;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.15;
}


.mth-values__point-content span {

    display: block;

    margin-top: 2px;

    color: #777b78;

    font-size: 12px;

    line-height: 1.2;
}


/* =========================================================
   VISUAL
   ========================================================= */

.mth-values__visual {

    position: relative;

    min-width: 0;

    min-height: 350px;

    overflow: hidden;

    background: #1a2225;
}


.mth-values__image {

    width: 100%;

    height: 100%;

    min-height: 350px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .8s ease;
}


.mth-values__visual:hover
.mth-values__image {

    transform: scale(1.025);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.mth-values__image-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.08),
            transparent 45%,
            rgba(0,0,0,.12)
        );
}


/* =========================================================
   BRAND PANEL
   ========================================================= */

.mth-values__brand {

    position: relative;

    min-height: 350px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--mth-values-dark);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   BRAND LINE
   ========================================================= */

.mth-values__brand-line {

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 1px;

    background:
        rgba(255,255,255,.16);
}


/* =========================================================
   BRAND TEXT
   ========================================================= */

.mth-values__brand-text {

    display: flex;

    flex-direction: column;

    gap: 1px;

    color: rgba(255,255,255,.46);

    font-size: 12px;

    font-weight: 500;

    line-height: 1.35;

    letter-spacing: .08em;

    text-align: left;
}


/* =========================================================
   BRAND MARK
   ========================================================= */

.mth-values__brand-mark {

    position: absolute;

    right: 14px;

    bottom: 18px;

    width: 15px;

    height: 28px;

    display: flex;

    justify-content: space-between;
}


.mth-values__brand-mark span {

    width: 1px;

    height: 100%;

    background:
        rgba(255,255,255,.16);
}


.mth-values__brand-mark span:last-child {

    height: 65%;

    align-self: flex-end;

    background:
        var(--mth-values-gold);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-values__wrapper {

        grid-template-columns:
            35%
            22%
            35%
            8%;
    }


    .mth-values__content {

        padding-left: 30px;

        padding-right: 25px;
    }


    .mth-values__title {

        font-size: clamp(
            29px,
            3.2vw,
            40px
        );
    }


    .mth-values__points {

        padding-left: 18px;

        padding-right: 15px;

        gap: 15px;
    }


    .mth-values__point {

        gap: 9px;
    }


    .mth-values__icon {

        width: 29px;

        height: 29px;

        flex-basis: 29px;
    }


    .mth-values__icon svg {

        width: 27px;

        height: 27px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-values__wrapper {

        min-height: 310px;

        grid-template-columns:
            38%
            20%
            35%
            7%;
    }


    .mth-values__content {

        min-height: 310px;

        padding:
            30px
            18px
            30px
            25px;
    }


    .mth-values__eyebrow {

        font-size: 6px;

        margin-bottom: 8px;
    }


    .mth-values__title {

        font-size: clamp(
            25px,
            4vw,
            35px
        );
    }


    .mth-values__description {

        margin-top: 13px;

        font-size: 6.5px;
    }


    .mth-values__button {

        min-height: 28px;

        margin-top: 14px;

        padding-inline: 11px;

        font-size: 6px;
    }


    .mth-values__points {

        min-height: 310px;

        gap: 12px;

        padding:
            20px
            10px
            20px
            15px;
    }


    .mth-values__point {

        min-height: 42px;

        gap: 7px;
    }


    .mth-values__icon {

        width: 26px;

        height: 26px;

        flex-basis: 26px;
    }


    .mth-values__icon svg {

        width: 24px;

        height: 24px;
    }


    .mth-values__point-content h3 {

        font-size: 7px;
    }


    .mth-values__point-content span {

        font-size: 6px;
    }


    .mth-values__visual {

        min-height: 310px;
    }


    .mth-values__image {

        min-height: 310px;
    }


    .mth-values__brand {

        min-height: 310px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-values__wrapper {

        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    /* -----------------------------------------------
       Content
       ----------------------------------------------- */

    .mth-values__content {

        width: 100%;

        min-height: auto;

        padding:
            40px
            20px
            30px;

        order: 1;
    }


    .mth-values__eyebrow {

        margin-bottom: 10px;

        font-size: 6px;
    }


    .mth-values__title {

        max-width: 480px;

        font-size: clamp(
            31px,
            9.5vw,
            45px
        );
    }


    .mth-values__description {

        max-width: 450px;

        margin-top: 16px;

        font-size: 7.5px;

        line-height: 1.6;
    }


    .mth-values__button {

        margin-top: 17px;

        min-height: 33px;

        font-size: 7px;
    }


    /* -----------------------------------------------
       Values
       ----------------------------------------------- */

    .mth-values__points {

        width: 100%;

        min-height: auto;

        padding:
            28px
            20px;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;

        order: 2;
    }


    .mth-values__point {

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 8px;

        text-align: center;
    }


    .mth-values__point:hover {

        transform: none;
    }


    .mth-values__icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;
    }


    .mth-values__icon svg {

        width: 34px;

        height: 34px;
    }


    .mth-values__point-content h3 {

        font-size: 8px;
    }


    .mth-values__point-content span {

        font-size: 6.5px;
    }


    /* -----------------------------------------------
       Image
       ----------------------------------------------- */

    .mth-values__visual {

        width: 100%;

        min-height: 300px;

        order: 3;
    }


    .mth-values__image {

        width: 100%;

        height: 300px;

        min-height: 300px;

        object-position: center;
    }


    /* -----------------------------------------------
       Brand
       ----------------------------------------------- */

    .mth-values__brand {

        width: 100%;

        min-height: 75px;

        flex-direction: row;

        justify-content: flex-start;

        padding:
            0
            20px;

        order: 4;
    }


    .mth-values__brand-line {

        top: 0;

        bottom: auto;

        width: 100%;

        height: 1px;
    }


    .mth-values__brand-text {

        flex-direction: row;

        gap: 4px;

        font-size: 6px;
    }


    .mth-values__brand-text span:not(:last-child)::after {

        content: " • ";

        color: var(--mth-values-gold);

        margin-left: 3px;
    }


    .mth-values__brand-mark {

        right: 20px;

        bottom: 23px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-values__content {

        padding:
            34px
            17px
            28px;
    }


    .mth-values__title {

        font-size: 31px;
    }


    .mth-values__description {

        font-size: 7px;
    }


    .mth-values__points {

        padding:
            25px
            14px;
    }


    .mth-values__point {

        gap: 6px;
    }


    .mth-values__icon {

        width: 32px;

        height: 32px;

        flex-basis: 32px;
    }


    .mth-values__icon svg {

        width: 30px;

        height: 30px;
    }


    .mth-values__point-content h3 {

        font-size: 7px;
    }


    .mth-values__point-content span {

        font-size: 6px;
    }


    .mth-values__visual {

        min-height: 255px;
    }


    .mth-values__image {

        height: 255px;

        min-height: 255px;
    }


    .mth-values__brand {

        min-height: 65px;

        padding-inline: 15px;
    }


    .mth-values__brand-text {

        font-size: 5px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-values__button,
    .mth-values__button svg,
    .mth-values__point,
    .mth-values__icon svg,
    .mth-values__image {

        transition: none;
    }

}
































/* =========================================================
   MITHARV — OUR PRESENCE
   SECTION 10 | PART 2 — CSS
   ========================================================= */

.mth-presence {

    --mth-presence-gold: #c6a05d;

    --mth-presence-dark: #071014;

    position: relative;

    width: 100%;

    min-height: 235px;

    overflow: hidden;

    background: var(--mth-presence-dark);

    color: #ffffff;

    isolation: isolate;

    box-sizing: border-box;

    padding: 40px 0 40px 0;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mth-presence__background {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.mth-presence__map {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    opacity: .55;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mth-presence__overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(3,10,13,.97) 0%,
            rgba(3,10,13,.83) 27%,
            rgba(3,10,13,.38) 52%,
            rgba(3,10,13,.48) 76%,
            rgba(3,10,13,.94) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,.38)
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-presence__container {

    position: relative;

    width: calc(100% - 72px);

    max-width: 1380px;

    min-height: 235px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.mth-presence__content {

    position: relative;

    z-index: 5;

    width: 32%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-presence__eyebrow {

    display: block;

    margin-bottom: 9px;

    color: var(--mth-presence-gold);

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .17em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-presence__title {

    margin: 0;

    font-size: clamp(
        31px,
        3.2vw,
        50px
    );

    font-weight: 500;

    line-height: .96;

    letter-spacing: -.045em;
}


.mth-presence__title span {

    display: block;

    color: #ffffff;
}


.mth-presence__title strong {

    display: block;

    color: var(--mth-presence-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-presence__description {

    max-width: 330px;

    margin: 15px 0 0;

    color: rgba(255,255,255,.63);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-presence__button {

    width: fit-content;

    min-height: 31px;

    margin-top: 17px;

    padding:
        0
        14px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--mth-presence-gold);

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;

        border-radius: 10px;
}


.mth-presence__button svg {

    width: 12px;

    height: 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-presence__button:hover {

    background: #ad894d;

    transform: translateY(-1px);
}


.mth-presence__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   LOCATIONS AREA
   ========================================================= */

.mth-presence__locations {

    position: relative;

    width: 68%;

    height: 235px;

    margin-left: 0;

    box-sizing: border-box;
}


/* =========================================================
   LOCATION
   ========================================================= */

.mth-presence__location {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: flex-start;

    gap: 9px;
}


/* =========================================================
   UAE POSITION
   ========================================================= */

.mth-presence__location--uae {

    left: 57%;

    top: 48%;

    transform: translateY(-50%);
}


/* =========================================================
   INDIA POSITION
   ========================================================= */

.mth-presence__location--india {

    right: 9%;

    top: 42%;

    transform: translateY(-50%);
}


/* =========================================================
   LOCATION DOT
   ========================================================= */

.mth-presence__dot {

    position: relative;

    width: 6px;

    height: 6px;

    flex: 0 0 6px;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--mth-presence-gold);

    box-shadow:
        0 0 0 3px rgba(198,160,93,.13),
        0 0 14px rgba(198,160,93,.35);
}


/* =========================================================
   LOCATION TEXT
   ========================================================= */

.mth-presence__location-text {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.mth-presence__location-text strong {

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.15;

    letter-spacing: .03em;
}


.mth-presence__location-text span {

    color: rgba(255,255,255,.55);

    font-size: 10px;

    line-height: 1.15;
}


/* =========================================================
   DECORATIVE ELEMENT
   ========================================================= */

.mth-presence__decor {

    position: absolute;

    right: 0;

    top: 0;

    bottom: 0;

    width: 25px;

    z-index: 6;

    display: flex;

    justify-content: space-between;
}


.mth-presence__decor span {

    display: block;

    width: 1px;

    height: 100%;

    background:
        rgba(255,255,255,.10);
}


.mth-presence__decor span:last-child {

    height: 60%;

    align-self: flex-end;

    background:
        var(--mth-presence-gold);
}


/* =========================================================
   HOVER DOT
   ========================================================= */

.mth-presence__location {

    transition:
        transform .25s ease;
}


.mth-presence__location--uae:hover {

    transform:
        translate(3px, -50%);
}


.mth-presence__location--india:hover {

    transform:
        translate(3px, -50%);
}


.mth-presence__location:hover
.mth-presence__dot {

    box-shadow:
        0 0 0 5px rgba(198,160,93,.13),
        0 0 18px rgba(198,160,93,.5);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-presence__container {

        width: calc(100% - 60px);
    }


    .mth-presence__content {

        width: 35%;
    }


    .mth-presence__locations {

        width: 65%;
    }


    .mth-presence__location--india {

        right: 8%;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-presence {

        min-height: 210px;
    }


    .mth-presence__container {

        width: calc(100% - 44px);

        min-height: 210px;
    }


    .mth-presence__locations {

        height: 210px;
    }


    .mth-presence__content {

        width: 38%;
    }


    .mth-presence__eyebrow {

        font-size: 6px;
    }


    .mth-presence__title {

        font-size: clamp(
            27px,
            4vw,
            37px
        );
    }


    .mth-presence__description {

        max-width: 270px;

        margin-top: 12px;

        font-size: 7px;
    }


    .mth-presence__button {

        min-height: 29px;

        margin-top: 13px;

        padding-inline: 11px;

        font-size: 6px;
    }


    .mth-presence__locations {

        width: 62%;
    }


    .mth-presence__location--uae {

        left: 53%;
    }


    .mth-presence__location--india {

        right: 8%;
    }


    .mth-presence__location-text strong {

        font-size: 8px;
    }


    .mth-presence__location-text span {

        font-size: 6px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-presence {

        min-height: auto;
    }


    .mth-presence__container {

        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;
    }


    /* -----------------------------------------------
       Content
       ----------------------------------------------- */

    .mth-presence__content {

        width: 100%;

        padding:
            40px
            20px
            30px;
    }


    .mth-presence__eyebrow {

        font-size: 6px;

        margin-bottom: 10px;
    }


    .mth-presence__title {

        font-size: clamp(
            31px,
            9.5vw,
            44px
        );
    }


    .mth-presence__description {

        max-width: 450px;

        margin-top: 15px;

        font-size: 7.5px;

        line-height: 1.6;
    }


    .mth-presence__button {

        margin-top: 17px;

        min-height: 33px;

        font-size: 7px;
    }


    /* -----------------------------------------------
       Map
       ----------------------------------------------- */

    .mth-presence__locations {

        width: 100%;

        height: 250px;

        margin: 0;

        order: 2;
    }


    .mth-presence__map {

        object-position: center;

        opacity: .52;
    }


    /* -----------------------------------------------
       UAE
       ----------------------------------------------- */

    .mth-presence__location--uae {

        left: 50%;

        top: 51%;
    }


    /* -----------------------------------------------
       INDIA
       ----------------------------------------------- */

    .mth-presence__location--india {

        right: 13%;

        top: 40%;
    }


    .mth-presence__location-text strong {

        font-size: 8px;
    }


    .mth-presence__location-text span {

        font-size: 6px;
    }


    /* -----------------------------------------------
       Decorative
       ----------------------------------------------- */

    .mth-presence__decor {

        right: 15px;

        width: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-presence__content {

        padding:
            34px
            17px
            26px;
    }


    .mth-presence__title {

        font-size: 31px;
    }


    .mth-presence__description {

        font-size: 7px;
    }


    .mth-presence__locations {

        height: 215px;
    }


    .mth-presence__location--uae {

        left: 47%;

        top: 53%;
    }


    .mth-presence__location--india {

        right: 9%;

        top: 39%;
    }


    .mth-presence__location-text strong {

        font-size: 7px;
    }


    .mth-presence__location-text span {

        font-size: 5.5px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-presence__button,
    .mth-presence__button svg,
    .mth-presence__location {

        transition: none;
    }

}























/* =========================================================
   MITHARV — SUSTAINABILITY & INSIGHTS
   SECTION 11 | PART 2 — CSS
   ========================================================= */

.mth-impact {

    --mth-impact-gold: #c5a061;

    --mth-impact-dark: #171b1c;

    width: 100%;

    padding: 35px 0 40px;

    overflow: hidden;

    background: #f7f7f5;

    color: var(--mth-impact-dark);

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-impact__container {

    width: calc(100% - 72px);

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   COMMON ROW
   ========================================================= */

.mth-impact__row {

    display: grid;

    grid-template-columns:
        30%
        70%;

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   ROW SPACING
   ========================================================= */

.mth-impact__row--sustainability {

    margin-bottom: 50px;
}


/* =========================================================
   INTRO
   ========================================================= */

.mth-impact__intro {

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    padding:
        3px
        0
        0
        0;

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-impact__eyebrow {

    display: block;

    margin-bottom: 7px;

    color: #a18a66;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-impact__title {

    margin: 0;

    font-size: clamp(
        28px,
        2.65vw,
        50px
    );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.04em;
}


.mth-impact__title span {

    display: block;

    color: #181c1d;
}


.mth-impact__title strong {

    display: block;

    color: var(--mth-impact-gold);

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-impact__description {

    max-width: 400px;

    margin: 12px 0 0;

    color: #777b78;

    font-size: 12px;

    line-height: 1.48;
}


/* =========================================================
   BUTTON
   ========================================================= */

.mth-impact__button {

    width: fit-content;

    min-height: 29px;

    margin-top: 13px;

    padding:
        0
        12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: var(--mth-impact-gold);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color .25s ease,
        transform .25s ease;

        border-radius: 10px;
}


.mth-impact__button svg {

    width: 11px;

    height: 11px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.3;

    transition:
        transform .25s ease;
}


.mth-impact__button:hover {

    background: #aa854c;

    transform: translateY(-1px);
}


.mth-impact__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   SUSTAINABILITY CARDS
   ========================================================= */

.mth-impact__cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 7px;

    min-width: 0;
}


/* =========================================================
   SUSTAINABILITY CARD
   ========================================================= */

.mth-impact-card {

    min-width: 0;

    aspect-ratio: 1.55 / 1;

    overflow: hidden;

    background: #1b2425;
}


.mth-impact-card__link {

    position: relative;

    width: 100%;

    height: 100%;

    display: block;

    overflow: hidden;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.mth-impact-card__image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.mth-impact-card__image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .65s cubic-bezier(
            .2,
            .65,
            .25,
            1
        );
        
}


/* =========================================================
   CARD OVERLAY
   ========================================================= */

.mth-impact-card__overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 25%,
            rgba(0,0,0,.22) 48%,
            rgba(0,0,0,.87) 100%
        );
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.mth-impact-card__content {

    position: absolute;

    left: 13px;

    right: 35px;

    bottom: 13px;

    z-index: 3;
}


.mth-impact-card__content h3 {

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.1;
}


.mth-impact-card__content p {

    margin: 5px 0 0;

    color: rgba(255,255,255,.7);

    font-size: 11px;

    line-height: 1.2;
}


/* =========================================================
   CARD ARROW
   ========================================================= */

.mth-impact-card__arrow {

    position: absolute;

    right: 11px;

    bottom: 11px;

    z-index: 3;

    color: var(--mth-impact-gold);

    font-size: 13px;

    line-height: 1;

    transition:
        transform .25s ease;
}


.mth-impact-card__link:hover
.mth-impact-card__image img {

    transform: scale(1.06);
}


.mth-impact-card__link:hover
.mth-impact-card__arrow {

    transform: translate(3px, -3px);
}


/* =========================================================
   NEWS AREA
   ========================================================= */

.mth-impact__news {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    min-width: 0;
}


/* =========================================================
   NEWS CARD
   ========================================================= */

.mth-news-card {

    min-width: 0;

    overflow: hidden;

    background: transparent;
}


.mth-news-card__link {

    display: block;

    color: inherit;

    text-decoration: none;
}


/* =========================================================
   NEWS IMAGE
   ========================================================= */

.mth-news-card__image {

    width: 100%;

    aspect-ratio: 2.55 / 1;

    overflow: hidden;

    background: #d9d9d5;
}


.mth-news-card__image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .55s ease;
}


/* =========================================================
   NEWS BODY
   ========================================================= */

.mth-news-card__body {

    position: relative;

    padding:
        8px
        2px
        0;
}


/* =========================================================
   DATE
   ========================================================= */

.mth-news-card__date {

    display: block;

    margin-bottom: 6px;

    color: #a18a66;

    font-size: 12px;

    line-height: 1;
}


/* =========================================================
   NEWS TITLE
   ========================================================= */

.mth-news-card__body h3 {

    max-width: 230px;

    margin: 0;

    color: #292e2f;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================================
   READ MORE
   ========================================================= */

.mth-news-card__read {

    display: inline-block;

    margin-top: 7px;

    color: var(--mth-impact-gold);

    font-size: 10px;

    opacity: 0;

    transform: translateY(4px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.mth-news-card__link:hover
.mth-news-card__image img {

    transform: scale(1.04);
}


.mth-news-card__link:hover
.mth-news-card__read {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-impact__container {

        width: calc(100% - 60px);
    }


    .mth-impact__row {

        grid-template-columns:
            31%
            69%;

        gap: 18px;
    }


    .mth-impact__title {

        font-size: clamp(
            26px,
            2.8vw,
            36px
        );
    }


    .mth-impact__description {

        max-width: 250px;

        font-size: 6.5px;
    }


    .mth-impact__news {

        gap: 15px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mth-impact {

        padding:
            35px 0
            38px;
    }


    .mth-impact__container {

        width: calc(100% - 44px);
    }


    .mth-impact__row {

        grid-template-columns:
            32%
            68%;

        gap: 15px;
    }


    .mth-impact__row--sustainability {

        margin-bottom: 24px;
    }


    .mth-impact__eyebrow {

        font-size: 6px;
    }


    .mth-impact__title {

        font-size: clamp(
            24px,
            3.7vw,
            33px
        );
    }


    .mth-impact__description {

        max-width: 220px;

        font-size: 6px;
    }


    .mth-impact__button {

        min-height: 27px;

        font-size: 5.5px;
    }


    .mth-impact-card__content {

        left: 9px;

        right: 25px;

        bottom: 9px;
    }


    .mth-impact-card__content h3 {

        font-size: 8px;
    }


    .mth-impact-card__content p {

        margin-top: 4px;

        font-size: 5.5px;
    }


    .mth-impact-card__arrow {

        right: 7px;

        bottom: 7px;

        font-size: 10px;
    }


    .mth-news-card__body {

        padding-top: 6px;
    }


    .mth-news-card__date {

        font-size: 5.5px;
    }


    .mth-news-card__body h3 {

        font-size: 7px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-impact {

        padding:
            38px 0
            42px;
    }


    .mth-impact__container {

        width: calc(100% - 30px);
    }


    /* -----------------------------------------------
       Rows become vertical
       ----------------------------------------------- */

    .mth-impact__row {

        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .mth-impact__row--sustainability {

        margin-bottom: 35px;
    }


    /* -----------------------------------------------
       Intro
       ----------------------------------------------- */

    .mth-impact__intro {

        width: 100%;

        padding: 0;
    }


    .mth-impact__eyebrow {

        margin-bottom: 9px;

        font-size: 6px;
    }


    .mth-impact__title {

        font-size: clamp(
            31px,
            9.5vw,
            44px
        );
    }


    .mth-impact__description {

        max-width: 450px;

        margin-top: 14px;

        font-size: 7px;

        line-height: 1.6;
    }


    .mth-impact__button {

        min-height: 32px;

        margin-top: 15px;

        padding-inline: 13px;

        font-size: 6.5px;
    }


    /* -----------------------------------------------
       Sustainability Cards
       ----------------------------------------------- */

    .mth-impact__cards {

        width: 100%;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 6px;
    }


    .mth-impact-card {

        aspect-ratio: .88 / 1;
    }


    .mth-impact-card__content {

        left: 8px;

        right: 8px;

        bottom: 9px;
    }


    .mth-impact-card__content h3 {

        font-size: 8px;
    }


    .mth-impact-card__content p {

        margin-top: 4px;

        font-size: 5.5px;
    }


    .mth-impact-card__arrow {

        display: none;
    }


    /* -----------------------------------------------
       News
       ----------------------------------------------- */

    .mth-impact__news {

        width: 100%;

        grid-template-columns:
            1fr;

        gap: 22px;
    }


    .mth-news-card__image {

        aspect-ratio: 2.2 / 1;
    }


    .mth-news-card__body {

        padding-top: 8px;
    }


    .mth-news-card__date {

        font-size: 6px;
    }


    .mth-news-card__body h3 {

        max-width: 100%;

        font-size: 9px;

        line-height: 1.3;
    }


    .mth-news-card__read {

        opacity: 1;

        transform: none;

        margin-top: 6px;

        font-size: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-impact {

        padding:
            32px 0
            36px;
    }


    .mth-impact__container {

        width: calc(100% - 20px);
    }


    .mth-impact__title {

        font-size: 31px;
    }


    .mth-impact__description {

        font-size: 6.5px;
    }


    .mth-impact__cards {

        gap: 4px;
    }


    .mth-impact-card {

        aspect-ratio: .8 / 1;
    }


    .mth-impact-card__content {

        left: 6px;

        right: 5px;

        bottom: 7px;
    }


    .mth-impact-card__content h3 {

        font-size: 7px;
    }


    .mth-impact-card__content p {

        font-size: 5px;
    }


    .mth-news-card__body h3 {

        font-size: 8px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-impact__button,
    .mth-impact__button svg,
    .mth-impact-card__image img,
    .mth-impact-card__arrow,
    .mth-news-card__image img,
    .mth-news-card__read {

        transition: none;
    }

}



























/* =========================================================
   MITHARV — FINAL CTA
   SECTION 12 | PART 2 — CSS
   ========================================================= */

.mth-cta {

    --mth-cta-gold: #c6a05d;

    position: relative;

    width: 100%;

    min-height: 155px;

    overflow: hidden;

    background: #111719;

    color: #ffffff;

    isolation: isolate;

    box-sizing: border-box;

    padding: 20px 0 20px 0;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.mth-cta__background {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.mth-cta__background-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.001);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.mth-cta__overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(3,9,11,.93) 0%,
            rgba(3,9,11,.78) 38%,
            rgba(3,9,11,.48) 65%,
            rgba(3,9,11,.72) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,.48)
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-cta__container {

    position: relative;

    width: calc(100% - 72px);

    max-width: 1380px;

    min-height: 155px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENT
   ========================================================= */

.mth-cta__content {

    min-width: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mth-cta__eyebrow {

    display: block;

    margin-bottom: 6px;

    color: var(--mth-cta-gold);

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mth-cta__title {

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        28px,
        3vw,
        50px
    );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.045em;

    text-transform: uppercase;

    margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mth-cta__description {

    margin: 7px 0 0;

    color: rgba(255,255,255,.72);

    font-size: 12px;

    line-height: 1.35;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.mth-cta__actions {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.mth-cta__button {

    min-width: 165px;

    min-height: 39px;

    padding:
        0
        17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    box-sizing: border-box;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;

        border-radius: 10px;
}


/* =========================================================
   PRIMARY
   ========================================================= */

.mth-cta__button--primary {

    border: 1px solid
        var(--mth-cta-gold);

    background: var(--mth-cta-gold);

    color: #ffffff;
}


.mth-cta__button--primary:hover {

    background: #aa854b;

    border-color: #aa854b;

    transform: translateY(-2px);
}


/* =========================================================
   SECONDARY
   ========================================================= */

.mth-cta__button--secondary {

    border: 1px solid
        rgba(255,255,255,.65);

    background:
        rgba(0,0,0,.15);

    color: #ffffff;
}


.mth-cta__button--secondary:hover {

    border-color: var(--mth-cta-gold);

    color: var(--mth-cta-gold);

    transform: translateY(-2px);
}


/* =========================================================
   BUTTON ICON
   ========================================================= */

.mth-cta__button svg {

    width: 12px;

    height: 12px;

    flex: 0 0 12px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.25;

    transition:
        transform .25s ease;
}


.mth-cta__button:hover svg {

    transform: translateX(3px);
}


/* =========================================================
   TOP / BOTTOM LINES
   ========================================================= */

.mth-cta::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    height: 1px;

    z-index: 5;

    background:
        rgba(255,255,255,.13);
}


.mth-cta::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 1px;

    z-index: 5;

    background:
        rgba(255,255,255,.10);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-cta__container {

        width: calc(100% - 60px);

        gap: 30px;
    }


    .mth-cta__button {

        min-width: 145px;

        padding-inline: 13px;
    }

}


/* =========================================================
   991px
   ========================================================= */

@media (max-width: 991px) {

    .mth-cta {

        min-height: 140px;
    }


    .mth-cta__container {

        width: calc(100% - 44px);

        min-height: 140px;

        gap: 25px;
    }


    .mth-cta__title {

        font-size: clamp(
            25px,
            3.8vw,
            35px
        );
    }


    .mth-cta__description {

        font-size: 7px;
    }


    .mth-cta__actions {

        gap: 8px;
    }


    .mth-cta__button {

        min-width: 125px;

        min-height: 34px;

        padding-inline: 9px;

        font-size: 6px;
    }


    .mth-cta__button svg {

        width: 10px;

        height: 10px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-cta {

        min-height: auto;
    }


    .mth-cta__container {

        width: 100%;

        min-height: auto;

        padding:
            40px
            20px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 25px;
    }


    /* -----------------------------------------------
       Content
       ----------------------------------------------- */

    .mth-cta__content {

        width: 100%;
    }


    .mth-cta__eyebrow {

        margin-bottom: 8px;

        font-size: 6px;
    }


    .mth-cta__title {

        max-width: 500px;

        font-size: clamp(
            30px,
            9vw,
            43px
        );

        line-height: .98;
    }


    .mth-cta__description {

        margin-top: 9px;

        font-size: 7px;

        line-height: 1.5;
    }


    /* -----------------------------------------------
       Actions
       ----------------------------------------------- */

    .mth-cta__actions {

        width: 100%;

        display: flex;

        align-items: stretch;

        justify-content: flex-start;

        gap: 8px;
    }


    .mth-cta__button {

        min-width: 0;

        flex: 1;

        min-height: 38px;

        padding:
            0
            9px;

        font-size: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-cta__container {

        padding:
            34px
            17px;

        gap: 21px;
    }


    .mth-cta__title {

        font-size: 29px;
    }


    .mth-cta__description {

        font-size: 6.5px;
    }


    .mth-cta__actions {

        flex-direction: column;

        width: 100%;
    }


    .mth-cta__button {

        width: 100%;

        flex: none;

        min-height: 36px;

        font-size: 6px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-cta__button,
    .mth-cta__button svg {

        transition: none;
    }

}





































/* =========================================================
   MITHARV — FOOTER
   SECTION 13 | PART 2 — CSS
   ========================================================= */

.mth-footer {

    --mth-footer-bg: #070e11;

    --mth-footer-text: #ffffff;

    --mth-footer-muted: rgba(255,255,255,.52);

    --mth-footer-gold: #c6a05d;

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--mth-footer-bg);

    color: var(--mth-footer-text);

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mth-footer__container {

    width: calc(100% - 72px);

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.mth-footer__main {

    min-height: 185px;

    padding:
        35px
        0
        25px;

    display: grid;

    grid-template-columns:
        1.6fr
        .8fr
        1.25fr
        .9fr
        .9fr
        1fr;

    gap: 35px;

    box-sizing: border-box;
}


/* =========================================================
   BRAND
   ========================================================= */

.mth-footer__brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.mth-footer__logo {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================================
   LOGO MARK
   ========================================================= */

.mth-footer__logo-mark {

    width: 27px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1;

    border-left: 2px solid
        var(--mth-footer-gold);

    transform: skew(-8deg);
}


/* =========================================================
   LOGO NAME
   ========================================================= */

.mth-footer__logo-name {

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: .045em;
}


/* =========================================================
   TAGLINE
   ========================================================= */

.mth-footer__tagline {

    margin: 12px 0 0;

    color: rgba(255,255,255,.67);

    font-size: 12px;

    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   COLUMN
   ========================================================= */

.mth-footer__column {

    min-width: 0;
}


/* =========================================================
   COLUMN TITLE
   ========================================================= */

.mth-footer__column-title {

    position: relative;

    margin: 0 0 12px;

    padding-bottom: 5px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: .01em;
}


.mth-footer__column-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 17px;

    height: 1px;

    background:
        var(--mth-footer-gold);
}


/* =========================================================
   LINKS
   ========================================================= */

.mth-footer__links {

    margin: 0;

    padding: 0;

    list-style: none;
}


.mth-footer__links li {

    margin: 0 0 7px;

    padding: 0;
}


.mth-footer__links a {

    display: inline-block;

    color: var(--mth-footer-muted);

    font-size: 12px;

    line-height: 1.3;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.mth-footer__links a:hover {

    color: var(--mth-footer-gold);

    transform: translateX(3px);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.mth-footer__divider {

    width: 100%;

    height: 1px;

    background:
        rgba(255,255,255,.10);
}


/* =========================================================
   BOTTOM
   ========================================================= */

.mth-footer__bottom {

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.mth-footer__copyright {

    color:
        rgba(255,255,255,.35);

    font-size: 12px;

    line-height: 1.3;
}


/* =========================================================
   LEGAL
   ========================================================= */

.mth-footer__legal {

    display: flex;

    align-items: center;

    gap: 17px;
}


.mth-footer__legal a {

    color:
        rgba(255,255,255,.40);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .2s ease;
}


.mth-footer__legal a:hover {

    color:
        var(--mth-footer-gold);
}


/* =========================================================
   SOCIAL
   ========================================================= */

.mth-footer__social {

    display: flex;

    align-items: center;

    gap: 5px;
}


.mth-footer__social a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.20);

    border-radius: 50%;

    color:
        rgba(255,255,255,.65);

    font-size: 15px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}


.mth-footer__social a:hover {

    border-color:
        var(--mth-footer-gold);

    color: #ffffff;

    background:
        rgba(198,160,93,.12);

    transform:
        translateY(-2px);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.mth-footer__top {

    position: absolute;

    right: 30px;

    top: 50%;

    width: 37px;

    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background:
        var(--mth-footer-gold);

    color: #ffffff;

    cursor: pointer;

    transform:
        translateY(-50%);

    transition:
        background-color .25s ease,
        transform .25s ease;
}


.mth-footer__top svg {

    width: 14px;

    height: 14px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}


.mth-footer__top:hover {

    background: #aa854c;

    transform:
        translateY(
            calc(-50% - 3px)
        );
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {

    .mth-footer__container {

        width: calc(100% - 60px);
    }


    .mth-footer__main {

        gap: 24px;
    }


    .mth-footer__logo-name {

        font-size: 16px;
    }


    .mth-footer__logo-mark {

        width: 24px;

        height: 23px;

        font-size: 16px;
    }


    .mth-footer__links a {

        font-size: 6px;
    }


    .mth-footer__top {

        right: 20px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mth-footer__container {

        width: calc(100% - 44px);
    }


    .mth-footer__main {

        grid-template-columns:
            1.4fr
            1fr
            1.2fr
            1fr;

        gap:
            25px
            20px;

        padding:
            35px
            0
            25px;
    }


    .mth-footer__brand {

        grid-row: span 2;
    }


    .mth-footer__column {

        min-height: 80px;
    }


    .mth-footer__bottom {

        padding-right: 50px;
    }


    .mth-footer__top {

        right: 0;

        width: 34px;

        height: 34px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mth-footer__container {

        width: calc(100% - 30px);
    }


    .mth-footer__main {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            28px
            18px;

        padding:
            40px
            0
            28px;
    }


    /* -----------------------------------------------
       Brand full width
       ----------------------------------------------- */

    .mth-footer__brand {

        grid-column: 1 / -1;

        grid-row: auto;

        padding-bottom: 5px;
    }


    .mth-footer__logo-mark {

        width: 27px;

        height: 25px;

        font-size: 17px;
    }


    .mth-footer__logo-name {

        font-size: 18px;
    }


    .mth-footer__tagline {

        margin-top: 10px;

        font-size: 7px;
    }


    /* -----------------------------------------------
       Columns
       ----------------------------------------------- */

    .mth-footer__column {

        min-height: auto;
    }


    .mth-footer__column-title {

        margin-bottom: 11px;

        font-size: 7px;
    }


    .mth-footer__links li {

        margin-bottom: 8px;
    }


    .mth-footer__links a {

        font-size: 6.5px;
    }


    /* -----------------------------------------------
       Bottom
       ----------------------------------------------- */

    .mth-footer__bottom {

        min-height: auto;

        padding:
            18px
            0
            25px;

        display: grid;

        grid-template-columns:
            1fr
            auto;

        gap: 14px 20px;
    }


    .mth-footer__copyright {

        grid-column: 1 / -1;

        font-size: 6px;
    }


    .mth-footer__legal {

        justify-content: flex-start;

        gap: 14px;
    }


    .mth-footer__social {

        justify-content: flex-end;
    }


    /* -----------------------------------------------
       Back top
       ----------------------------------------------- */

    .mth-footer__top {

        top: auto;

        right: 15px;

        bottom: 17px;

        width: 34px;

        height: 34px;

        transform: none;
    }


    .mth-footer__top:hover {

        transform:
            translateY(-3px);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mth-footer__container {

        width: calc(100% - 20px);
    }


    .mth-footer__main {

        padding:
            34px
            0
            25px;

        gap:
            25px
            15px;
    }


    .mth-footer__logo-name {

        font-size: 16px;
    }


    .mth-footer__logo-mark {

        width: 23px;

        height: 22px;

        font-size: 15px;
    }


    .mth-footer__tagline {

        font-size: 6.5px;
    }


    .mth-footer__column-title {

        font-size: 6.5px;
    }


    .mth-footer__links a {

        font-size: 6px;
    }


    .mth-footer__links li {

        margin-bottom: 7px;
    }


    .mth-footer__legal {

        gap: 10px;
    }


    .mth-footer__legal a {

        font-size: 5.5px;
    }


    .mth-footer__social {

        gap: 4px;
    }


    .mth-footer__social a {

        width: 16px;

        height: 16px;

        font-size: 4.5px;
    }


    .mth-footer__top {

        width: 31px;

        height: 31px;

        right: 10px;

        bottom: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mth-footer__links a,
    .mth-footer__legal a,
    .mth-footer__social a,
    .mth-footer__top {

        transition: none;
    }

}























































/* ============================================================
   MITHARV — ADVANCED ANIMATION SYSTEM
   SAFE VERSION
   DOES NOT CHANGE EXISTING LAYOUT
   ============================================================ */

:root {
    --mth-animation-ease: cubic-bezier(.16, 1, .3, 1);
    --mth-animation-fast: .35s;
    --mth-animation-normal: .65s;
    --mth-animation-slow: 1s;
    --mth-gold: #b99a62;
}


/* ============================================================
   01. PAGE LOAD
   ============================================================ */

body {
    animation: mthPageLoad .8s ease both;
}

@keyframes mthPageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ============================================================
   02. HERO ANIMATION
   ============================================================ */

.mthx-hero {
    overflow: hidden;
}


/* Hero background image */

.mthx-hero img {
    transition:
        transform 1.4s var(--mth-animation-ease),
        filter 1s ease;
}

.mthx-hero:hover img {
    transform: scale(1.025);
}


/* Hero content */

.mthx-hero__content > * {
    animation:
        mthHeroReveal 1s var(--mth-animation-ease) both;
}

.mthx-hero__content > *:nth-child(1) {
    animation-delay: .15s;
}

.mthx-hero__content > *:nth-child(2) {
    animation-delay: .28s;
}

.mthx-hero__content > *:nth-child(3) {
    animation-delay: .40s;
}

.mthx-hero__content > *:nth-child(4) {
    animation-delay: .52s;
}

@keyframes mthHeroReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ============================================================
   03. HERO LABEL / EYEBROW
   ============================================================ */

.mthx-hero__eyebrow,
.mthx-hero__label {
    animation:
        mthHeroLabel 1s var(--mth-animation-ease) .05s both;
}

@keyframes mthHeroLabel {

    from {
        opacity: 0;
        transform: translateX(-25px);
        letter-spacing: .35em;
    }

    to {
        opacity: 1;
        transform: translateX(0);
        letter-spacing: normal;
    }

}


/* ============================================================
   04. NAVIGATION
   ============================================================ */

.mthx-hero__nav,
.mthx-hero header,
.mthx-hero__header {
    transition:
        background-color .4s ease,
        box-shadow .4s ease,
        backdrop-filter .4s ease;
}


/* Nav links */

.mthx-hero__nav a {
    transition:
        color .3s ease,
        opacity .3s ease;
}

.mthx-hero__nav a:hover {
    color: var(--mth-gold);
}


/* ============================================================
   05. GLOBAL SCROLL REVEAL
   ============================================================ */

.mth-scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .9s var(--mth-animation-ease),
        transform .9s var(--mth-animation-ease);
}

.mth-scroll-reveal.mth-show {
    opacity: 1;
    transform: translateY(0);
}


/* Left */

.mth-reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition:
        opacity .9s var(--mth-animation-ease),
        transform .9s var(--mth-animation-ease);
}

.mth-reveal-left.mth-show {
    opacity: 1;
    transform: translateX(0);
}


/* Right */

.mth-reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition:
        opacity .9s var(--mth-animation-ease),
        transform .9s var(--mth-animation-ease);
}

.mth-reveal-right.mth-show {
    opacity: 1;
    transform: translateX(0);
}


/* Scale */

.mth-reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition:
        opacity .9s ease,
        transform .9s var(--mth-animation-ease);
}

.mth-reveal-scale.mth-show {
    opacity: 1;
    transform: scale(1);
}


/* ============================================================
   06. STAGGER SYSTEM
   ============================================================ */

.mth-stagger-1 {
    transition-delay: .08s;
}

.mth-stagger-2 {
    transition-delay: .16s;
}

.mth-stagger-3 {
    transition-delay: .24s;
}

.mth-stagger-4 {
    transition-delay: .32s;
}

.mth-stagger-5 {
    transition-delay: .40s;
}

.mth-stagger-6 {
    transition-delay: .48s;
}


/* ============================================================
   07. TRUSTED SECTION
   ============================================================ */

.mth-trusted img {
    transition:
        transform .45s var(--mth-animation-ease),
        opacity .35s ease,
        filter .35s ease;
}

.mth-trusted img:hover {
    transform: translateY(-5px) scale(1.04);
    opacity: 1;
}


/* ============================================================
   08. ABOUT SECTION
   ============================================================ */

.mth-about img {
    transition:
        transform 1s var(--mth-animation-ease),
        filter .6s ease;
}

.mth-about img:hover {
    transform: scale(1.035);
}


/* About text */

.mth-about a {
    transition:
        color .3s ease,
        transform .3s ease;
}

.mth-about a:hover {
    color: var(--mth-gold);
}


/* ============================================================
   09. NUMBERS SECTION
   ============================================================ */

.mth-numbers__item {
    position: relative;
    transition:
        transform .4s var(--mth-animation-ease);
}

.mth-numbers__item:hover {
    transform: translateY(-6px);
}


/* Number */

.mth-numbers__value {
    transition:
        color .4s ease,
        transform .4s var(--mth-animation-ease);
}

.mth-numbers__item:hover .mth-numbers__value {
    color: var(--mth-gold);
    transform: scale(1.04);
}


/* ============================================================
   10. PROJECTS
   ============================================================ */

.mth-projects img {
    transition:
        transform 1s var(--mth-animation-ease),
        filter .7s ease;
}

.mth-projects article:hover img {
    transform: scale(1.055);
}


/* Project cards */

.mth-projects article {
    transition:
        box-shadow .45s ease,
        border-color .45s ease;
}

.mth-projects article:hover {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);
}


/* Project links */

.mth-projects a {
    transition:
        color .3s ease,
        transform .3s ease;
}

.mth-projects a:hover {
    color: var(--mth-gold);
}


/* ============================================================
   11. CAPABILITIES
   ============================================================ */

.mth-capabilities article {
    position: relative;

    transition:
        box-shadow .45s ease,
        border-color .45s ease,
        background-color .45s ease;
}

.mth-capabilities article:hover {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}


/* Icon */

.mth-capabilities svg,
.mth-capabilities img {
    transition:
        transform .45s var(--mth-animation-ease);
}

.mth-capabilities article:hover svg,
.mth-capabilities article:hover img {
    transform: scale(1.08) rotate(2deg);
}


/* ============================================================
   12. REAL ESTATE
   ============================================================ */

.mth-realestate img {
    transition:
        transform 1s var(--mth-animation-ease),
        filter .6s ease;
}

.mth-realestate article:hover img {
    transform: scale(1.05);
}


/* Category */

.mth-realestate__categories a,
.mth-realestate__categories button {
    transition:
        transform .35s var(--mth-animation-ease),
        color .3s ease,
        background-color .3s ease;
}

.mth-realestate__categories a:hover,
.mth-realestate__categories button:hover {
    transform: translateY(-3px);
}


/* ============================================================
   13. PROCESS
   ============================================================ */

.mth-process article {
    transition:
        transform .4s var(--mth-animation-ease);
}

.mth-process article:hover {
    transform: translateY(-6px);
}


/* Process number */

.mth-process [class*="number"],
.mth-process [class*="step"] {
    transition:
        transform .4s var(--mth-animation-ease),
        color .3s ease;
}

.mth-process article:hover [class*="number"],
.mth-process article:hover [class*="step"] {
    transform: scale(1.08);
    color: var(--mth-gold);
}


/* ============================================================
   14. VALUES
   ============================================================ */

.mth-values article {
    transition:
        transform .4s var(--mth-animation-ease),
        box-shadow .4s ease;
}

.mth-values article:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, .09);
}


/* ============================================================
   15. PRESENCE
   ============================================================ */

.mth-presence article,
.mth-presence__item {
    transition:
        transform .4s var(--mth-animation-ease),
        box-shadow .4s ease;
}

.mth-presence article:hover,
.mth-presence__item:hover {
    transform: translateY(-5px);
}


/* Location dot */

.mth-presence [class*="dot"] {
    position: relative;
}

.mth-presence [class*="dot"]::after {
    content: "";
    position: absolute;
    inset: -5px;

    border: 1px solid var(--mth-gold);
    border-radius: 50%;

    opacity: 0;
    transform: scale(.5);
    transition: opacity .3s ease;
}

.mth-presence article:hover [class*="dot"]::after,
.mth-presence__item:hover [class*="dot"]::after {
    opacity: .7;
    animation: mthLocationPulse 1.6s ease-out infinite;
}

@keyframes mthLocationPulse {

    0% {
        transform: scale(.5);
        opacity: .8;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }

}


/* ============================================================
   16. IMPACT / SUSTAINABILITY
   ============================================================ */

.mth-impact article {
    overflow: hidden;

    transition:
        box-shadow .45s ease,
        transform .45s var(--mth-animation-ease);
}

.mth-impact article:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, .11);
}

.mth-impact img {
    transition:
        transform 1s var(--mth-animation-ease);
}

.mth-impact article:hover img {
    transform: scale(1.06);
}


/* ============================================================
   17. ALL SECTION BUTTONS
   ============================================================ */

.mth-about a,
.mth-projects a,
.mth-capabilities a,
.mth-realestate a,
.mth-process a,
.mth-values a,
.mth-presence a,
.mth-impact a {

    transition:
        transform .3s var(--mth-animation-ease),
        color .3s ease,
        background-color .3s ease,
        box-shadow .3s ease;
}


/* ============================================================
   18. GOLD SHINE BUTTON
   ============================================================ */

.mth-gold-button {
    position: relative;
    overflow: hidden;
}

.mth-gold-button::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: -120%;
    width: 70%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform: skewX(-18deg);

    transition:
        left .75s ease;
}

.mth-gold-button:hover::after {
    left: 140%;
}


/* ============================================================
   19. UNDERLINE ANIMATION
   ============================================================ */

.mth-animated-link {
    position: relative;
    display: inline-block;
}

.mth-animated-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 100%;
    height: 1px;

    background: var(--mth-gold);

    transform:
        scaleX(0);
    transform-origin: right;

    transition:
        transform .45s var(--mth-animation-ease);
}

.mth-animated-link:hover::after {
    transform:
        scaleX(1);
    transform-origin: left;
}


/* ============================================================
   20. FOOTER
   ============================================================ */

.mth-footer a {
    transition:
        color .3s ease,
        transform .3s ease;
}

.mth-footer a:hover {
    color: var(--mth-gold);
}


/* ============================================================
   21. BACK TO TOP
   ============================================================ */

.mth-footer button,
.mth-footer [class*="back"],
.mth-footer [id*="top"] {
    transition:
        transform .35s var(--mth-animation-ease),
        box-shadow .35s ease;
}

.mth-footer button:hover,
.mth-footer [class*="back"]:hover,
.mth-footer [id*="top"]:hover {
    transform: translateY(-4px);
}


/* ============================================================
   22. IMAGE OVERLAY
   ============================================================ */

.mth-image-overlay {
    position: relative;
    overflow: hidden;
}

.mth-image-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255,255,255,.12) 50%,
            transparent 70%
        );

    transform:
        translateX(-120%);

    transition:
        transform 1s ease;

    pointer-events: none;
}

.mth-image-overlay:hover::after {
    transform:
        translateX(120%);
}


/* ============================================================
   23. MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .mth-scroll-reveal,
    .mth-reveal-left,
    .mth-reveal-right {
        transform: translateY(25px);
    }

    .mth-reveal-left.mth-show,
    .mth-reveal-right.mth-show {
        transform: translateY(0);
    }

    .mth-projects article:hover,
    .mth-values article:hover,
    .mth-impact article:hover,
    .mth-capabilities article:hover {
        transform: none;
    }

}


/* ============================================================
   24. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .mth-scroll-reveal,
    .mth-reveal-left,
    .mth-reveal-right,
    .mth-reveal-scale {
        opacity: 1;
        transform: none;
    }

}







































.mth-values{
    background-image: url(PAD-WELLS.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
