@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap);

:root {
    --_size: 1.6rem;
    --_font-default:  'Montserrat';
    --_font-accent: "JetBrains Mono", sans-serif;
    --_animspeed-fast: 0.1s;
    --_animspeed-medium: 0.3s;
    --_animspeed-slow: 0.6s;
    --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);
    --base--light: #EEEAE8;
    --base-rgb--light: 238, 234, 232;
    --base-tint--light: #F9F7F7;
    --base-tint-rgb--light: 249, 247, 247;
    --base-bright--light: #ffffff;
    --base-bright-rgb--light: 255, 255, 255;
    --accent--light: #002bba;
    --highlight--light: #819ffe;
    --base-opp--light: #0f0f0f;
    --base-opp-rgb--light: 15, 15, 15;
    --t-bright--light: #121212;
    --t-medium--light: #575960;
    --t-muted--light: #7d7f89;
    --t-muted-extra--light: #dbd8d8;
    --t-opp-bright--light: #FFFFFF;
    --t-opp-medium--light: #8e93a1;
    --t-opp-muted--light: #36363c;
    --t-opp-muted-extra--light: #191a1d;
    --st-muted--light: #b7b2b1;
    --st-medium--light: #949291;
    --st-bright--light: #0f0f0f;
    --bg-demo-screen-01--light: url(../img/demo/screens/01.webp);
    --bg-demo-screen-02--light: url(../img/demo/screens/02.webp);
    --bg-demo-screen-03--light: url(../img/demo/screens/03.webp);
    --bg-demo-screen-04--light: url(../img/demo/screens/04.webp);
    --bg-demo-screen-05--light: url(../img/demo/screens/05.webp);
    --bg-demo-screen-06--light: url(../img/demo/screens/06.webp);
    --bg-demo-screen-07--light: url(../img/demo/screens/07.webp);
    --bg-demo-screen-08--light: url(../img/demo/screens/08.webp);
    --bg-demo-screen-09--light: url(../img/demo/screens/09.webp);
    --bg-demo-screen-10--light: url(../img/demo/screens/10.webp);
    --base--dark: #0f0f0f;
    --base-rgb--dark: 15, 15, 15;
    --base-tint--dark: #171719;
    --base-tint-rgb--dark: 23, 23, 25;
    --base-bright--dark: #000000;
    --base-bright-rgb--dark: 0, 0, 0;
    --accent--dark: #002bba;
    --highlight--dark: #002bba;
    --base-opp--dark: #EEEAE8;
    --base-opp-rgb--dark: 238, 234, 232;
    --t-bright--dark: #FFFFFF;
    --t-medium--dark: #8e93a1;
    --t-muted--dark: #36363c;
    --t-muted-extra--dark: #191a1d;
    --t-opp-bright--dark: #161616;
    --t-opp-medium--dark: #666870;
    --t-opp-muted--dark: #7d7f89;
    --t-opp-muted-extra--dark: #dbd8d8;
    --st-muted--dark: #1f2124;
    --st-medium--dark: #313336;
    --st-bright--dark: #ffffff;
    --bg-demo-screen-01--dark: url(../img/demo/screens/01-d.webp);
    --bg-demo-screen-02--dark: url(../img/demo/screens/02-d.webp);
    --bg-demo-screen-03--dark: url(../img/demo/screens/03-d.webp);
    --bg-demo-screen-04--dark: url(../img/demo/screens/04-d.webp);
    --bg-demo-screen-05--dark: url(../img/demo/screens/05-d.webp);
    --bg-demo-screen-06--dark: url(../img/demo/screens/06-d.webp);
    --bg-demo-screen-07--dark: url(../img/demo/screens/07-d.webp);
    --bg-demo-screen-08--dark: url(../img/demo/screens/08-d.webp);
    --bg-demo-screen-09--dark: url(../img/demo/screens/09-d.webp);
    --bg-demo-screen-10--dark: url(../img/demo/screens/10-d.webp);
    --pt-base: #FFFFFF;
    --pt-base-dark: #0f0f0f;
    --pt-t-accent-bright: #FFFFFF;
    --pt-t-accent-medium: #A7B2E3;
    --pt-t-accent-muted: #8E9EE4;
    --nl-white: #ffffff;
    --nl-white-06: rgba(255, 255, 255, 0.6);
    --nl-white-rgb: 255, 255, 255;
    --nl-black: #000000;
    --nl-black-rgb: 0, 0, 0;
    --nl-black-06: rgba(0, 0, 0, 0.6);
    --nl-black-04: rgba(0, 0, 0, 0.4)
}

:root {
    --font-heading: "Cormorant Garamond";
}

  :root {
            --esg-gold: #bd8945;
            --esg-dark: #17130f;
            --esg-text: #71685e;
            --esg-border: #dfd8ce;
            --esg-background: #f8f6f2;
            --esg-white: #ffffff;
        }

@media (prefers-color-scheme:light) {
    :root {
        --base: var(--base--light);
        --base-rgb: var(--base-rgb--light);
        --base-tint: var(--base-tint--light);
        --base-tint-rgb: var(--base-tint-rgb--light);
        --base-bright: var(--base-bright--light);
        --base-bright-rgb: var(--base-bright-rgb--light);
        --accent: var(--accent--light);
        --highlight: var(--highlight--light);
        --base-opp: var(--base-opp--light);
        --base-opp-rgb: var(--base-opp-rgb--light);
        --t-bright: var(--t-bright--light);
        --t-medium: var(--t-medium--light);
        --t-muted: var(--t-muted--light);
        --t-muted-extra: var(--t-muted-extra--light);
        --t-opp-bright: var(--t-opp-bright--light);
        --t-opp-medium: var(--t-opp-medium--light);
        --t-opp-muted: var(--t-opp-muted--light);
        --t-opp-muted-extra: var(--t-opp-muted-extra--light);
        --st-muted: var(--st-muted--light);
        --st-medium: var(--st-medium--light);
        --st-bright: var(--st-bright--light);
        --bg-demo-screen-01: var(--bg-demo-screen-01--light);
        --bg-demo-screen-02: var(--bg-demo-screen-02--light);
        --bg-demo-screen-03: var(--bg-demo-screen-03--light);
        --bg-demo-screen-04: var(--bg-demo-screen-04--light);
        --bg-demo-screen-05: var(--bg-demo-screen-05--light);
        --bg-demo-screen-06: var(--bg-demo-screen-06--light);
        --bg-demo-screen-07: var(--bg-demo-screen-07--light);
        --bg-demo-screen-08: var(--bg-demo-screen-08--light);
        --bg-demo-screen-09: var(--bg-demo-screen-09--light);
        --bg-demo-screen-10: var(--bg-demo-screen-10--light)
    }
}

@media (prefers-color-scheme:dark) {
    :root {
        --base: var(--base--dark);
        --base-rgb: var(--base-rgb--dark);
        --base-tint: var(--base-tint--dark);
        --base-tint-rgb: var(--base-tint-rgb--dark);
        --base-bright: var(--base-bright--dark);
        --base-bright-rgb: var(--base-bright-rgb--dark);
        --accent: var(--accent--dark);
        --highlight: var(--highlight--dark);
        --base-opp: var(--base-opp--dark);
        --base-opp-rgb: var(--base-opp-rgb--dark);
        --t-bright: var(--t-bright--dark);
        --t-medium: var(--t-medium--dark);
        --t-muted: var(--t-muted--dark);
        --t-muted-extra: var(--t-muted-extra--dark);
        --t-opp-bright: var(--t-opp-bright--dark);
        --t-opp-medium: var(--t-opp-medium--dark);
        --t-opp-muted: var(--t-opp-muted--dark);
        --t-opp-muted-extra: var(--t-opp-muted-extra--dark);
        --st-muted: var(--st-muted--dark);
        --st-medium: var(--st-medium--dark);
        --st-bright: var(--st-bright--dark);
        --bg-demo-screen-01: var(--bg-demo-screen-01--dark);
        --bg-demo-screen-02: var(--bg-demo-screen-02--dark);
        --bg-demo-screen-03: var(--bg-demo-screen-03--dark);
        --bg-demo-screen-04: var(--bg-demo-screen-04--dark);
        --bg-demo-screen-05: var(--bg-demo-screen-05--dark);
        --bg-demo-screen-06: var(--bg-demo-screen-06--dark);
        --bg-demo-screen-07: var(--bg-demo-screen-07--dark);
        --bg-demo-screen-08: var(--bg-demo-screen-08--dark);
        --bg-demo-screen-09: var(--bg-demo-screen-09--dark);
        --bg-demo-screen-10: var(--bg-demo-screen-10--dark)
    }
}

[color-scheme=light] {
    --base: var(--base--light);
    --base-rgb: var(--base-rgb--light);
    --base-tint: var(--base-tint--light);
    --base-tint-rgb: var(--base-tint-rgb--light);
    --base-bright: var(--base-bright--light);
    --base-bright-rgb: var(--base-bright-rgb--light);
    --accent: var(--accent--light);
    --highlight: var(--highlight--light);
    --base-opp: var(--base-opp--light);
    --base-opp-rgb: var(--base-opp-rgb--light);
    --t-bright: var(--t-bright--light);
    --t-medium: var(--t-medium--light);
    --t-muted: var(--t-muted--light);
    --t-muted-extra: var(--t-muted-extra--light);
    --t-opp-bright: var(--t-opp-bright--light);
    --t-opp-medium: var(--t-opp-medium--light);
    --t-opp-muted: var(--t-opp-muted--light);
    --t-opp-muted-extra: var(--t-opp-muted-extra--light);
    --st-muted: var(--st-muted--light);
    --st-medium: var(--st-medium--light);
    --st-bright: var(--st-bright--light);
    --bg-demo-screen-01: var(--bg-demo-screen-01--light);
    --bg-demo-screen-02: var(--bg-demo-screen-02--light);
    --bg-demo-screen-03: var(--bg-demo-screen-03--light);
    --bg-demo-screen-04: var(--bg-demo-screen-04--light);
    --bg-demo-screen-05: var(--bg-demo-screen-05--light);
    --bg-demo-screen-06: var(--bg-demo-screen-06--light);
    --bg-demo-screen-07: var(--bg-demo-screen-07--light);
    --bg-demo-screen-08: var(--bg-demo-screen-08--light);
    --bg-demo-screen-09: var(--bg-demo-screen-09--light);
    --bg-demo-screen-10: var(--bg-demo-screen-10--light)
}

[color-scheme=dark] {
    --base: var(--base--dark);
    --base-rgb: var(--base-rgb--dark);
    --base-tint: var(--base-tint--dark);
    --base-tint-rgb: var(--base-tint-rgb--dark);
    --base-bright: var(--base-bright--dark);
    --base-bright-rgb: var(--base-bright-rgb--dark);
    --accent: var(--accent--dark);
    --highlight: var(--highlight--dark);
    --base-opp: var(--base-opp--dark);
    --base-opp-rgb: var(--base-opp-rgb--dark);
    --t-bright: var(--t-bright--dark);
    --t-medium: var(--t-medium--dark);
    --t-muted: var(--t-muted--dark);
    --t-muted-extra: var(--t-muted-extra--dark);
    --t-opp-bright: var(--t-opp-bright--dark);
    --t-opp-medium: var(--t-opp-medium--dark);
    --t-opp-muted: var(--t-opp-muted--dark);
    --t-opp-muted-extra: var(--t-opp-muted-extra--dark);
    --st-muted: var(--st-muted--dark);
    --st-medium: var(--st-medium--dark);
    --st-bright: var(--st-bright--dark);
    --bg-demo-screen-01: var(--bg-demo-screen-01--dark);
    --bg-demo-screen-02: var(--bg-demo-screen-02--dark);
    --bg-demo-screen-03: var(--bg-demo-screen-03--dark);
    --bg-demo-screen-04: var(--bg-demo-screen-04--dark);
    --bg-demo-screen-05: var(--bg-demo-screen-05--dark);
    --bg-demo-screen-06: var(--bg-demo-screen-06--dark);
    --bg-demo-screen-07: var(--bg-demo-screen-07--dark);
    --bg-demo-screen-08: var(--bg-demo-screen-08--dark);
    --bg-demo-screen-09: var(--bg-demo-screen-09--dark);
    --bg-demo-screen-10: var(--bg-demo-screen-10--dark)
}

.mxd-hero-01 {
    background-image: url(../img/hero/1920x1200_h01.webp)
}

.mxd-hero-09 {
    background-image: url(../img/hero/1920x1200_h02.webp)
}

.divider-image-1 {
    background-image: url(../img/dividers/1920x1080_dv01.webp)
}

.divider-image-2 {
    background-image: url(../img/dividers/1920x1200_dv02.webp)
}

.divider-image-3 {
    background-image: url(../img/dividers/1920x1200_dv03.webp)
}

.divider-image-4 {
    background-image: url(../img/dividers/1920x1200_dv04.webp)
}

.divider-image-5 {
    background-image: url(../img/dividers/1920x1200_dv05.webp)
}

.divider-image-6 {
    background-image: url(../img/dividers/1920x1200_dv06.webp)
}

.divider-image-7 {
    background-image: url(../img/dividers/1920x1200_dv07.webp)
}

.divider-image-8 {
    background-image: url(../img/dividers/1920x1200_dv08.webp)
}

.divider-image-9 {
    background-image: url(../img/dividers/1920x1200_dv09.webp)
}

.divider-image-10 {
    background-image: url(../img/dividers/1920x1200_dv10.webp)
}

.divider-image-11 {
    background-image: url(../img/dividers/1920x1200_dv11.webp)
}

.divider-image-12 {
    background-image: url(../img/dividers/1920x1200_dv12.webp)
}

.divider-image-13 {
    background-image: url(../img/dividers/1920x1200_dv13.webp)
}

.divider-image-14 {
    background-image: url(../img/dividers/1920x1200_dv14.webp)
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

button:active,
button:focus {
    outline: 0 !important
}

button::-moz-focus-inner {
    border: 0 !important
}

input::-moz-focus-inner {
    border: 0 !important
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    -webkit-tap-highlight-color: transparent
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent
}

button {
    font: inherit;
    border: none;
    cursor: pointer
}

input,
label {
    font: inherit
}

::-moz-selection {
    background-color: var(--base-opp);
    color: var(--t-opp-bright);
    text-shadow: none
}

::selection {
    background-color: var(--base-opp);
    color: var(--t-opp-bright);
    text-shadow: none
}

::-webkit-scrollbar {
    display: block;
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #bc8c48;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9f7137;
}


html {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    position: relative;
    width: 100%;
    min-width: 360px;
    overflow-x: unset !important;
    font: normal 400 var(--_size)/1.6 var(--_font-default);
    text-rendering: optimizeLegibility;
    background-color: var(--base);
    color: var(--t-medium);
scrollbar-width: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    text-decoration: none;
    outline: 0;
    -webkit-tap-highlight-color: transparent
}

.mxd-spacer {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem
}

.mxd-spacer img {
    display: block;
    max-width: 50%;
    height: auto
}

.mxd-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-cover-03 {
    background-color: rgba(0, 0, 0, .3)
}

.mxd-cover-06 {
    background: linear-gradient(270deg, rgb(0 0 0 / 13%) 45%, rgb(0 0 0 / 38%) 53%, rgb(0 0 0 / 54%) 66%, rgb(0 0 0 / 94%));
}

.fullheight {
    height: 100%
}

.fullheight-desktop {
    height: auto
}

@media only screen and (min-width:1200px) {
    .fullheight-desktop {
        height: 100%
    }
}

.loading-split .line,
.mxd-split-lines-reverse .line {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    will-change: transform
}

.loading-chars .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

html.lenis,
html.lenis body {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

.bg-color-base {
    background-color: var(--base)
}

.bg-color-opposite {
    background-color: var(--base-opp)
}

.bg-color-accent {
    background-color: var(--accent)
}

.mxd-app {
    position: relative;
    width: 100%
}

.mxd-page-content {
    position: relative;
    width: 100%
}

.mxd-page-content.inner-page-content {
    padding-top: 6.3rem
}

@media only screen and (min-width:768px) {
    .mxd-page-content.inner-page-content {
        padding-top: 7rem
    }
}

.mxd-section {
    position: relative;
    width: 100%
}

.mxd-section.padding-top-default {
    padding-top: 14rem
}

.mxd-section.padding-top-title {
    padding-top: 12.3rem
}

.mxd-section.padding-top-title-mobile {
    padding-top: 12.3rem
}

.mxd-section.padding-top-number {
    padding-top: 13.5rem
}

.mxd-section.padding-top-number-mobile {
    padding-top: 13.5rem
}

.mxd-section.padding-top-manifest-m {
    padding-top: 12.9rem
}

.mxd-section.padding-top-subtitle {
    padding-top: 13.4rem
}

.mxd-section.padding-top-subtitle-mobile {
    padding-top: 13.4rem
}

.mxd-section.padding-bottom-default {
    padding-bottom: 14rem
}

.mxd-section.padding-bottom-t-medium {
    padding-bottom: 13.4rem
}

.mxd-section.padding-bottom-preview {
    padding-bottom: 13.1rem
}

.mxd-section.padding-bottom-projects {
    padding-bottom: 6rem
}

.mxd-section.padding-bottom-tag-m {
    padding-bottom: 13.2rem
}

.mxd-section.padding-bottom-tag-m-title {
    padding-bottom: 12.8rem
}

.mxd-section.padding-bottom-tag-m-subtitle {
    padding-bottom: 12.7rem
}

.mxd-section.padding-bottom-tags-mobile {
    padding-bottom: 13.4rem
}

.mxd-section.padding-bottom-grid-l-to-title {
    padding-bottom: 10.7rem
}

@media only screen and (min-width:768px) {
    .mxd-section.padding-top-default {
        padding-top: 17rem
    }

    .mxd-section.padding-top-title {
        padding-top: 14.9rem
    }

    .mxd-section.padding-top-title-mobile {
        padding-top: 14.9rem
    }

    .mxd-section.padding-top-number {
        padding-top: 16.4rem
    }

    .mxd-section.padding-top-number-mobile {
        padding-top: 16.4rem
    }

    .mxd-section.padding-top-manifest-m {
        padding-top: 15.2rem
    }

    .mxd-section.padding-top-subtitle {
        padding-top: 16.4rem
    }

    .mxd-section.padding-top-subtitle-mobile {
        padding-top: 16.4rem
    }

    .mxd-section.padding-bottom-default {
        padding-bottom: 17rem
    }

    .mxd-section.padding-bottom-t-medium {
        padding-bottom: 16.4rem
    }

    .mxd-section.padding-bottom-preview {
        padding-bottom: 16.3rem
    }

    .mxd-section.padding-bottom-projects {
        padding-bottom: 8.9rem
    }

    .mxd-section.padding-bottom-tag-m {
        padding-bottom: 16.2rem
    }

    .mxd-section.padding-bottom-tag-m-title {
        padding-bottom: 18.6rem
    }

    .mxd-section.padding-bottom-tag-m-subtitle {
        padding-bottom: 15.6rem
    }

    .mxd-section.padding-bottom-tags-mobile {
        padding-bottom: 17rem
    }

    .mxd-section.padding-bottom-grid-l-to-title {
        padding-bottom: 10.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section.padding-top-default {
        padding-top: 18rem
    }

    .mxd-section.padding-top-title {
        padding-top: 16.5rem
    }

    .mxd-section.padding-top-title-mobile {
        padding-top: 18rem
    }

    .mxd-section.padding-top-number {
        padding-top: 16.5rem
    }

    .mxd-section.padding-top-number-mobile {
        padding-top: 18rem
    }

    .mxd-section.padding-top-subtitle {
        padding-top: 17.4rem
    }

    .mxd-section.padding-top-subtitle-mobile {
        padding-top: 16.5rem
    }

    .mxd-section.padding-top-manifest-m {
        padding-top: 15.9rem
    }

    .mxd-section.padding-bottom-default {
        padding-bottom: 18rem
    }

    .mxd-section.padding-bottom-t-medium {
        padding-bottom: 17.4rem
    }

    .mxd-section.padding-bottom-preview {
        padding-bottom: 17.1rem
    }

    .mxd-section.padding-bottom-projects {
        padding-bottom: 8rem
    }

    .mxd-section.padding-bottom-tag-m {
        padding-bottom: 17.3rem
    }

    .mxd-section.padding-bottom-tag-m-desktop {
        padding-bottom: 17.2rem
    }

    .mxd-section.padding-bottom-tag-m-title {
        padding-bottom: 16.8rem
    }

    .mxd-section.padding-bottom-tag-m-subtitle {
        padding-bottom: 15.8rem
    }

    .mxd-section.padding-bottom-tags-mobile {
        padding-bottom: 18rem
    }

    .mxd-section.padding-bottom-grid-l-to-title {
        padding-bottom: 10.5rem
    }

    .mxd-section.padding-marquee-tags {
        padding-bottom: 16.9rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section.padding-top-default {
        padding-top: 20rem
    }

    .mxd-section.padding-top-title {
        padding-top: 18rem
    }

    .mxd-section.padding-top-title-mobile {
        padding-top: 20rem
    }

    .mxd-section.padding-top-number {
        padding-top: 18.1rem
    }

    .mxd-section.padding-top-number-mobile {
        padding-top: 20rem
    }

    .mxd-section.padding-top-subtitle {
        padding-top: 19.4rem
    }

    .mxd-section.padding-top-subtitle-mobile {
        padding-top: 18rem
    }

    .mxd-section.padding-top-manifest-m {
        padding-top: 17.2rem
    }

    .mxd-section.padding-bottom-default {
        padding-bottom: 20rem
    }

    .mxd-section.padding-bottom-t-medium {
        padding-bottom: 19.4rem
    }

    .mxd-section.padding-bottom-preview {
        padding-bottom: 19.2rem
    }

    .mxd-section.padding-bottom-projects {
        padding-bottom: 10rem
    }

    .mxd-section.padding-bottom-tag-m {
        padding-bottom: 19.3rem
    }

    .mxd-section.padding-bottom-tag-m-desktop {
        padding-bottom: 19.2rem
    }

    .mxd-section.padding-bottom-tag-m-subtitle {
        padding-bottom: 17.4rem
    }

    .mxd-section.padding-bottom-tags-mobile {
        padding-bottom: 20rem
    }

    .mxd-section.padding-bottom-grid-l-to-title {
        padding-bottom: 12rem
    }
}

.mxd-section-fullscreen {
    width: 100%;
    height: 100vh;
    padding-top: 6.3rem;
    overflow: hidden
}

@media only screen and (min-width:768px) {
    .mxd-section-fullscreen {
        padding-top: 7rem
    }
}

.mxd-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh
}

.mxd-background__video {
    position: relative;
    width: 100%;
    height: 100%
}

.mxd-background__video video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-background__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-background__cover.opposite {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--base-opp-rgb), .6)), to(rgba(var(--base-opp-rgb), 1)));
    background: -moz-linear-gradient(top, rgba(var(--base-opp-rgb), .6) 0, rgba(var(--base-opp-rgb), 1) 100%);
    background: linear-gradient(to bottom, rgba(var(--base-opp-rgb), .6) 0, rgba(var(--base-opp-rgb), 1) 100%)
}

.mxd-background__cover.accent {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 43, 186, .6)), to(#002bba));
    background: -moz-linear-gradient(top, rgba(0, 43, 186, .6) 0, #002bba 100%);
    background: linear-gradient(to bottom, rgba(0, 43, 186, .6) 0, #002bba 100%)
}

.mxd-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    padding: 0 3rem;
    margin: 0 auto
}

.mxd-container.fullwidth-container {
    max-width: none;
    padding: 0
}

.mxd-container.fullscreen-container {
    height: 100%
}

.mxd-container.no-padding-container {
    padding: 0;
    overflow: hidden
}

.mxd-container.grid-s-container {
    padding: 0 1.5rem
}

.mxd-container.grid-l-container {
    padding: 0
}

.mxd-container.no-padding-right-container {
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-container {
        padding: 0 6rem
    }

    .mxd-container.grid-s-container {
        padding: 0 4.5rem
    }

    .mxd-container.grid-l-container {
        padding: 0 3rem
    }

    .mxd-container.no-padding-right-container {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-container.no-padding-right-container {
        padding: 0 0 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-container {
        padding: 0 10rem
    }

    .mxd-container.grid-s-container {
        padding: 0 8.5rem
    }

    .mxd-container.grid-l-container {
        padding: 0 7rem
    }

    .mxd-container.no-padding-right-container {
        padding: 0 0 0 7rem
    }
}

.mxd-grid-item {
    padding: 0 3rem
}

.mxd-grid-item.padding-left-desktop {
    padding: 0
}

@media only screen and (min-width:1200px) {
    .mxd-grid-item.padding-left-desktop {
        padding: 0 0 0 4rem
    }
}

.mxd-grid-item-s {
    padding: 0 1.5rem
}

.mxd-grid-padding {
    padding: 0 3rem
}

.mxd-section-title {
    position: relative
}

.mxd-section-title.pre-grid {
    margin-bottom: 7.3rem
}

.mxd-section-title.pre-grid-desktop {
    margin-bottom: 0
}

.mxd-section-title.pre-grid-xl-mobile {
    margin-bottom: 7.2rem
}

.mxd-section-title.pre-subtitle-s {
    margin-bottom: 6.6rem
}

.mxd-section-title.pre-subtitle-s.controls-bottom-mobile {
    margin-bottom: 6.6rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title.pre-grid {
        margin-bottom: 9rem
    }

    .mxd-section-title.pre-grid-xl-mobile {
        margin-bottom: 9rem
    }

    .mxd-section-title.pre-subtitle-s {
        margin-bottom: 8.4rem
    }

    .mxd-section-title.pre-subtitle-s.controls-bottom-mobile {
        margin-bottom: 8.6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title.pre-grid {
        margin-bottom: 8.6rem
    }

    .mxd-section-title.pre-grid-desktop {
        margin-bottom: 8.6rem
    }

    .mxd-section-title.pre-grid-xl-mobile {
        margin-bottom: 0
    }

    .mxd-section-title.pre-subtitle-s {
        margin-bottom: 8rem
    }

    .mxd-section-title.pre-subtitle-s.controls-bottom-mobile {
        margin-bottom: 8rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-title.pre-grid {
        margin-bottom: 8.4rem
    }

    .mxd-section-title.pre-subtitle-s {
        margin-bottom: 7.7rem
    }

    .mxd-section-title.pre-subtitle-s.controls-bottom-mobile {
        margin-bottom: 8rem
    }
}

.mxd-section-title__title.centered {
    text-align: center
}

.mxd-section-title__title.reverse-desktop {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-section-title__title.pre-caption {
    margin-bottom: 2.8rem
}

.mxd-section-title__title.pre-caption-extra {
    margin-bottom: 2.8rem
}

.mxd-section-title__title.pre-controls-mobile {
    margin-bottom: 3.2rem
}

.mxd-section-title__title.pre-grid-split-xl {
    margin-bottom: 7.2rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__title.pre-caption {
        margin-bottom: 3.1rem
    }

    .mxd-section-title__title.pre-caption-extra {
        margin-bottom: 2.7rem
    }

    .mxd-section-title__title.pre-grid-split-xl {
        margin-bottom: 9.1rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__title.justify-between-desktop {
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .mxd-section-title__title.reverse-desktop {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .mxd-section-title__title.pre-caption,
    .mxd-section-title__title.pre-caption-extra,
    .mxd-section-title__title.pre-controls-mobile,
    .mxd-section-title__title.pre-grid-split-xl {
        margin-bottom: 0
    }
}

.mxd-section-title__subtitle {
    margin-bottom: 1.6rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__subtitle {
        margin-bottom: 1.9rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__subtitle {
        margin-bottom: 2.9rem
    }
}

.mxd-section-title__manifest.title-manifest-s {
    padding-top: 2.2rem
}

.mxd-section-title__manifest.no-padding-mobile {
    padding-top: 0
}

@media only screen and (min-width:768px) {
    .mxd-section-title__manifest.title-manifest-s {
        padding-top: 3.2rem
    }

    .mxd-section-title__manifest.no-padding-mobile {
        padding-top: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__manifest.title-manifest-s {
        padding-top: .4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-title__manifest.title-manifest-s {
        padding-top: .8rem
    }
}

.mxd-section-title__data {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-section-title__data.top-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__data {
        height: auto;
        min-height: 100%;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: .6rem
    }

    .mxd-section-title__data.top-controls {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 1rem
    }

    .mxd-section-title__data.top-caption {
        padding-top: 1rem
    }

    .mxd-section-title__data.top-number {
        padding-top: .8rem
    }

    .mxd-section-title__data.no-padding-bottom {
        padding-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-title__data {
        padding-bottom: .9rem
    }

    .mxd-section-title__data.top-controls {
        padding-top: 1.5rem
    }

    .mxd-section-title__data.top-number {
        padding-top: 1rem
    }

    .mxd-section-title__data.no-padding-bottom {
        padding-bottom: 0
    }
}

.mxd-section-title__controls {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.mxd-section-title__controls.justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mxd-section-title__controls.justify-end {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mxd-section-title__controls.pre-title {
    margin-bottom: 2rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__controls.pre-title {
        margin-bottom: 2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__controls.justify-start {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .mxd-section-title__controls.justify-end {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .mxd-section-title__controls.pre-title {
        margin-bottom: 0
    }
}

.mxd-section-title__caption {
    max-width: 530px
}

.mxd-section-title__caption.fullwidth {
    max-width: none
}

.mxd-section-title__caption.pre-controls {
    margin-bottom: 3.2rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__caption.pre-controls {
        margin-bottom: 3.6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__caption {
        max-width: 300px
    }

    .mxd-section-title__caption.no-max-width {
        max-width: none
    }

    .mxd-section-title__caption.pre-controls {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1400px) {
    .mxd-section-title__caption {
        max-width: 460px
    }

    .mxd-section-title__caption.no-max-width {
        max-width: none
    }
}

.mxd-section-title__number {
    margin-bottom: 2.1rem
}

.mxd-section-title__number.pre-manifest {
    margin-bottom: 2.5rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__number {
        margin-bottom: 2.1rem
    }

    .mxd-section-title__number.pre-manifest {
        margin-bottom: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__number {
        margin-bottom: 0
    }
}

.mxd-section-title__image {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.mxd-section-title__image.centered {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mxd-section-title__image-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.4rem
}

.mxd-section-title__image-link img,
.mxd-section-title__image-link svg {
    width: 120px;
    height: auto
}

@media only screen and (min-width:768px) {
    .mxd-section-title__image-link {
        margin-top: 1.9rem
    }

    .mxd-section-title__image-link img,
    .mxd-section-title__image-link svg {
        width: 144px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__image-link {
        margin-top: 2.9rem
    }
}

.mxd-section-title__paragraph {
    margin-bottom: 6.3rem
}

@media only screen and (min-width:768px) {
    .mxd-section-title__paragraph {
        margin-bottom: 8.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-title__paragraph {
        padding-top: 1.8rem
    }

    .mxd-section-title__paragraph p {
        max-width: 580px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-title__paragraph {
        margin-bottom: 7.9rem
    }
}

.mxd-aside-descr {
    padding-top: 2.7rem
}

@media only screen and (min-width:768px) {
    .mxd-aside-descr {
        padding-top: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-aside-descr {
        padding-top: 0
    }
}

.mxd-section-subtitle {
    position: relative
}

.mxd-section-subtitle.padding-default {
    padding: 4.5rem 0 4.1rem 0
}

.mxd-section-subtitle.padding-default.pre-grid-mobile {
    padding-bottom: 5.3rem
}

.mxd-section-subtitle.padding-info-top {
    padding: 2.4rem 0 4.1rem 0
}

@media only screen and (min-width:768px) {
    .mxd-section-subtitle.padding-default {
        padding: 8.7rem 0 8.3rem 0
    }

    .mxd-section-subtitle.padding-default.pre-grid-mobile {
        padding: 8.8rem 0 9.5rem 0
    }

    .mxd-section-subtitle.padding-info-top {
        padding: 5.1rem 0 8.2rem 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-subtitle.padding-default {
        padding: 9.4rem 0
    }

    .mxd-section-subtitle.padding-default.pre-grid-mobile {
        padding: 9.4rem 0
    }

    .mxd-section-subtitle.padding-info-top {
        padding: 8.4rem 0 9.4rem 0
    }
}

.mxd-section-info {
    position: relative
}

@media only screen and (min-width:1200px) {
    .mxd-section-info {
        padding-top: 7.2rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-info {
        padding-top: 6.5rem
    }
}

.mxd-section-info__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 1.1rem
}

@media only screen and (min-width:1200px) {
    .mxd-section-info__tags {
        padding-top: .8rem
    }
}

.mxd-section-info__descr {
    margin-bottom: 2.1rem
}

@media only screen and (min-width:768px) {
    .mxd-section-info__descr {
        margin-bottom: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-info__descr {
        margin-bottom: 0
    }
}

.mxd-section-manifest {
    position: relative
}

.mxd-section-manifest.pre-list {
    padding-bottom: 7.4rem;
    margin-bottom: 0
}

.mxd-section-manifest.pre-points {
    margin-bottom: 7.3rem
}

.mxd-section-manifest.pre-grid-xl {
    margin-bottom: 13.4rem
}

@media only screen and (min-width:768px) {
    .mxd-section-manifest.pre-list {
        padding-bottom: 16rem;
        margin-bottom: 0
    }

    .mxd-section-manifest.pre-points {
        margin-bottom: 9rem
    }

    .mxd-section-manifest.pre-grid-xl {
        margin-bottom: 16rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-manifest.pre-list {
        padding-bottom: 17rem;
        margin-bottom: 0
    }

    .mxd-section-manifest.pre-points {
        margin-bottom: 8.4rem
    }

    .mxd-section-manifest.pre-grid-xl {
        margin-bottom: 16.9rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-section-manifest.pre-points {
        margin-bottom: 8.9rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-manifest.pre-list {
        padding-bottom: 18.4rem
    }

    .mxd-section-manifest.pre-points {
        margin-bottom: 8.5rem
    }

    .mxd-section-manifest.pre-grid-xl {
        margin-bottom: 18.5rem
    }
}

.mxd-section-manifest__wrap {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-section-manifest__wrap.wrap-text-s {
    gap: 2.6rem
}

.mxd-section-manifest__wrap.wrap-text-m {
    gap: 2.6rem
}

@media only screen and (min-width:768px) {
    .mxd-section-manifest__wrap.wrap-text-s {
        gap: 2.2rem
    }

    .mxd-section-manifest__wrap.wrap-text-m {
        gap: 2.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-manifest__wrap.wrap-text-s {
        gap: 3rem
    }

    .mxd-section-manifest__wrap.wrap-text-m {
        gap: 2.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-section-manifest__wrap.wrap-text-s {
        gap: 3.3rem
    }

    .mxd-section-manifest__wrap.wrap-text-m {
        gap: 2.9rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-section-manifest__text.manifest-text-s {
        max-width: 1100px
    }

    .mxd-section-manifest__text.manifest-text-m {
        max-width: 1400px
    }
}

.mxd-socials-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-socials-list li {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.mxd-socials-list li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-fast) ease-in-out;
    -moz-transition: color var(--_animspeed-fast) ease-in-out;
    transition: color var(--_animspeed-fast) ease-in-out
}

.mxd-socials-list li a i,
.mxd-socials-list li a span,
.mxd-socials-list li a svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.mxd-socials-list li a i {
    font-size: 1.8rem;
    overflow: hidden
}

.mxd-socials-list li a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .mxd-socials-list {
        padding-top: 1.5rem
    }

    .no-touch .mxd-socials-list ul li a:hover {
        color: var(--t-medium)
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-socials-list>.socials-list__item {
        -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-socials-list:hover>.socials-list__item:not(:hover) {
        opacity: .3
    }

    .mxd-socials-list:hover>.socials-list__item:not(:hover) .socials-list__arrow,
    .mxd-socials-list:hover>.socials-list__item:not(:hover) .socials-list__info {
        scale: .964;
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }
}

@media only screen and (min-width:1600px) {
    .mxd-socials-list {
        padding-top: 1.9rem
    }
}

.datalist__item {
    margin-bottom: 2.9rem
}

.datalist__item:last-of-type {
    margin-bottom: 0
}

.datalist__item ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1.6rem
}

.datalist__item ul:last-of-type {
    margin-bottom: 0
}

.datalist__item ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--t-medium)
}

.no-touch .datalist__item ul li a:hover {
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .datalist__item {
        margin-bottom: 0
    }

    .datalist__item ul {
        margin-bottom: 2.1rem
    }

    .datalist__item ul:last-of-type {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .datalist__item ul {
        margin-bottom: 2.2rem
    }

    .datalist__item ul:last-of-type {
        margin-bottom: 0
    }
}

.datalist__title {
    margin-bottom: 1.5rem
}

@media only screen and (min-width:768px) {
    .datalist__title {
        margin-bottom: 2rem
    }
}

@media only screen and (min-width:1600px) {
    .datalist__title {
        margin-bottom: 2.1rem
    }
}

.anim-uni-slide-down,
.anim-uni-slide-up {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden
}

.anim-uni-slide-down span,
.anim-uni-slide-up span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.blur-container {
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: 240px;
    pointer-events: none;
    z-index: 10;
    display: none
}

@media only screen and (min-width:1200px) {
    .blur-container {
        height: 300px
    }
}

.blur-layer {
    position: absolute;
    inset: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    pointer-events: none
}

.blur-1 {
    z-index: 1;
    -webkit-backdrop-filter: blur(.078125px);
    backdrop-filter: blur(.078125px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(12.5%, #000), color-stop(25%, #000), color-stop(37.5%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%);
    mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(12.5%, #000), color-stop(25%, #000), color-stop(37.5%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 12.5%, #000 25%, rgba(0, 0, 0, 0) 37.5%)
}

.blur-2 {
    z-index: 2;
    -webkit-backdrop-filter: blur(.15625px);
    backdrop-filter: blur(.15625px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(12.5%, rgba(0, 0, 0, 0)), color-stop(25%, #000), color-stop(37.5%, #000), color-stop(50%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(12.5%, rgba(0, 0, 0, 0)), color-stop(25%, #000), color-stop(37.5%, #000), color-stop(50%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, #000 25%, #000 37.5%, rgba(0, 0, 0, 0) 50%)
}

.blur-3 {
    z-index: 3;
    -webkit-backdrop-filter: blur(.3125px);
    backdrop-filter: blur(.3125px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(37.5%, #000), color-stop(50%, #000), color-stop(62.5%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(37.5%, #000), color-stop(50%, #000), color-stop(62.5%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, #000 37.5%, #000 50%, rgba(0, 0, 0, 0) 62.5%)
}

.blur-4 {
    z-index: 4;
    -webkit-backdrop-filter: blur(.625px);
    backdrop-filter: blur(.625px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(37.5%, rgba(0, 0, 0, 0)), color-stop(50%, #000), color-stop(62.5%, #000), color-stop(75%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(37.5%, rgba(0, 0, 0, 0)), color-stop(50%, #000), color-stop(62.5%, #000), color-stop(75%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, #000 50%, #000 62.5%, rgba(0, 0, 0, 0) 75%)
}

.blur-5 {
    z-index: 5;
    -webkit-backdrop-filter: blur(1.25px);
    backdrop-filter: blur(1.25px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(62.5%, #000), color-stop(75%, #000), color-stop(87.5%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(62.5%, #000), color-stop(75%, #000), color-stop(87.5%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000 62.5%, #000 75%, rgba(0, 0, 0, 0) 87.5%)
}

.blur-6 {
    z-index: 6;
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(62.5%, rgba(0, 0, 0, 0)), color-stop(75%, #000), color-stop(87.5%, #000), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(62.5%, rgba(0, 0, 0, 0)), color-stop(75%, #000), color-stop(87.5%, #000), to(rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, #000 75%, #000 87.5%, rgba(0, 0, 0, 0) 100%)
}

.blur-7 {
    z-index: 7;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(0, 0, 0, 0)), color-stop(87.5%, #000), to(#000));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(0, 0, 0, 0)), color-stop(87.5%, #000), to(#000));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, #000 87.5%, #000 100%)
}

.blur-8 {
    z-index: 8;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(87.5%, rgba(0, 0, 0, 0)), to(#000));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, #000 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(87.5%, rgba(0, 0, 0, 0)), to(#000));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, #000 100%)
}

.mxd-block {
    position: relative;
    width: 100%
}

.mxd-block-fullscreen {
    width: 100%;
    height: 100%
}

.mxd-block-fullscreen.centered-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pinned-section {
    display: block;
    position: relative
}

.pinned-section__inner {
    position: relative;
    opacity: 1
}

.pinned-section__trigger {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: transparent
}

.mxd-img-anim {
    position: relative;
    overflow: hidden
}

.mxd-img-anim img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-img-anim .mxd-img-anim__absolute {
    height: 100%
}

.mxd-img-anim__main {
    position: relative;
    opacity: 1
}

.mxd-img-anim__absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-img-anim__absolute.centered-y {
    left: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.mxd-object-link {
    position: relative
}

.mxd-object-link__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mxd-object-link__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 3rem;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.mxd-object-link__item.justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mxd-object-link__item.justify-end {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.mxd-object-link__object {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.1rem
}

.mxd-object-link__object img,
.mxd-object-link__object svg {
    width: 16rem;
    height: 16rem
}

.mxd-object-link__object svg {
    fill: var(--t-muted-extra)
}

.mxd-object-link__object img {
    -o-object-fit: contain;
    object-fit: contain
}

@media only screen and (min-width:768px) {
    .mxd-object-link__object {
        margin-bottom: 0
    }

    .mxd-object-link__object img,
    .mxd-object-link__object svg {
        width: 26rem;
        height: 26rem
    }
}

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

    .mxd-object-link__object img,
    .mxd-object-link__object svg {
        width: 32rem;
        height: 32rem
    }
}

.mxd-object-link__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%
}

@media only screen and (min-width:768px) {
    .mxd-object-link__content {
        width: 100%;
        gap: 1.4rem
    }
}

.mxd-object-link__btnholder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

@media only screen and (min-width:768px) {
    .mxd-object-link__btnholder {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.mxd-object-link__media {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 26rem
}

.mxd-object-link__media img {
    width: 100%
}

@media only screen and (min-width:1600px) {
    .mxd-object-link__media {
        height: 32rem
    }
}

.fullwidth-text {
    position: relative;
    width: 100%
}

.fullwidth-text.bottom-text {
    bottom: -.4rem
}

.fullwidth-text.bottom-text-small {
    bottom: -.2rem
}

@media only screen and (min-width:768px) {
    .fullwidth-text.bottom-text {
        bottom: -.8rem
    }

    .fullwidth-text.bottom-text-small {
        bottom: -.3rem
    }
}

@media only screen and (min-width:1200px) {
    .fullwidth-text.bottom-text {
        bottom: -1rem
    }

    .fullwidth-text.bottom-text-small {
        bottom: -.4rem
    }
}

.headline-email-text {
    margin-top: 13.2rem
}

@media only screen and (min-width:768px) {
    .headline-email-text {
        margin-top: 16rem
    }
}

@media only screen and (min-width:768px) {
    .headline-email-text {
        margin-top: 17rem
    }
}

@media only screen and (min-width:1600px) {
    .headline-email-text {
        margin-top: 19rem
    }
}

.fullwidth-text__wrap {
    container-type: inline-size;
    padding-top: .7rem
}

.fullwidth-text__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 28cqw;
    line-height: .746
}

.fullwidth-text__content span {
    font-style: normal;
    font-weight: 500;
    line-height: .746;
    font-family: var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: normal;
    color: var(--t-bright);
    white-space: nowrap
}

.fullwidth-text__content .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.fullwidth-text__content.small {
    font-size: 10.46cqw
}

.fullwidth-text__content.base span {
    color: var(--base)
}

.fullwidth-text__content.accent span {
    color: var(--accent)
}

.fullwidth-text__content.opposite span {
    color: var(--base-opp)
}

.fullwidth-text__content.permanent span {
    color: var(--nl-white)
}

@media only screen and (min-width:992px) {
    .fullwidth-text__content {
        font-size: 28cqw
    }

    .fullwidth-text__content.small {
        font-size: 10.46cqw
    }
}

.mxd-divider {
    position: relative;
    overflow: hidden;
    height: 600px
}

@media only screen and (min-width:768px) {
    .mxd-divider {
        height: 760px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider {
        height: 760px
    }

    .mxd-divider.divider-hero-01 {
        padding-top: 14rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider {
        height: 930px
    }
}

.mxd-divider__content {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.1rem;
    text-align: center;
    overflow: hidden;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-divider__content {
        gap: 2.2rem;
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider__content {
        gap: 2.3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider__content {
        gap: 2.5rem;
        padding: 0 10rem
    }
}

.mxd-divider__btngroup {
    overflow: hidden
}

@media only screen and (min-width:768px) {
    .mxd-divider__caption {
        max-width: 560px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider__caption {
        max-width: 640px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider__caption {
        max-width: 800px
    }
}

.mxd-divider__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-divider__cover.cover-04 {
    background-color: var(--nl-black-04)
}

.mxd-divider__cover.cover-06 {
    background-color: var(--nl-black-06)
}

.mxd-divider__image {
    position: relative;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    overflow: hidden
}

.mxd-divider__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-divider__image {
        height: 760px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider__image {
        height: 760px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider__image {
        height: 930px
    }
}

.mxd-divider__video {
    position: relative;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    overflow: hidden
}

.mxd-divider__video video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-divider__video img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-divider__video {
        height: 760px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider__video {
        height: 760px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider__video {
        height: 930px
    }
}

.mxd-divider__trigger {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.mxd-perspective-list {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.mxd-perspective-list__item {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform
}

.mxd-perspective-list__inner {
    -webkit-transform-origin: bottom center;
    -moz-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity, filter
}

.mxd-pulse {
    -webkit-animation: mxd-pulse 1.2s infinite ease-in-out alternate;
    -moz-animation: mxd-pulse 1.2s infinite ease-in-out alternate;
    animation: mxd-pulse 1.2s infinite ease-in-out alternate
}

@-webkit-keyframes mxd-pulse {
    from {
        -webkit-transform: scale(.94);
        transform: scale(.94)
    }

    to {
        -webkit-transform: scale(1.06);
        transform: scale(1.06)
    }
}

@-moz-keyframes mxd-pulse {
    from {
        -moz-transform: scale(.94);
        transform: scale(.94)
    }

    to {
        -moz-transform: scale(1.06);
        transform: scale(1.06)
    }
}

@keyframes mxd-pulse {
    from {
        -webkit-transform: scale(.94);
        -moz-transform: scale(.94);
        transform: scale(.94)
    }

    to {
        -webkit-transform: scale(1.06);
        -moz-transform: scale(1.06);
        transform: scale(1.06)
    }
}

.mxd-pulse-small {
    -webkit-animation: mxd-pulse 1.2s infinite ease-in-out alternate;
    -moz-animation: mxd-pulse 1.2s infinite ease-in-out alternate;
    animation: mxd-pulse 1.2s infinite ease-in-out alternate
}

@keyframes mxd-pulse {
    from {
        -webkit-transform: scale(.94);
        -moz-transform: scale(.94);
        transform: scale(.94)
    }

    to {
        -webkit-transform: scale(1.02);
        -moz-transform: scale(1.02);
        transform: scale(1.02)
    }
}

.mxd-move {
    -webkit-animation: mxd-move 1.2s infinite ease-in-out alternate;
    -moz-animation: mxd-move 1.2s infinite ease-in-out alternate;
    animation: mxd-move 1.2s infinite ease-in-out alternate
}

.mxd-move-slow {
    -webkit-animation: mxd-move 2s infinite ease-in-out alternate;
    -moz-animation: mxd-move 2s infinite ease-in-out alternate;
    animation: mxd-move 2s infinite ease-in-out alternate
}

@-webkit-keyframes mxd-move {
    from {
        -webkit-transform: translateY(-1rem);
        transform: translateY(-1rem)
    }

    to {
        -webkit-transform: translateY(1rem);
        transform: translateY(1rem)
    }
}

@-moz-keyframes mxd-move {
    from {
        -moz-transform: translateY(-1rem);
        transform: translateY(-1rem)
    }

    to {
        -moz-transform: translateY(1rem);
        transform: translateY(1rem)
    }
}

@keyframes mxd-move {
    from {
        -webkit-transform: translateY(-1rem);
        -moz-transform: translateY(-1rem);
        transform: translateY(-1rem)
    }

    to {
        -webkit-transform: translateY(1rem);
        -moz-transform: translateY(1rem);
        transform: translateY(1rem)
    }
}

.mxd-rotate {
    -webkit-animation: spin 5s linear infinite;
    -moz-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite
}

.mxd-rotate-slow {
    -webkit-animation: spin 16s linear infinite;
    -moz-animation: spin 16s linear infinite;
    animation: spin 16s linear infinite
}

.mxd-split-lines .line {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

h1 {
    font: normal 600 6rem/1.1 var(--_font-default);
    letter-spacing: -.24rem;
    color: var(--t-bright)
}

h1 sup {
    vertical-align: super;
    font-size: 74%;
    color: var(--t-muted)
}

h1 span {
    color: var(--t-medium)
}

h1 span#typed,
h1 span.typed-strings {
    color: var(--t-bright);
    white-space: nowrap
}

h1 span#typed b,
h1 span.typed-strings b {
    white-space: nowrap
}

h1.small {
    font-size: 5rem
}

h1.permanent {
    color: var(--nl-white)
}

h1.permanent span {
    color: var(--nl-white-06)
}

h1.large {
    line-height: 1.1
}

@media only screen and (min-width:768px) {
    h1 {
        letter-spacing: -.3rem
    }

    h1.small {
        font-size: 7.5rem
    }

    h1.medium {
        font-size: 8.5rem
    }

    h1.large {
        font-size: 9rem;
        line-height: 1.2;
        white-space: nowrap
    }
}

@media only screen and (min-width:1200px) {
    h1.small {
        font-size: 9.5rem
    }

    h1.medium {
        font-size: 12rem
    }

    h1.large {
        font-size: 12rem
    }
}

@media only screen and (min-width:1400px) {
    h1.large {
        font-size: 14rem;
        letter-spacing: -.5rem
    }
}

@media only screen and (min-width:1600px) {
    h1.large {
        font-size: 15rem
    }
}

h2 {
    font: normal 600 4.4rem/1.1 var(--_font-default);
    letter-spacing: 0.5px;
    color: var(--t-bright)
}

h2.permanent {
    line-height: 2.813vw;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.005em;
    font-family: var(--font-heading), serif;
    font-size: 45px;


}

h2.opposite {
    color: var(--t-opp-bright)
}

h2.accent {
    color: var(--pt-t-accent-bright)
}

h2 .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    h2 {
        font-size: 5.4rem;

    }
}



@media only screen and (min-width:1600px) {
    h2 {
        font-size: 30px;
    }
}

.title-number {
    font: normal 500 4.2rem/1 var(--_font-accent);

    color: var(--t-muted)
}

.title-number.permanent {
    color: var(--nl-white-06)
}

@media only screen and (min-width:768px) {
    .title-number {
        font-size: 5.2rem;

    }
}

@media only screen and (min-width:1200px) {
    .title-number {
        font-size: 6rem
    }
}

@media only screen and (min-width:1600px) {
    .title-number {
        font-size: 7.4rem
    }
}

h3 {
    font: normal 700 4rem/1.2 var(--_font-default);

    color: var(--t-bright)
}

h3 span {
    color: var(--t-medium)
}

h3.small {
    font-size: 3.4rem
}

h3.permanent {
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    h3 {
        font-size: 5rem
    }

    h3.small {
        font-size: 4.4rem
    }
}

h4 {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

h4 span {
    color: var(--t-medium)
}

h4.permanent {
    color: var(--nl-white)
}

h4.accent {
    color: var(--pt-t-accent-bright)
}

h4.opposite {
    color: var(--t-opp-bright)
}

h4 .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    h4 {
        font-size: 3.6rem
    }
}

@media only screen and (min-width:1200px) {
    h4 {
        font-size: 4rem
    }
}

h5 {
    font: normal 700 2.6rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

h5 span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    h5 {
        font-size: 3rem
    }
}

@media only screen and (min-width:1200px) {
    h5 {
        font-size: 3.4rem
    }
}

h6 {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

h6 a {
    color: var(--t-bright)
}

h6.opposite {
    color: var(--t-opp-bright)
}

h6.opposite a {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    h6 {
        font-size: 2.4rem
    }
}

p {

    font-family: 'Montserrat' !important;

    font: normal 500 var(--_size)/1.4 var(--_font-default);
    color: #333;
}

p.t-160 {
    line-height: 1.6
}

p.t-120 {
    line-height: 1.2
}

p.t-accent {
    color: var(--pt-t-accent-medium)
}

p.t-bright {
    color: var(--t-bright)
}

p.t-medium {
    font-size: 1.6rem
}

p.t-large {
    font-size: 2rem
}

p.t-extra {
    font-size: 2rem
}

p.t-bold {
    font-weight: 700;
    color: var(--t-bright)
}

p.t-bold a {
    color: var(--t-bright)
}

p.t-bold span {
    color: var(--t-medium)
}

p.t-opposite {
    color: var(--t-opp-bright)
}

p.t-opposite span {
    color: var(--t-opp-medium)
}

p.t-permanent {
    color: var(--nl-white)
}

p.t-permanent span {
    color: var(--nl-white-06)
}

p.t-accent-bright {
    color: var(--pt-t-accent-bright)
}

p.t-accent-bright span {
    color: var(--pt-t-accent-medium)
}

@media only screen and (min-width:768px) {
    p.t-medium {
        font-size: 1.8rem
    }

    p.t-extra {
        font-size: 2.8rem;
        letter-spacing: -.06rem
    }
}

@media only screen and (min-width:1200px) {
    p.t-aside {
        max-width: 360px
    }
}

@media only screen and (min-width:1600px) {
    p.t-large {
        font-size: 2.4rem
    }

    p.t-extra {
        font-size: 3.4rem;
        letter-spacing: -.08rem
    }
}

.manifest {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.manifest span {
    color: var(--t-medium)
}

.manifest.manifest-accent {
    color: var(--pt-t-accent-bright)
}

.manifest.manifest-accent span {
    color: var(--pt-t-accent-muted)
}

@media only screen and (min-width:768px) {
    .manifest.manifest-m {
        font-size: 4.4rem
    }

    .manifest.manifest-l {
        font-size: 4rem
    }
}

@media only screen and (min-width:1200px) {
    .manifest.manifest-s {
        font-size: 4.4rem
    }

    .manifest.manifest-m {
        font-size: 4.8rem
    }

    .manifest.manifest-l {
        font-size: 5.4rem
    }
}

@media only screen and (min-width:1600px) {
    .manifest.manifest-s {
        font-size: 4.4rem
    }

    .manifest.manifest-m {
        font-size: 6.6rem
    }

    .manifest.manifest-l {
        font-size: 7.5rem
    }
}

.breadcrumbs__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: .5rem
}

.breadcrumbs__nav span {
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.breadcrumbs__nav span::after {
    content: "/";
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.breadcrumbs__nav span:last-of-type::after {
    display: none
}

.breadcrumbs__nav span a {
    display: inline;
    color: var(--t-medium);
    letter-spacing: .05rem
}

.breadcrumbs__nav span.current-item {
    text-decoration: underline
}

.breadcrumbs__nav.permanent span {
    color: var(--nl-white)
}

.tag {
    display: inline-block;
    font: normal 600 var(--_size)/1.6 var(--_font-default);
    text-transform: uppercase;
    letter-spacing: .05rem
}

.tag-s {
    font-size: 1.2rem
}

.tag-s-mobile {
    font-size: 1.2rem
}

@media only screen and (min-width:1600px) {
    .tag-s-mobile {
        font-size: 1.4rem
    }
}

.tag-m {
    font-size: 1.4rem
}

.tag-bg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 1.2rem;
    padding: .8rem 1.2rem;
    -moz-border-radius: .4rem;
    border-radius: .4rem;
    line-height: 1.2
}

.tag-bg.default {
    background-color: var(--base-opp);
    color: var(--t-opp-bright)
}

.tag-bg.accent {
    background-color: var(--accent);
    color: var(--pt-t-accent-bright)
}

.tag-bg.muted {
    background-color: var(--st-muted);
    color: var(--t-bright)
}

.tag-bg.permanent {
    background-color: var(--nl-white);
    color: var(--nl-black)
}

.tag-permanent {
    font-weight: 400;
    color: var(--nl-white)
}

.tag-opposite {
    color: var(--t-opp-medium)
}

.tag-medium {
    color: var(--t-medium)
}

.tag-medium-opposite {
    color: var(--t-opp-medium)
}

.meta-author,
.meta-date,
.meta-niche,
.meta-tag,
.meta-time {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.meta-author.comma-tag::after,
.meta-date.comma-tag::after,
.meta-niche.comma-tag::after,
.meta-tag.comma-tag::after,
.meta-time.comma-tag::after {
    content: ","
}

.meta-author.slash-tag::after,
.meta-date.slash-tag::after,
.meta-niche.slash-tag::after,
.meta-tag.slash-tag::after,
.meta-time.slash-tag::after {
    content: "/";
    margin: 0 1rem
}

.meta-author a,
.meta-date a,
.meta-niche a,
.meta-tag a,
.meta-time a {
    color: var(--t-medium)
}

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

    .meta-author,
    .meta-date,
    .meta-niche,
    .meta-tag,
    .meta-time {
        font-size: 1.4rem
    }
}

.meta-author,
.meta-time {
    color: var(--t-bright)
}

.meta-author a,
.meta-time a {
    color: var(--t-bright)
}

.mxd-socials-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2.4rem;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
    row-gap: .4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.mxd-socials-line.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-socials-line.centered-mobile {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mxd-socials-line li {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media only screen and (min-width:1200px) {
    .mxd-socials-line {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 3.4rem;
        -moz-column-gap: 3.4rem;
        column-gap: 3.4rem;
        row-gap: 0
    }

    .mxd-socials-line.column {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .mxd-socials-line.centered-mobile {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.mxd-socials-line__link {
    display: block;
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    color: var(--t-medium);
    overflow: hidden
}

.mxd-socials-line__link span {
    display: inline-block;
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem
}

.mxd-socials-line__link.opposite {
    color: var(--t-opp-medium)
}

.mxd-socials-line__link.permanent {
    color: rgba(var(--nl-white-rgb), .7)
}

.no-touch .mxd-socials-line__link:hover {
    color: var(--t-bright)
}

.no-touch .mxd-socials-line__link:hover.opposite {
    color: var(--t-opp-bright)
}

.no-touch .mxd-socials-line__link:hover.permanent {
    color: rgba(var(--nl-white-rgb), 1)
}

.footer-data {
    display: block;
    overflow: hidden;
    color: var(--t-medium);
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.footer-data a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-medium)
}

.no-touch .footer-data a:hover {
    color: var(--t-bright)
}

.footer-data span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.footer-data.opposite {
    color: var(--t-opp-medium)
}

.footer-data.opposite a {
    color: var(--t-opp-medium)
}

.no-touch .footer-data.opposite a:hover {
    color: var(--t-opp-bright)
}

.footer-data.bright {
    color: var(--t-bright);
    letter-spacing: normal
}

.footer-data.bright a {
    color: var(--t-bright);
    letter-spacing: normal
}

.no-touch .footer-data.bright a:hover {
    color: var(--t-medium)
}

.project-name-s {
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease;
    -moz-transition: color var(--_animspeed-medium) ease;
    transition: color var(--_animspeed-medium) ease
}

.project-name-s.permanent {
    color: var(--nl-white)
}

.project-name-m {
    font: normal 700 3.2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease;
    -moz-transition: color var(--_animspeed-medium) ease;
    transition: color var(--_animspeed-medium) ease
}

.project-name-m.permanent {
    color: var(--nl-white)
}

.blog-name-s {
    font: normal 700 1.8rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease;
    -moz-transition: color var(--_animspeed-medium) ease;
    transition: color var(--_animspeed-medium) ease
}

.blog-name-s.permanent {
    color: var(--nl-white)
}

.blog-name-m {
    font: normal 700 2.2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease;
    -moz-transition: color var(--_animspeed-medium) ease;
    transition: color var(--_animspeed-medium) ease
}

.blog-name-m.permanent {
    color: var(--nl-white)
}

.mxd-hero__mark {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font: normal 600 1.4rem var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.mxd-hero__mark.permanent {
    font-weight: 500;
    color: var(--nl-white)
}

.mxd-hero__mark .mark-icon {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-preferred-size: 1rem;
    flex-basis: 1rem;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #98f160;
    -webkit-animation: green-glow 1s infinite;
    -moz-animation: green-glow 1s infinite;
    animation: green-glow 1s infinite
}

.mxd-hero__mark .mark-text {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@-webkit-keyframes green-glow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        -webkit-transition: -webkit-box-shadow .3s ease-in-out;
        transition: -webkit-box-shadow .3s ease-in-out;
        -moz-transition: box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-box-shadow .4s ease-in-out;
        transition: -webkit-box-shadow .4s ease-in-out;
        -moz-transition: box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out, -webkit-box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out
    }
}

@-moz-keyframes green-glow {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        -webkit-transition: -webkit-box-shadow .3s ease-in-out;
        transition: -webkit-box-shadow .3s ease-in-out;
        -moz-transition: box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out
    }

    100% {
        -moz-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent;
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-box-shadow .4s ease-in-out;
        transition: -webkit-box-shadow .4s ease-in-out;
        -moz-transition: box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out, -webkit-box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out
    }
}

@keyframes green-glow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        -moz-box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        box-shadow: 0 0 0 0 rgba(152, 241, 96, .6);
        -webkit-transition: -webkit-box-shadow .3s ease-in-out;
        transition: -webkit-box-shadow .3s ease-in-out;
        -moz-transition: box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px transparent;
        -moz-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: -webkit-box-shadow .4s ease-in-out;
        transition: -webkit-box-shadow .4s ease-in-out;
        -moz-transition: box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out, -webkit-box-shadow .4s ease-in-out, -moz-box-shadow .4s ease-in-out
    }
}

.mxd-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    z-index: 10000
}

.mxd-cursor.difference {
    mix-blend-mode: difference
}

.mxd-cursor__dot {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--base-opp);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition-property: background-color, width, height;
    -moz-transition-property: background-color, width, height;
    transition-property: background-color, width, height;
    -webkit-transition-duration: var(--_animspeed-medium);
    -moz-transition-duration: var(--_animspeed-medium);
    transition-duration: var(--_animspeed-medium);
    -webkit-transition-timing-function: var(--_animbezier);
    -moz-transition-timing-function: var(--_animbezier);
    transition-timing-function: var(--_animbezier);
    z-index: 3
}

.mxd-cursor__dot.expand {
    width: 10rem;
    height: 10rem
}

.mxd-cursor__dot.active {
    background-color: var(--base-opp)
}

.mxd-cursor__dot.active-opposite {
    background-color: var(--base)
}

.mxd-cursor__dot.active-accent {
    background-color: var(--accent)
}

.mxd-cursor__dot.active-permanent {
    background-color: var(--pt-base)
}

.mxd-cursor__dot.cursor-btn-link {
    width: 2rem;
    height: 2rem;
    background-color: var(--nl-white)
}

.mxd-cursor__text {
    position: absolute;
    margin: 0;
    text-align: center;
    color: var(--t-opp-bright);
    font: normal 600 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    padding-top: .4rem;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: -webkit-transform .2s var(--_animbezier);
    transition: -webkit-transform .2s var(--_animbezier);
    -moz-transition: transform .2s var(--_animbezier), -moz-transform .2s var(--_animbezier);
    transition: transform .2s var(--_animbezier);
    transition: transform .2s var(--_animbezier), -webkit-transform .2s var(--_animbezier), -moz-transform .2s var(--_animbezier);
    z-index: 4
}

.mxd-cursor__text.permanent {
    color: var(--nl-black)
}

.mxd-cursor__text.accent {
    color: var(--nl-white)
}

.mxd-cursor__text.show {
    display: block;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1)
}

.mxd-cursor__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36rem;
    height: 36rem;
    overflow: hidden;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    visibility: hidden;
    clip-path: inset(50% 50% 50% 50% round 50%);
    -webkit-clip-path: inset(50% 50% 50% 50% round 50%);
    -webkit-transition: clip-path var(--_animspeed-medium) var(--_animbezier), visibility 0s linear var(--_animspeed-medium);
    -moz-transition: clip-path var(--_animspeed-medium) var(--_animbezier), visibility 0s linear var(--_animspeed-medium);
    transition: clip-path var(--_animspeed-medium) var(--_animbezier), visibility 0s linear var(--_animspeed-medium);
    will-change: clip-path;
    z-index: 1
}

.mxd-cursor__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-cursor__image.show {
    visibility: visible;
    clip-path: inset(0 0 0 0 round 0);
    -webkit-clip-path: inset(0 0 0 0 round 0);
    -webkit-transition: clip-path var(--_animspeed-slow) var(--_animbezier), visibility 0s;
    -moz-transition: clip-path var(--_animspeed-slow) var(--_animbezier), visibility 0s;
    transition: clip-path var(--_animspeed-slow) var(--_animbezier), visibility 0s
}

.mxd-trail-transparent-wrapper,
.mxd-trail-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.mxd-trail-content,
.mxd-trail-transparent-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.mxd-trail-image {
    display: inline-block;
    position: absolute;
    inset: 0 auto auto 0;
    width: 22rem;
    height: 22rem;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    opacity: 0;
    pointer-events: none
}

.mxd-trail-transparent-image {
    display: inline-block;
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    will-change: transform, opacity, clip-path, z-index;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    opacity: 0;
    pointer-events: none
}

.btn {
    position: relative;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.4rem;
    border: none;
    outline: 0;
    padding: 0;
    font: inherit;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn-form {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    width: 5.8rem;
    height: 5.8rem;
    border-width: 2px;
    font: normal 400 2.2rem/1.5 var(--_font-accent);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: color var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium);
    transition: color var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium);
    -moz-transition: transform var(--_animspeed-medium), color var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium), color var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium), color var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium)
}

.btn-form i {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-size: 2.2rem;
    overflow: hidden
}

.no-touch .btn-form:hover {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04)
}

.no-touch .btn-form:hover.no-scale {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.btn-absolute-right {
    position: absolute;
    top: 0;
    right: 0
}

.btn-round {
    width: 5rem;
    height: 5rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font: normal 500 2rem var(--_font-accent);
    text-transform: uppercase;
    overflow: hidden
}

.btn-round i {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

.btn-round i svg {
    display: block;
    width: 1.7rem;
    height: 1.7rem
}

.btn-round-permanent {
    background-color: var(--nl-white);
    color: var(--nl-black)
}

.btn-round-permanent svg {
    fill: var(--nl-black)
}

.btn-default-icon {
    gap: 2rem;
    font: normal 500 2rem var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    padding: .4rem .4rem .4rem 2rem;
    -moz-border-radius: .4rem;
    border-radius: .4rem
}

.btn-default-icon i {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    -moz-border-radius: .2rem;
    border-radius: .2rem;
    background-color: rgba(var(--nl-white-rgb), .16);
    overflow: hidden
}

.btn-default-icon i svg {
    display: block;
    width: 1.8rem;
    height: auto
}

.btn-default-icon .btn-caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.btn-default-icon-left {
    padding: .4rem 2rem .4rem .4rem
}

.btn-default-icon-large {
    font-size: 2.2rem
}

.btn-default-icon-large i {
    width: 5rem;
    height: 5rem
}

.btn-default-icon-large i svg {
    width: 2.2rem
}

.btn-default-icon-small {
    gap: 1.4rem;
    font: normal 500 1.5rem var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    padding: .4rem .4rem .4rem 1.4rem;
    -moz-border-radius: .4rem;
    border-radius: .4rem
}

.btn-default-icon-small i {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 3.4rem;
    height: 3.4rem;
    -moz-border-radius: .2rem;
    border-radius: .2rem;
    background-color: rgba(var(--nl-white-rgb), .16);
    overflow: hidden
}

.btn-default-icon-small i svg {
    display: block;
    width: 1.5rem;
    height: auto
}

.btn-default-icon-small .btn-caption {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.btn-default-fullwidth {
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.btn-default-fullwidth-mobile {
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media only screen and (min-width:768px) {
    .btn-default-fullwidth-mobile {
        width: auto;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.btn-default-accent {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: var(--pt-t-accent-bright)
}

.btn-default-accent i svg {
    fill: var(--pt-t-accent-bright)
}

.btn-default-permanent {
    background-color: var(--nl-white);
    color: var(--nl-black)
}

.btn-default-permanent i {
    background-color: rgba(var(--nl-black-rgb), .2)
}

.btn-default-permanent i svg {
    fill: var(--nl-black)
}

.btn-default-outline {
    background-color: transparent;
    border: 1px solid var(--t-bright);
    color: var(--t-bright)
}

.btn-default-outline i {
    background-color: var(--st-muted)
}

.btn-default-outline i svg {
    fill: var(--t-bright)
}

.btn-line {
    gap: 1rem;
    font: normal 500 1.6rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem
}

.btn-line span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap
}

.btn-line::before {
    content: "["
}

.btn-line::after {
    content: "]"
}

.btn-line::after,
.btn-line::before {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.no-touch .btn-line:hover::before {
    -webkit-transform: translateX(-.2rem);
    -moz-transform: translateX(-.2rem);
    -ms-transform: translateX(-.2rem);
    transform: translateX(-.2rem)
}

.no-touch .btn-line:hover::after {
    -webkit-transform: translateX(.2rem);
    -moz-transform: translateX(.2rem);
    -ms-transform: translateX(.2rem);
    transform: translateX(.2rem)
}

@media only screen and (min-width:768px) {
    .btn-line {
        font-size: 1.8rem
    }
}

.btn-line-small {
    font-size: 1.4rem
}

@media only screen and (min-width:768px) {
    .btn-line-small {
        font-size: 1.4rem
    }
}

.btn-line-icon {
    gap: 1.2rem;
    font: normal 700 1.8rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    white-space: nowrap
}

.btn-line-icon i,
.btn-line-icon span,
.btn-line-icon svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.btn-line-icon i {
    font-size: 1.8rem;
    overflow: hidden
}

.btn-line-icon svg {
    width: 1.6rem;
    height: 1.6rem;
    margin-bottom: .3rem
}

.btn-line-icon-small {
    font-size: 1.4rem;
    font-weight: 600
}

.btn-line-icon-small i {
    font-size: 1.4rem
}

.btn-line-icon-small svg {
    width: 1.4rem;
    height: 1.4rem;
    margin-bottom: .1rem
}

.btn-line-default {
    color: var(--t-bright)
}

.btn-line-default svg {
    fill: var(--t-bright)
}

.btn-line-medium {
    color: var(--t-medium)
}

.btn-line-medium svg {
    fill: var(--t-medium)
}

.no-touch .btn-line-medium:hover {
    color: var(--t-bright)
}

.no-touch .btn-line-medium:hover svg {
    fill: var(--t-bright)
}

.btn-line-permanent {
    color: var(--nl-white)
}

.btn-line-permanent svg {
    fill: var(--nl-white)
}

.btn-line-opposite {
    color: var(--t-opp-bright)
}

.slide-right:hover i svg,
.slide-right:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 1 both slideRight;
    -moz-animation: .6s var(--_animbezier) 1 both slideRight;
    animation: .6s var(--_animbezier) 1 both slideRight
}

.slide-right-up:hover i svg,
.slide-right-up:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideRightUp;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideRightUp;
    animation: .6s var(--_animbezier) 0s 1 both slideRightUp
}

.slide-right-down:hover i::before {
    -webkit-animation: .6s var(--_animbezier) .3s 1 both slideRightDown;
    -moz-animation: .6s var(--_animbezier) .3s 1 both slideRightDown;
    animation: .6s var(--_animbezier) .3s 1 both slideRightDown
}

.slide-left:hover i svg,
.slide-left:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideLeft;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideLeft;
    animation: .6s var(--_animbezier) 0s 1 both slideLeft
}

.slide-left-up:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideLeftUp;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideLeftUp;
    animation: .6s var(--_animbezier) 0s 1 both slideLeftUp
}

.slide-left-down:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideLeftDown;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideLeftDown;
    animation: .6s var(--_animbezier) 0s 1 both slideLeftDown
}

.slide-down:hover i svg,
.slide-down:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 1 both slideDown;
    -moz-animation: .6s var(--_animbezier) 1 both slideDown;
    animation: .6s var(--_animbezier) 1 both slideDown
}

.slide-up:hover i svg,
.slide-up:hover i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideUp;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideUp;
    animation: .6s var(--_animbezier) 0s 1 both slideUp
}

.anim-no-delay:hover i::before {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-moz-keyframes slideRight {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -moz-transform: translateX(100%);
        transform: translateX(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideRight {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        transform: translateX(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slideRightUp {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-moz-keyframes slideRightUp {
    0% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -moz-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slideRightUp {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(100%) translateY(-100%);
        -moz-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%) translateY(100%);
        -moz-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes slideRightDown {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-moz-keyframes slideRightDown {
    0% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -moz-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slideRightDown {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(100%) translateY(100%);
        -moz-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(-100%) translateY(-100%);
        -moz-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-moz-keyframes slideLeft {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -moz-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideLeft {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes slideLeftUp {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-moz-keyframes slideLeftUp {
    0% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -moz-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slideLeftUp {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-100%) translateY(-100%);
        -moz-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%) translateY(100%);
        -moz-transform: translateX(100%) translateY(100%);
        transform: translateX(100%) translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes slideLeftDown {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-moz-keyframes slideLeftDown {
    0% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -moz-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@keyframes slideLeftDown {
    0% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-100%) translateY(100%);
        -moz-transform: translateX(-100%) translateY(100%);
        transform: translateX(-100%) translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateX(100%) translateY(-100%);
        -moz-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) translateY(0);
        -moz-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0)
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes slideDown {
    0% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(100%);
        transform: translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes slideUp {
    0% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -moz-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    51% {
        opacity: 0
    }

    52% {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0
    }

    53% {
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

.mxd-form-container {
    position: relative
}

.form {
    opacity: 1;
    -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
    -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
    transition: opacity var(--_animspeed-slow) ease-in-out
}

.form.is-hidden {
    opacity: 0
}

form {
    position: relative;
    width: 100%
}

form .mxd-grid-item {
    margin-bottom: 3rem
}

form .mxd-grid-item:last-of-type {
    margin-bottom: 0
}

form input,
form textarea {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    outline: 0;
    margin: 0;
    padding: 1.2rem .2rem;
    background-color: transparent;
    border-bottom: 1px solid var(--st-medium);
    font: normal 400 2rem var(--_font-accent);
    /* height: 5.8rem;
    line-height: 5.8rem; */
    color: var(--t-bright)
}

form input:focus,
form textarea:focus {
    border-bottom: 1px solid var(--st-bright)
}

form textarea {
    height: 16rem;
    line-height: 1.6;
    resize: none
}

form ::-webkit-input-placeholder {
    color: var(--t-medium)
}

form :-moz-placeholder {
    color: var(--t-medium)
}

form ::-moz-placeholder {
    color: var(--t-medium)
}

form :-ms-input-placeholder {
    color: var(--t-medium)
}

form input:focus:required:invalid,
form textarea:focus:required:invalid {
    color: var(--t-bright)
}

form input:required:valid,
form textarea:required:valid {
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    form textarea {
        height: 100%
    }
}

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

    form input,
    form textarea {
        font-size: 14px;
    }
}

.form__reply {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
    -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
    transition: opacity var(--_animspeed-slow) ease-in-out
}

.form__reply.centered {
    position: absolute;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: 400px
}

.form__reply.is-visible {
    opacity: 1
}

.reply__icon {
    display: block;
    font-size: 6rem;
    color: var(--accent);
    margin-bottom: 1.2rem
}

.reply__title {
    font: normal 700 3.4rem/1.2 var(--_font-default);
    letter-spacing: -.06rem;
    color: var(--t-bright);
    margin-bottom: 1.4rem
}

.reply__text {
    display: block;
    font: normal 500 1.8rem/1.6 var(--_font-default);
    color: var(--t-medium)
}

.mxd-header {
    position: absolute;
    top: 0;
    left: 3rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    width: -moz-calc(100% - 11.5rem);
    width: calc(100% - 11.5rem);
    padding-top: 3rem;
    z-index: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
    transition: all var(--_animspeed-medium) var(--_animbezier)
}

.mxd-header.is-hidden {
    -webkit-transform: scaleY(1.3);
    -moz-transform: scaleY(1.3);
    -ms-transform: scaleY(1.3);
    transform: scaleY(1.3);
    opacity: 0
}

@media only screen and (min-width:768px) {
    .mxd-header {
        left: 6rem;
        width: -moz-calc(100% - 17.5rem);
        width: calc(100% - 17.5rem)
    }
}

@media only screen and (min-width:1600px) {
    .mxd-header {
        left: 0;
        width: 100%;
        padding: 10px 50px;
    }
}

.mxd-header-permanent .mxd-color-switcher,
.mxd-header-permanent .mxd-header__link,
.mxd-header-permanent .mxd-logo,
.mxd-header-permanent .mxd-logo__text {
    color: var(--nl-white)
}

.mxd-header__logo {
    position: relative
}

.mxd-logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    color: var(--t-bright)
}

.mxd-logo__image {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    height: 3.6rem;
    fill: currentColor
}

@media only screen and (min-width:768px) {
    .mxd-logo__image {
        height: 4rem
    }
}

.mxd-logo__text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem;
    padding-top: .3rem;
    font: normal 700 1.8rem/.8 var(--_font-accent);
    text-transform: uppercase;
    color: var(--t-bright)
}

.mxd-logo__text span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media only screen and (min-width:768px) {
    .mxd-logo__text {
        gap: .5rem;
        padding-top: .3rem;
        font-size: 2rem;
        font-weight: 600
    }
}

.mxd-header__controls {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: .5rem;
    padding-right: 1.4rem;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-header__controls {
        padding-right: 3.5rem;
        gap: 3.5rem
    }
}

.mxd-header__link {
    width: 3.6rem;
    height: 3.6rem;
    color: var(--t-bright)
}

.mxd-header__link i,
.mxd-header__link span,
.mxd-header__link svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.mxd-header__link i {
    font-size: 2rem;
    overflow: hidden
}

.mxd-header__link svg {
    width: 1.9rem;
    height: 1.9rem;
    fill: currentColor
}

.mxd-header__link .btn-caption {
    display: none
}

@media only screen and (min-width:768px) {
    .mxd-header__link {
        width: auto;
        height: 4rem;
        line-height: 4rem
    }

    .mxd-header__link svg {
        width: 1.6rem;
        height: 1.6rem
    }

    .mxd-header__link .btn-caption {
        display: -webkit-inline-box;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font: normal 700 1.8rem var(--_font-accent);
        text-transform: uppercase;
        letter-spacing: -.05rem;
        white-space: nowrap
    }
}

.mxd-color-switcher {
    gap: 0;
    width: 3.6rem;
    height: 3.6rem;
    color: var(--t-bright)
}

.mxd-color-switcher.permanent {
    color: var(--nl-white)
}

.mxd-color-switcher i,
.mxd-color-switcher span,
.mxd-color-switcher svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.mxd-color-switcher i {
    font-size: 2rem;
    overflow: hidden
}

.mxd-color-switcher svg {
    width: 2.1rem;
    height: 2.1rem;
    fill: currentColor
}

.mxd-color-switcher .switcher-text {
    display: none
}

@media only screen and (min-width:768px) {
    .mxd-color-switcher {
        width: auto;
        height: 4rem;
        line-height: 4rem
    }

    .mxd-color-switcher svg {
        width: 1.9rem;
        height: 1.9rem
    }

    .mxd-color-switcher .switcher-icon {
        -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-color-switcher .switcher-icon.night svg {
        width: 1.7rem;
        height: 1.7rem
    }

    .mxd-color-switcher .switcher-text {
        display: -webkit-inline-box;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font: normal 700 1.8rem var(--_font-accent);
        text-transform: uppercase;
        letter-spacing: -.05rem;
        white-space: nowrap;
        -webkit-transition: color var(--_animspeed-medium);
        -moz-transition: color var(--_animspeed-medium);
        transition: color var(--_animspeed-medium)
    }

    .mxd-color-switcher .switcher-text::after {
        content: "/";
        margin: 0 1rem
    }

    .no-touch .mxd-color-switcher:hover {
        color: var(--t-medium)
    }

    .no-touch .mxd-color-switcher:hover.permanent {
        color: rgba(var(--nl-white-rgb), .7)
    }
}

.mxd-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    pointer-events: none;
    overflow: hidden;
    z-index: 11
}

.mxd-menu__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgba(var(--base-rgb), 0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    pointer-events: none;
    z-index: 0;
    will-change: backdrop-filter, background
}

.mxd-menu__contain {
    position: fixed;
    top: 3rem;
    right: 3rem;
    pointer-events: all;
    z-index: 12;
    /* mix-blend-mode: difference */
}

@media only screen and (min-width:768px) {
    .mxd-menu__contain {
        right: 6rem
    }

}

@media only screen and (min-width:1600px) {
    .mxd-menu__contain {
        right: 10rem
    }
}

.mxd-menu__toggle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.mxd-menu__hamburger {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .8rem;
    width: 5.5rem;
    height: 3.6rem;
    overflow: hidden
}

.mxd-menu__hamburger.active .hamburger__line {
    width: 5rem
}

.mxd-menu__hamburger.active .hamburger__line:nth-child(1) {
    -webkit-transform: translateY(.5rem) rotate(45deg);
    -moz-transform: translateY(.5rem) rotate(45deg);
    -ms-transform: translateY(.5rem) rotate(45deg);
    transform: translateY(.5rem) rotate(45deg)
}

.mxd-menu__hamburger.active .hamburger__line:nth-child(2) {
    -webkit-transform: translateY(-.5rem) rotate(-45deg);
    -moz-transform: translateY(-.5rem) rotate(-45deg);
    -ms-transform: translateY(-.5rem) rotate(-45deg);
    transform: translateY(-.5rem) rotate(-45deg)
}

@media only screen and (min-width:768px) {
    .mxd-menu__hamburger {
        height: 4rem
    }
}

.hamburger__line {
    position: relative;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: .2rem;
    background-color: var(--nl-white);
    z-index: 2;
    -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
    transition: all var(--_animspeed-medium) var(--_animbezier);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    will-change: transform
}

.mxd-menu__content,
.mxd-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    z-index: 1
}

.mxd-menu__overlay {
    background-color: #0f0f0f59;
}

.mxd-menu__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    will-change: transform;
    pointer-events: all
}

.mxd-menu__media {
    display: none;
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    will-change: transform;
    overflow: hidden
}

.mxd-menu__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-menu__media video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
}

@media only screen and (min-width:1200px) {
    .mxd-menu__media {
        display: block;
        z-index: 1
    }
}

.menu-media__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform
}

.menu-media__wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.menu-media__wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
}

.mxd-menu__logo {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 9
}

.mxd-menu__logo a img {
    width: 130px;
}

@media only screen and (min-width:768px) {
    .mxd-menu__logo {
        left: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-menu__logo {
        z-index: 2
    }

}

@media only screen and (min-width:1600px) {
    .mxd-menu__logo {
        left: 10rem
    }
}

.menu-logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .menu-logo {
        color: var(--nl-white)
    }
}

.menu-logo__image {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    height: 3.6rem;
    fill: currentColor
}

@media only screen and (min-width:768px) {
    .menu-logo__image {
        height: 4rem
    }
}

.menu-logo__text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem;
    padding-top: .3rem;
    font: normal 700 1.8rem/.8 var(--_font-accent);
    text-transform: uppercase;
    color: var(--t-bright)
}

.menu-logo__text span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media only screen and (min-width:768px) {
    .menu-logo__text {
        gap: .5rem;
        padding-top: .3rem;
        font-size: 2rem;
        font-weight: 600
    }
}

.mxd-menu__logo .menu-logo {
    mix-blend-mode: difference;
    color: var(--t-opp-bright)
}

.mxd-menu__logo .menu-logo svg {
    fill: var(--t-opp-bright)
}

.mxd-menu__logo .menu-logo__text {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:1200px) {
    .mxd-menu__logo .menu-logo {
        color: var(--nl-white)
    }

    .mxd-menu__logo .menu-logo svg {
        fill: var(--nl-white)
    }

    .mxd-menu__logo .menu-logo__text {
        color: var(--nl-white)
    }
}

.mxd-menu__navigation {
    -webkit-box-flex: 3;
    -moz-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100%
}

.mxd-menu__inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10rem 3rem 0 3rem;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none
}

.mxd-menu__inner::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none !important;
    width: 0 !important;
    height: 0
}

@media only screen and (min-width:768px) {
    .mxd-menu__inner::-webkit-scrollbar {
        display: none;
        width: 0 !important
    }
}

@media only screen and (min-width:768px) {
    .mxd-menu__inner {
        padding: 0;
    }
}

@media only screen and (min-width:1200px) {
    .mxd-menu__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 0;
        overflow: hidden
    }
}

@media only screen and (min-width:1600px) {
    .mxd-menu__inner {
        padding: 0;
    }
}

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

    .menu-data__left,
    .mxd-menu__left {
        width: 66.67%;
        padding-right: 3rem
    }
}

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

    .menu-data__left,
    .mxd-menu__left {
        padding-right: 5rem
    }
}

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

    .menu-data__right,
    .mxd-menu__right {
        width: 33.33%;
        padding-left: 3rem
    }
}

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

    .menu-data__right,
    .mxd-menu__right {
        padding-left: 5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-menu__left {
        height: 100%;
        max-height: 100%;
        overflow-y: scroll;
        overscroll-behavior-y: contain;
        scrollbar-width: none
    }

    .mxd-menu__left::-webkit-scrollbar {
        display: none;
        -webkit-appearance: none !important;
        width: 0 !important;
        height: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-menu__right {
        padding-top: 10rem
    }
}

.mxd-menu__caption {
    margin-bottom: 7.5rem;
    z-index: 3
}

.mxd-menu__caption p {
    font: normal 500 1.4rem/1.4 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-opp-medium)
}

@media only screen and (min-width:1200px) {
    .mxd-menu__caption {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 10rem;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
        padding: 0 6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-menu__caption {
        padding: 0 10rem
    }
}

.main-menu {
    position: relative
}



@media only screen and (min-width:1600px) {
    .main-menu {
        padding-top: 30px
    }
}

.main-menu__accordion {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.main-menu__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    color: var(--t-opp-bright);
    padding: 2.2rem 0 2.9rem 0
}

.main-menu__item.open .main-menu__toggle svg {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.no-touch .main-menu__item.open .main-menu__toggle:hover .main-menu__caption {
    color: var(--t-opp-bright)
}

.main-menu__item.open .main-menu__caption {
    color: var(--t-opp-medium)
}

@media only screen and (min-width:768px) {
    .main-menu__item {
        padding: 2.2rem 0 2.9rem 0
    }
}

@media only screen and (min-width:1600px) {
    .main-menu__item {
        padding: 2.7rem 0 3.4rem 0
    }
}

.main-menu__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-opp-muted)
}

.main-menu__divider.divider-top {
    top: 0
}

.main-menu__divider.divider-bottom {
    bottom: 0
}

.main-menu__toggle {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

.main-menu__toggle img,
.main-menu__toggle svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.7rem;
    height: 1.7rem;
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.main-menu__toggle svg {
    fill: currentColor
}

.no-touch .main-menu__toggle:hover .main-menu__caption {
    color: var(--t-opp-medium)
}

.no-touch .main-menu__toggle:hover svg {
    fill: var(--t-opp-bright)
}

.main-menu__link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.6rem
}

@media only screen and (min-width:768px) {
    .main-menu__link {
        gap: 2.2rem
    }
}

@media only screen and (min-width:1200px) {
    .main-menu__link .line-mask {
        padding-bottom: 5px;
        margin-bottom: -5px
    }
}

@media only screen and (min-width:1600px) {
    .main-menu__link .line-mask {
        padding-bottom: 7px;
        margin-bottom: -7px
    }
}

.main-menu__number {
    font: normal 500 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-opp-medium)
}

.main-menu__caption {
    font: normal 700 3.4rem/1 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .main-menu__caption {
        font-size: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .main-menu__caption {
        -webkit-transition: color var(--_animspeed-medium);
        -moz-transition: color var(--_animspeed-medium);
        transition: color var(--_animspeed-medium)
    }
}

@media only screen and (min-width:1600px) {
    .main-menu__caption {
        font-size: 30px;
    }
}

.main-menu__arrow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    overflow: hidden
}

.submenu {
    position: relative;
    padding-top: 2.1rem;
    padding-left: 4.6rem;
    display: none
}

@media only screen and (min-width:768px) {
    .submenu {
        padding-left: 5.2rem;
        padding-bottom: .2rem
    }
}

@media only screen and (min-width:1600px) {
    .submenu {
        padding-top: 2.7rem;
        padding-left: 5.3rem
    }
}

.submenu__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.4rem
}

.submenu__item:last-of-type {
    margin-bottom: 0
}

.submenu__item a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    font: normal 500 1.8rem/1.2 var(--_font-default);
    color: var(--t-opp-bright);
    padding-left: 0
}

.no-touch .submenu__item a:hover {
    color: var(--t-opp-medium)
}

.submenu__item.active a {
    text-decoration: underline
}

@media only screen and (min-width:1600px) {
    .submenu__item {
        margin-bottom: 1.6rem
    }

    .submenu__item a {
        font-size: 2rem
    }
}

.menu-contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.8rem;
    margin-top: 7.4rem
}

@media only screen and (min-width:1200px) {
    .menu-contact {
        margin-top: 0;
        padding-top: 4rem
    }
}

@media only screen and (min-width:1600px) {
    .menu-contact {
        padding-top: 5.8rem
    }
}

.menu-contact__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.menu-contact__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .2rem
}

.menu-contact__list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.menu-contact__list li a {
    color: var(--t-opp-medium)
}

.no-touch .menu-contact__list li a:hover {
    color: var(--t-opp-bright) !important
}

.mxd-menu__shadow {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--base-opp-rgb), 0)), color-stop(80%, rgba(var(--base-opp-rgb), 1)), to(rgba(var(--base-opp-rgb), 1)));
    background: -moz-linear-gradient(top, rgba(var(--base-opp-rgb), 0) 0, rgba(var(--base-opp-rgb), 1) 80%, rgba(var(--base-opp-rgb), 1) 100%);
    background: linear-gradient(to bottom, rgba(var(--base-opp-rgb), 0) 0, rgba(var(--base-opp-rgb), 1) 80%, rgba(var(--base-opp-rgb), 1) 100%);
    z-index: 2
}

.mxd-menu__shadow.shadow-top {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 14rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--base-opp-rgb), 1)), color-stop(20%, rgba(var(--base-opp-rgb), 1)), to(rgba(var(--base-opp-rgb), 0)));
    background: -moz-linear-gradient(top, rgba(var(--base-opp-rgb), 1) 0, rgba(var(--base-opp-rgb), 1) 20%, rgba(var(--base-opp-rgb), 0) 100%);
    background: linear-gradient(to bottom, rgba(var(--base-opp-rgb), 1) 0, rgba(var(--base-opp-rgb), 1) 20%, rgba(var(--base-opp-rgb), 0) 100%)
}

@media only screen and (min-width:1200px) {
    .mxd-menu__shadow {
        display: block
    }

    .mxd-menu__shadow.shadow-top {
        position: absolute;
        top: 0;
        left: 0
    }
}

.mxd-menu__data {
    padding: 2.8rem 0 3rem 0
}

@media only screen and (min-width:768px) {
    .mxd-menu__data {
        padding: 2.8rem 0 6rem 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-menu__data {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 3rem 6rem;
        overflow: hidden;
        z-index: 3
    }
}

@media only screen and (min-width:1600px) {
    .mxd-menu__data {
        padding: 3rem 10rem
    }
}

@media only screen and (min-width:1200px) {
    .menu-data__right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.menu-data__text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem;
    font: normal 500 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-opp-medium);
    overflow: hidden
}

.menu-data__text a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font: normal 500 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-opp-bright)
}

.no-touch .menu-data__text a:hover {
    color: var(--t-medium)
}

.menu-data__text span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.menu-data__text svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-opp-medium)
}

.mxd-footer {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: var(--base);
    overflow: hidden
}

.mxd-footer.opposite {
    background-color: var(--base-opp)
}

.mxd-footer__controls-middle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 2.8rem
}

.mxd-footer__controls-middle.caption-small {
    margin-bottom: 2.6rem
}

.mxd-footer__controls-middle.controls-landing {
    margin-top: 8.8rem;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media only screen and (min-width:768px) {
    .mxd-footer__controls-middle {
        margin-bottom: 2.9rem
    }

    .mxd-footer__controls-middle.controls-landing {
        margin-top: 16.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-footer__controls-middle {
        margin-top: 17.3rem
    }

    .mxd-footer__controls-middle.controls-landing {
        margin-top: 17.3rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-footer__controls-middle.controls-landing {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 16.8rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__controls-middle {
        margin-top: 19.2rem
    }

    .mxd-footer__controls-middle.caption-small {
        margin-bottom: 2.1rem
    }

    .mxd-footer__controls-middle.controls-landing {
        margin-top: 18.8rem
    }
}

.mxd-footer__data {
    position: relative;
    padding: 3.8rem 0 3.8rem 0
}

.mxd-footer__data.caption-small {
    padding: 3.6rem 0 3.8rem 0
}

@media only screen and (min-width:768px) {
    .mxd-footer__data {
        padding: 3.7rem 0 3.7rem 0
    }

    .mxd-footer__data.caption-small {
        padding: 3.4rem 0 3.8rem 0
    }
}

@media only screen and (min-width:992px) {
    .mxd-footer__data.caption-small {
        padding: 3.2rem 0 3.8rem 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-footer__data {
        padding: 3.3rem 0 3.4rem 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__data {
        padding: 3.3rem 0 3.4rem 0
    }

    .mxd-footer__data.caption-small {
        padding: 2.7rem 0 3.8rem 0
    }
}

.mxd-footer__data-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (min-width:1200px) {
    .mxd-footer__data-item.justify-end {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.mxd-footer__footer-blocks {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-footer__footer-blocks.bottom-blocks {
    padding: 0 0 3.6rem 0
}

@media only screen and (min-width:1200px) {
    .mxd-footer__footer-blocks {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 6rem
    }

    .mxd-footer__footer-blocks.bottom-blocks {
        padding: 3.3rem 0 3.6rem 0
    }
}

.footer-blocks__column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.footer-blocks__column.justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.footer-blocks__column.justify-end {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

@media only screen and (min-width:1200px) {
    .footer-blocks__column {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .footer-blocks__column.justify-start {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer-blocks__column.justify-end {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: right
    }
}

.footer-blocks__controls {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.1rem
}

@media only screen and (min-width:1200px) {
    .footer-blocks__controls {
        margin-top: 0
    }
}

.footer-blocks__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .2rem;
    margin-bottom: 3.2rem
}

@media only screen and (min-width:768px) {
    .footer-blocks__data {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 3.2rem
    }
}

.mxd-footer__fw-mark {
    position: relative
}

.fw-mark__wrap {
    container-type: inline-size;
    padding-top: .7rem
}

.fw-mark__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 28cqw;
    line-height: .746
}

.fw-mark__content span {
    font-style: normal;
    font-weight: 500;
    line-height: .746;
    font-family: var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: normal;
    color: var(--t-bright);
    white-space: nowrap
}

.fw-mark__content .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.fw-mark__content.opposite span {
    color: var(--t-opp-bright)
}

.fw-mark__content.small {
    font-size: 19.3cqw
}

.fw-mark__content.small span {
    letter-spacing: -.2cqw;
    line-height: .8;
    margin-left: -1.2cqw
}

@media only screen and (min-width:992px) {
    .fw-mark__content {
        font-size: 28cqw
    }
}

.footer-blocks__nav-v01 {
    position: relative;
    width: 100%
}

@media only screen and (min-width:768px) {
    .footer-blocks__nav-v01 {
        margin-bottom: 15.4rem
    }
}

@media only screen and (min-width:1200px) {
    .footer-blocks__nav-v01 {
        margin-bottom: 16.4rem
    }
}

@media only screen and (min-width:1600px) {
    .footer-blocks__nav-v01 {
        margin-bottom: 18.4rem
    }
}

.footer-nav-v01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.6rem 0 2.9rem 0
}

@media only screen and (min-width:768px) {
    .footer-nav-v01 {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 3.6rem 0 0 0
    }
}

.footer-nav-v01__item {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    overflow: hidden
}

.footer-nav-v01__item a {
    display: block;
    color: var(--t-bright)
}

.footer-nav-v01__item a.opposite {
    color: var(--t-opp-bright)
}

.footer-nav-v01__item a span {
    display: inline-block;
    font: normal 600 2.2rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.mxd-footer__nav02 {
    position: relative;
    width: 100%;
    padding-top: 13.4rem
}

@media only screen and (min-width:768px) {
    .mxd-footer__nav02 {
        padding-top: 16.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-footer__nav02 {
        padding-top: 17.4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__nav02 {
        padding-top: 19.4rem
    }
}

.mxd-footer__socials-list {
    position: relative;
    width: 100%;
    padding-bottom: 8.7rem
}

@media only screen and (min-width:768px) {
    .mxd-footer__socials-list {
        padding-top: 4.6rem;
        padding-bottom: 16.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-footer__socials-list {
        padding-top: 17.4rem;
        padding-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__socials-list {
        padding-top: 19.4rem;
        padding-bottom: 0
    }
}

.mxd-footer-nav02__block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 4.6rem
}

@media only screen and (min-width:768px) {
    .mxd-footer-nav02__block:last-of-type {
        margin-bottom: 0
    }
}

.mxd-footer-nav02__list ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem
}

.mxd-footer-nav02__list ul li {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.mxd-footer-nav02__list ul li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-fast) ease-in-out;
    -moz-transition: color var(--_animspeed-fast) ease-in-out;
    transition: color var(--_animspeed-fast) ease-in-out
}

.mxd-footer-nav02__list ul li a i,
.mxd-footer-nav02__list ul li a span,
.mxd-footer-nav02__list ul li a svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.mxd-footer-nav02__list ul li a i {
    font-size: 1.8rem;
    overflow: hidden
}

.mxd-footer-nav02__list ul li a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-bright)
}

.mxd-footer-nav02__list.small ul li a {
    font-size: 1.8rem
}

@media only screen and (min-width:1200px) {
    .no-touch .mxd-footer-nav02__list ul li a:hover {
        color: var(--t-medium)
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-footer-nav02__list>.socials-list__item {
        -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-footer-nav02__list:hover>.socials-list__item:not(:hover) {
        opacity: .3
    }

    .mxd-footer-nav02__list:hover>.socials-list__item:not(:hover) .socials-list__arrow,
    .mxd-footer-nav02__list:hover>.socials-list__item:not(:hover) .socials-list__info {
        scale: .964;
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }
}

.socials-list__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 2.5rem .2rem 2.7rem .2rem;
    margin-top: -.1rem;
    -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium) var(--_animbezier)
}

.socials-list__item:first-of-type {
    margin-top: .5rem
}

.socials-list__item.no-margin:first-of-type {
    margin-top: 0
}

.socials-list__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-medium)
}

.socials-list__divider.accent {
    background-color: var(--pt-t-accent-medium)
}

.socials-list__divider.divider-top {
    top: 0
}

.socials-list__divider.divider-bottom {
    bottom: 0
}

.socials-list__arrow {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.socials-list__arrow i,
.socials-list__arrow span,
.socials-list__arrow svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.socials-list__arrow i {
    font-size: 1.8rem;
    overflow: hidden
}

.socials-list__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-bright)
}

.socials-list__arrow.accent svg {
    fill: var(--pt-t-accent-bright)
}

.socials-list__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem
}

.socials-list__number {
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.socials-list__number.accent {
    color: var(--pt-t-accent-medium)
}

.socials-list__name {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.03rem;
    color: var(--t-bright);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.socials-list__name.accent {
    color: var(--pt-t-accent-bright)
}

.footer-blocks__socials {
    position: relative;
    margin-top: 3.5rem
}

@media only screen and (min-width:1200px) {
    .footer-blocks__socials {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0
    }
}

.inner-headline {
    position: relative;
    width: 100%;
    padding-top: 3rem
}

.inner-headline.fullheight {
    height: 100svh;
    padding-top: 9.3rem
}

.inner-headline.margin-bottom-subtitle,
.inner-headline.margin-bottom-tags-m,
.inner-headline.margin-bottom-title-medium {
    margin-bottom: 7.4rem
}

.inner-headline.margin-bottom-details {
    margin-bottom: 3.8rem
}

@media only screen and (min-width:768px) {
    .inner-headline.fullheight {
        padding-top: 10rem
    }

    .inner-headline.margin-bottom-subtitle,
    .inner-headline.margin-bottom-title-medium {
        margin-bottom: 13.4rem
    }

    .inner-headline.margin-bottom-tags-m {
        margin-bottom: 13.4rem
    }

    .inner-headline.margin-bottom-details {
        margin-bottom: 5.4rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline.margin-bottom-title-medium {
        margin-bottom: 12rem
    }

    .inner-headline.margin-bottom-subtitle,
    .inner-headline.margin-bottom-tags-m {
        margin-bottom: 13rem
    }

    .inner-headline.margin-bottom-details {
        margin-bottom: 4.9rem
    }
}

.inner-headline__absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.inner-headline__centered {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: 0 3rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width:768px) {
    .inner-headline__centered {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1600px) {
    .inner-headline__centered {
        width: 1400px
    }
}

.inner-headline__dataline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 3rem
}

.headline-dataline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem
}

@media only screen and (min-width:1200px) {
    .headline-dataline {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 6rem
    }
}

.inner-headline__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1
}

.inner-headline__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.inner-headline__bg video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.inner-headline__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nl-black-04)
}

.inner-headline__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 4rem
}

@media only screen and (min-width:768px) {
    .inner-headline__bottom {
        padding-bottom: 5.5rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__bottom {
        padding-bottom: 4rem
    }
}

@media only screen and (min-width:1600px) {
    .inner-headline__bottom {
        padding-bottom: 8rem
    }
}

.inner-headline__content.has-medium-title {
    padding-top: 12.2rem
}

.inner-headline__content.has-large-title {
    padding-top: 11.7rem
}

@media only screen and (min-width:768px) {
    .inner-headline__content.has-medium-title {
        padding-top: 17.7rem
    }

    .inner-headline__content.has-large-title {
        padding-top: 16.3rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__content.has-medium-title {
        padding-top: 16.9rem
    }

    .inner-headline__content.has-large-title {
        padding-top: 15.3rem
    }
}

@media only screen and (min-width:1400px) {
    .inner-headline__content.has-large-title {
        padding-top: 14.7rem
    }
}

@media only screen and (min-width:1600px) {
    .inner-headline__content.has-large-title {
        padding-top: 14.3rem
    }
}

.inner-headline__link {
    position: relative;
    margin-bottom: 1.5rem
}

@media only screen and (min-width:768px) {
    .inner-headline__link {
        margin-bottom: 1.9rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__link {
        margin-bottom: 2.5rem
    }
}

.inner-headline__title.centered {
    text-align: center
}

.inner-headline__title.no-sup {
    padding-top: .6rem
}

.inner-headline__title.pre-subtitle-medium {
    margin-bottom: 2.3rem
}

.inner-headline__title.pre-subtitle-large {
    margin-bottom: 2.3rem
}

.inner-headline__title.banners-hover a {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .inner-headline__title.no-sup {
        padding-top: .8rem
    }

    .inner-headline__title.pre-subtitle-medium {
        margin-bottom: 3.1rem
    }

    .inner-headline__title.pre-subtitle-large {
        margin-bottom: 2.4rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__title.pre-subtitle-medium {
        margin-bottom: 2.1rem
    }

    .inner-headline__title.pre-subtitle-large {
        margin-bottom: 1.5rem
    }
}

@media only screen and (min-width:1400px) {
    .inner-headline__title.pre-subtitle-large {
        margin-bottom: 1rem
    }
}

@media only screen and (min-width:1600px) {
    .inner-headline__title.no-sup {
        padding-top: 1.3rem
    }

    .inner-headline__title.centered {
        max-width: 1400px
    }

    .inner-headline__title.pre-subtitle-large {
        margin-bottom: .8rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__trigger {
        text-decoration: none;
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(var(--t-medium)), to(var(--t-medium)));
        background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), -moz-linear-gradient(left, var(--t-medium), var(--t-medium));
        background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, var(--t-medium), var(--t-medium));
        -moz-background-size: 100% 3px, 0 3px;
        background-size: 100% 3px, 0 3px;
        background-position: 100% 100%, 0 90%;
        background-repeat: no-repeat;
        -webkit-transition: background-size var(--_animspeed-slow), color var(--_animspeed-slow);
        -moz-transition: background-size var(--_animspeed-slow), color var(--_animspeed-slow), -moz-background-size var(--_animspeed-slow);
        transition: background-size var(--_animspeed-slow), color var(--_animspeed-slow);
        transition: background-size var(--_animspeed-slow), color var(--_animspeed-slow), -moz-background-size var(--_animspeed-slow)
    }

    .no-touch .inner-headline__trigger:hover {
        -moz-background-size: 0 3px, 100% 3px;
        background-size: 0 3px, 100% 3px
    }
}

.inner-headline__subtitle a,
.inner-headline__subtitle p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.inner-headline__subtitle a span,
.inner-headline__subtitle p span {
    color: var(--t-medium)
}

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

    .inner-headline__subtitle a,
    .inner-headline__subtitle p {
        font-size: 3.4rem
    }
}

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

    .inner-headline__subtitle a,
    .inner-headline__subtitle p {
        font-size: 4.4rem
    }
}

.inner-headline__columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 385px;
    padding-top: 3.3rem
}

.inner-headline__columns .tags-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:768px) {
    .inner-headline__columns {
        gap: 6rem;
        padding-top: 4.4rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__columns {
        padding-bottom: .4rem
    }
}

.inner-headline__btngroup,
.inner-headline__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.inner-headline__btngroup.tags-medium-title,
.inner-headline__tags.tags-medium-title {
    padding-top: 3rem
}

.inner-headline__btngroup.tags-large-subtitle,
.inner-headline__tags.tags-large-subtitle {
    padding-top: 3.3rem
}

.inner-headline__btngroup.align-end-desktop,
.inner-headline__tags.align-end-desktop {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

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

    .inner-headline__btngroup.tags-medium-title,
    .inner-headline__tags.tags-medium-title {
        padding-top: 4rem
    }

    .inner-headline__btngroup.tags-large-subtitle,
    .inner-headline__tags.tags-large-subtitle {
        padding-top: 4.5rem
    }
}

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

    .inner-headline__btngroup,
    .inner-headline__tags {
        height: 100%;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .inner-headline__btngroup.tags-medium-title,
    .inner-headline__tags.tags-medium-title {
        padding-top: 0;
        padding-bottom: 1.4rem
    }

    .inner-headline__btngroup.tags-large-subtitle,
    .inner-headline__tags.tags-large-subtitle {
        padding-bottom: .4rem
    }

    .inner-headline__btngroup.align-end-desktop,
    .inner-headline__tags.align-end-desktop {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.inner-headline__tags {
    gap: .2rem
}

.inner-headline__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.inner-headline__caption.split-caption {
    padding-top: 2.8rem
}

.inner-headline__caption.split-caption-title {
    padding-top: 2.5rem
}

.inner-headline__caption.pre-grid {
    margin-bottom: 7.3rem
}

.inner-headline__caption.pre-form {
    margin-bottom: 4.8rem
}

@media only screen and (min-width:768px) {
    .inner-headline__caption.split-caption {
        padding-top: 4.2rem
    }

    .inner-headline__caption.split-caption-title {
        padding-top: 3.5rem
    }

    .inner-headline__caption.pre-grid {
        margin-bottom: 9.3rem
    }

    .inner-headline__caption.pre-form {
        margin-bottom: 6.8rem
    }
}

@media only screen and (min-width:1200px) {
    .inner-headline__caption.split-caption {
        padding-top: 2rem
    }

    .inner-headline__caption.split-caption-title {
        padding-top: 2rem
    }
}

@media only screen and (min-width:1600px) {
    .inner-headline__caption.split-caption {
        padding-top: 1.8rem
    }

    .inner-headline__caption.split-caption-title {
        padding-top: 1.8rem
    }
}

.headline-banner-01,
.headline-banner-02 {
    position: absolute;
    overflow: hidden;
    pointer-events: none;
    display: none
}

.headline-banner-01 img,
.headline-banner-02 img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

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

    .headline-banner-01,
    .headline-banner-02 {
        display: block
    }

    .headline-banner-01.landscape,
    .headline-banner-02.landscape {
        width: 28rem;
        height: 21rem
    }

    .headline-banner-01.portrait,
    .headline-banner-02.portrait {
        width: 24.8rem;
        height: 31rem
    }

    .headline-banner-01.image-01,
    .headline-banner-02.image-01 {
        top: -6rem;
        left: -8rem
    }

    .headline-banner-01.image-02,
    .headline-banner-02.image-02 {
        bottom: -8rem;
        left: 29rem
    }

    .headline-banner-01.image-03,
    .headline-banner-02.image-03 {
        top: -6rem;
        right: 29rem
    }

    .headline-banner-01.image-04,
    .headline-banner-02.image-04 {
        bottom: -4rem;
        right: -7rem
    }

    .headline-banner-01.image-05,
    .headline-banner-02.image-05 {
        top: -8rem;
        left: -8rem
    }

    .headline-banner-01.image-06,
    .headline-banner-02.image-06 {
        bottom: -7rem;
        left: 35rem
    }

    .headline-banner-01.image-07,
    .headline-banner-02.image-07 {
        top: -7rem;
        right: 30rem
    }

    .headline-banner-01.image-08,
    .headline-banner-02.image-08 {
        bottom: -5rem;
        right: -7rem
    }
}

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

    .headline-banner-01.landscape,
    .headline-banner-02.landscape {
        width: 32rem;
        height: 24rem
    }

    .headline-banner-01.portrait,
    .headline-banner-02.portrait {
        width: 28rem;
        height: 35rem
    }

    .headline-banner-01.image-01,
    .headline-banner-02.image-01 {
        top: -10rem;
        left: -14rem
    }

    .headline-banner-01.image-02,
    .headline-banner-02.image-02 {
        bottom: -10rem;
        left: 27rem
    }

    .headline-banner-01.image-03,
    .headline-banner-02.image-03 {
        top: -7rem;
        right: 27rem
    }

    .headline-banner-01.image-04,
    .headline-banner-02.image-04 {
        bottom: -8rem;
        right: -14rem
    }

    .headline-banner-01.image-05,
    .headline-banner-02.image-05 {
        top: -10rem;
        left: -12rem
    }

    .headline-banner-01.image-06,
    .headline-banner-02.image-06 {
        bottom: -10rem;
        left: 30rem
    }

    .headline-banner-01.image-07,
    .headline-banner-02.image-07 {
        top: -7rem;
        right: 30rem
    }

    .headline-banner-01.image-08,
    .headline-banner-02.image-08 {
        bottom: -8rem;
        right: -14rem
    }
}

.mxd-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.mxd-error__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-error__dataline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem 0;
    text-align: center
}

@media only screen and (min-width:992px) {
    .mxd-error__dataline {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left
    }
}

.mxd-error__dataitem span {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap
}

.mxd-error__dataitem i {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 .7rem
}

.mxd-error__dataitem i svg {
    display: block;
    width: 100%;
    fill: var(--t-bright)
}

.mxd-error__dataitem a {
    font-size: 1.4rem;
    margin-left: .7rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium);
    -moz-transition: color var(--_animspeed-medium);
    transition: color var(--_animspeed-medium)
}

.no-touch .mxd-error__dataitem a:hover {
    color: var(--t-medium)
}

.mxd-error__content {
    position: relative
}

.mxd-error__caption,
.mxd-error__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mxd-error__caption {
    text-align: center
}

.mxd-error__caption p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright);
    margin-bottom: 2.9rem
}

.mxd-error__caption p span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-error__caption p {
        font-size: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-error__caption p {
        margin-bottom: 2.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-error__caption p {
        font-size: 4.4rem;
        margin-bottom: 2.6rem
    }
}

.mxd-error__number {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-bottom: .9rem
}

.mxd-error__number span {
    position: relative;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font: normal 600 16rem/.9 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright)
}

.mxd-error__number span:nth-of-type(1),
.mxd-error__number span:nth-of-type(3) {
    z-index: 2
}

.mxd-error__number span:nth-of-type(2) {
    z-index: 4
}

@media only screen and (min-width:768px) {
    .mxd-error__number {
        margin-bottom: 4.2rem
    }

    .mxd-error__number span {
        font-size: 28rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-error__number {
        margin-bottom: 3.7rem
    }

    .mxd-error__number span {
        font-size: 36rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-error__number {
        margin-bottom: 3.4rem
    }

    .mxd-error__number span {
        font-size: 36rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-error__number {
        margin-bottom: 2rem
    }

    .mxd-error__number span {
        font-size: 46rem
    }
}

.mxd-error__image {
    position: absolute
}

.mxd-error__image.image-1 {
    width: 180px;
    height: 75px;
    top: 0;
    left: -13rem;
    z-index: 5
}

.mxd-error__image.image-2 {
    width: 116px;
    height: 140px;
    bottom: 1rem;
    left: 5.6rem;
    z-index: 3
}

.mxd-error__image.image-3 {
    width: 100px;
    height: 82px;
    top: 1rem;
    right: 5rem;
    z-index: 3
}

.mxd-error__image.image-4 {
    width: 100px;
    height: 58px;
    bottom: 0;
    right: -7.5rem;
    z-index: 5
}

.mxd-error__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

@media only screen and (min-width:768px) {
    .mxd-error__image.image-1 {
        width: 240px;
        height: 100px;
        top: 2rem;
        left: -15rem
    }

    .mxd-error__image.image-2 {
        width: 167px;
        height: 200px;
        bottom: 1.5rem;
        left: 10.8rem
    }

    .mxd-error__image.image-3 {
        width: 160px;
        height: 132px;
        top: 1rem;
        right: 8.5rem
    }

    .mxd-error__image.image-4 {
        width: 140px;
        height: 58px;
        bottom: 1rem;
        right: -9rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-error__image.image-1 {
        width: 300px;
        height: 125px;
        top: 3rem;
        left: -20rem
    }

    .mxd-error__image.image-2 {
        width: 209px;
        height: 250px;
        bottom: 2rem;
        left: 13.6rem
    }

    .mxd-error__image.image-3 {
        width: 200px;
        height: 165px;
        top: 1rem;
        right: 10.5rem
    }

    .mxd-error__image.image-4 {
        width: 200px;
        height: 84px;
        bottom: 1rem;
        right: -14rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-error__image.image-1 {
        width: 378px;
        height: 158px;
        top: 5rem;
        left: -24rem
    }

    .mxd-error__image.image-2 {
        width: 281px;
        height: 336px;
        bottom: 2.5rem;
        left: 17.2rem
    }

    .mxd-error__image.image-3 {
        width: 245px;
        height: 202px;
        top: 1rem;
        right: 14rem
    }

    .mxd-error__image.image-4 {
        width: 240px;
        height: 100px;
        bottom: 1rem;
        right: -16rem
    }
}

.mxd-hero-section {
    padding-top: 6.3rem
}

.mxd-hero-section.no-padding {
    padding-top: 0
}

.mxd-hero-section.no-padding-desktop {
    padding-top: 6.6rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-section {
        padding-top: 7rem
    }

    .mxd-hero-section.no-padding-desktop {
        padding-top: 7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-section.no-padding-desktop {
        padding-top: 0
    }
}

.mxd-hero-fullheight {
    height: 100vh;
    height: -moz-calc(var(--vh) * 100);
    height: calc(var(--vh) * 100)
}

@media only screen and (min-width:1200px) {
    .mxd-hero-fullheight {
        height: 100vh
    }
}

.mxd-hero-fullheight-desktop {
    height: auto
}

@media only screen and (min-width:1200px) {
    .mxd-hero-fullheight-desktop {
        height: 100vh
    }
}

.mxd-hero-special {
    height: auto
}

@media only screen and (min-width:1200px) {
    .mxd-hero-special {
        height: -moz-calc(100vh - 6rem);
        height: calc(100vh - 6rem)
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-special {
        height: -moz-calc(100vh - 10rem);
        height: calc(100vh - 10rem)
    }
}

.mxd-hero-01 {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 6.6rem;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    background-size: cover
}

@media only screen and (min-width:768px) {
    .mxd-hero-01 {
        height: 100vh;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-top: 7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-01 {
        height: 100vh;
        min-height: 667px;
        padding-top: 0
    }
}

.mxd-hero-01__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nl-black-04)
}

.mxd-hero-01__wrap {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__wrap {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-01__wrap {
        padding: 0 10rem
    }
}

.mxd-hero-01__top {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 13.6rem;
    margin-bottom: 5.3rem;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__top {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 6rem;
        margin-bottom: 0
    }
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__top {
        padding-bottom: 5.3rem
    }
}

.mxd-hero-01__data-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 5.3rem
}

.mxd-hero-01__data-wrap ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.mxd-hero-01__data-wrap ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-hero-01__data-wrap ul li a {
    color: var(--nl-white)
}

.no-touch .mxd-hero-01__data-wrap ul li a:hover {
    color: var(--nl-white-06) !important
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__data-wrap {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0
    }
}

.mxd-hero-01__data-tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 385px;
    margin-bottom: 2.5rem
}

.mxd-hero-01__data-tags .tags-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__data-tags {
        gap: 6rem;
        margin-bottom: 0
    }
}

.mxd-hero-01__data-contact ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.mxd-hero-01__data-contact ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-hero-01__data-contact ul li a {
    color: var(--nl-white)
}

.no-touch .mxd-hero-01__data-contact ul li a:hover {
    color: var(--nl-white-06) !important
}

.mxd-hero-01__video-wrap {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    max-width: 38.5rem
}

.mxd-hero-01__video-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-01__video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__video-wrap {
        -ms-flex-preferred-size: 34.5rem;
        flex-basis: 34.5rem;
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        height: 24.6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-01__video-wrap {
        -ms-flex-preferred-size: 38.5rem;
        flex-basis: 38.5rem;
        height: 27.5rem
    }
}

.mxd-hero-01__video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-01__video-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1rem
}

.mxd-hero-01__bottom {
    position: relative;
    z-index: 1;
    mix-blend-mode: difference;
    padding-bottom: 6.2rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__bottom {
        padding-bottom: 0
    }
}

.mxd-hero-01__caption {
    margin-bottom: -.3rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-01__caption {
        margin-bottom: -.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-01__caption {
        margin-bottom: -.6rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-01__caption {
        margin-bottom: -.8rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-01__caption {
        margin-bottom: -1rem
    }
}

.mxd-hero-02 {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    width: 100%;
    height: 100svh;
    height: -moz-calc(var(--vh) * 100);
    height: calc(var(--vh) * 100);
    padding: 2rem;
    overflow: hidden
}

.mxd-hero-02__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-hero-02__background video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    padding-bottom: 0;
    padding-right: 0
}

.mxd-hero-02__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--nl-black-rgb), .4);
    mix-blend-mode: multiply
}

.mxd-hero-02__cover-img,
.mxd-hero-02__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px
}

.hero-02__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    will-change: transform
}

.hero-02__img:nth-of-type(odd) {
    width: 400px;
    height: 500px
}

.hero-02__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-02__cover-img {
    will-change: transform
}

.mxd-hero-02__cover-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-02__intro,
.mxd-hero-02__outro {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 2rem;
    mix-blend-mode: difference
}

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

    .mxd-hero-02__intro,
    .mxd-hero-02__outro {
        width: 60%
    }
}

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

    .mxd-hero-02__intro,
    .mxd-hero-02__outro {
        width: 50%;
        padding: 0
    }
}

.mxd-hero-02__intro {
    z-index: 1
}

@media only screen and (min-width:1200px) {
    .mxd-hero-02__intro h1 {
        font-size: 9.5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-02__intro h1 {
        font-size: 12rem
    }
}

.mxd-hero-02__outro {
    z-index: 10
}

.mxd-hero-02__outro p {
    font: normal 600 6rem/1.1 var(--_font-default);
    letter-spacing: -.24rem;
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .mxd-hero-02__outro p {
        font-size: 8.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-02__outro p {
        font-size: 9.5rem
    }
}

.mxd-hero-02__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 5.1rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-02__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-bottom: 3.5rem
    }
}

.mxd-hero-02__dataline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
    padding: 0;
    text-align: center;
    mix-blend-mode: difference
}

@media only screen and (min-width:768px) {
    .mxd-hero-02__dataline {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-02__dataline {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-02__dataline {
        padding: 0 7rem
    }
}

.mxd-hero-02__socials {
    position: relative
}

.mxd-hero-02__socials .mxd-socials-line {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (min-width:1200px) {
    .mxd-hero-02__socials .mxd-socials-line {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.mxd-hero-03 {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh
}

.mxd-hero-03__headline {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 3rem
}

.mxd-hero-03__headline h1 {
    font-size: 5rem
}

.mxd-hero-03__headline a {
    mix-blend-mode: difference;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-hero-03__headline h1 {
        font-size: 7.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__headline {
        max-width: 1300px;
        padding: 0
    }

    .mxd-hero-03__headline h1 {
        font-size: 9.5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-03__headline h1 {
        font-size: 12rem
    }
}

.mxd-hero-media__small {
    position: relative;
    position: absolute;
    inset: 50% 0 0 50%;
    width: 60%;
    aspect-ratio: 3/4;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1
}

@media only screen and (min-width:768px) {
    .mxd-hero-media__small {
        width: 50%;
        aspect-ratio: 16/9
    }
}

.mxd-hero-media__wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.mxd-hero-media__scaling-media {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    isolation: isolate;
    overflow: hidden;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    will-change: transform
}

.scaling-media__video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    padding-bottom: 0;
    padding-right: 0
}

.mxd-hero-media {
    position: relative
}

.mxd-hero-media__contain {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    container: threshold-large/inline-size
}

.mxd-hero-media__large {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4
}

@media only screen and (min-width:992px) {
    .mxd-hero-media__large {
        aspect-ratio: 16/9
    }
}

.mxd-hero-media__placeholder {
    background-color: #afafaf;
    width: 100%;
    height: 100%;
    opacity: 0
}

.mxd-hero-03__control-left {
    position: absolute;
    top: 9.6rem;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__control-left {
        position: absolute;
        top: auto;
        left: 6rem;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: auto;
        padding: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-03__control-left {
        left: 10rem
    }
}

.mxd-hero-03__control-right {
    position: absolute;
    top: 12.6rem;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__control-right {
        position: absolute;
        top: auto;
        left: auto;
        right: 6rem;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: auto;
        padding: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-03__control-right {
        right: 10rem
    }
}

.mxd-hero-03__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 5.1rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-bottom: 3.5rem
    }
}

.mxd-hero-03__dataline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
    padding: 0;
    text-align: center
}

@media only screen and (min-width:768px) {
    .mxd-hero-03__dataline {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__dataline {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-03__dataline {
        padding: 0 7rem
    }
}

.mxd-hero-03__socials {
    position: relative
}

.mxd-hero-03__socials .mxd-socials-line {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (min-width:1200px) {
    .mxd-hero-03__socials .mxd-socials-line {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.mxd-hero-04 {
    position: relative;
    width: 100%
}

.mxd-hero-04__wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    height: -moz-calc(var(--vh) * 100);
    height: calc(var(--vh) * 100);
    overflow: hidden
}

@media only screen and (min-width:1200px) {
    .mxd-hero-04__wrap {
        height: 100vh
    }
}

.mxd-hero-04__controls {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem;
    padding: 0;
    z-index: 3
}

@media only screen and (min-width:768px) {
    .mxd-hero-04__controls {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 6rem;
        padding: 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-04__controls {
        padding: 0 7rem
    }
}

.mxd-hero-04__arrow {
    display: none
}

@media only screen and (min-width:1200px) {
    .mxd-hero-04__arrow {
        display: block;
        position: absolute;
        right: 6rem;
        bottom: 6rem;
        width: 172px;
        height: 172px;
        z-index: 3;
        overflow: hidden;
        mix-blend-mode: difference
    }

    .mxd-hero-04__arrow svg {
        display: inline-block;
        fill: var(--nl-white)
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-04__arrow {
        width: 188px;
        height: 188px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-04__arrow {
        right: 10rem;
        bottom: 10rem;
        width: 214px;
        height: 214px
    }
}

.mxd-hero-04__slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.mxd-hero-04__slides {
    position: relative;
    width: 300%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    will-change: transform;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mxd-hero-04__slide {
    position: relative;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%
}

.mxd-hero-04__media {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.mxd-hero-04__media img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transform: translateX(0) scale(1.25);
    -moz-transform: translateX(0) scale(1.25);
    -ms-transform: translateX(0) scale(1.25);
    transform: translateX(0) scale(1.25)
}

.mxd-hero-04__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--nl-black-rgb), .4);
    mix-blend-mode: soft-light
}

.mxd-hero-04__title {
    display: block;
    position: absolute;
    left: 0;
    bottom: 5.3rem;
    padding: 0;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
    text-decoration: none
}

@media only screen and (min-width:768px) {
    .mxd-hero-04__title {
        bottom: 5.3rem;
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-04__title {
        bottom: 5rem;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-04__title {
        bottom: 5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-04__title {
        bottom: 9rem;
        padding: 0 7rem
    }
}

.mxd-hero-04__name {
    margin-bottom: 2.3rem
}

.mxd-hero-04__name p {
    font: normal 600 6rem/1.1 var(--_font-default);
    letter-spacing: -.24rem;
    color: var(--nl-white)
}

.mxd-hero-04__name p span {
    color: rgba(var(--nl-white-rgb), .8)
}

@media only screen and (min-width:768px) {
    .mxd-hero-04__name {
        margin-bottom: 2.4rem
    }

    .mxd-hero-04__name p {
        font-size: 9rem;
        line-height: 1.2
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-04__name {
        margin-bottom: 1.5rem
    }

    .mxd-hero-04__name p {
        font-size: 12rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-04__name {
        margin-bottom: 1rem
    }

    .mxd-hero-04__name p {
        font-size: 14rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-04__name {
        margin-bottom: .8rem
    }

    .mxd-hero-04__name p {
        font-size: 15rem
    }
}

.mxd-hero-04__descr a,
.mxd-hero-04__descr p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--nl-white)
}

.mxd-hero-04__descr a span,
.mxd-hero-04__descr p span {
    color: var(--nl-white-06)
}

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

    .mxd-hero-04__descr a,
    .mxd-hero-04__descr p {
        font-size: 3.4rem
    }
}

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

    .mxd-hero-04__descr a,
    .mxd-hero-04__descr p {
        font-size: 4.4rem
    }
}

.mxd-hero-05 {
    position: relative;
    width: 100%
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05 {
        height: 100%
    }
}

.mxd-hero-05__wrap {
    position: relative;
    width: 100%;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-05__wrap {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05__wrap {
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-05__wrap {
        padding: 0 10rem
    }
}

.mxd-hero-05__top {
    position: relative;
    padding-top: 11.4rem;
    padding-bottom: 12.8rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-05__top {
        padding-top: 18.6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05__top {
        padding: 0
    }
}

.mxd-hero-05__headline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

.mxd-hero-05__headline h1 {
    font-size: 8rem;
    line-height: 1;
    letter-spacing: -.3rem
}

.mxd-hero-05__headline h1 small {
    font-size: 4.4rem;
    display: block;
    color: var(--t-medium)
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05__headline h1 {
        color: var(--nl-white);
        mix-blend-mode: difference;
        font-size: 16rem
    }

    .mxd-hero-05__headline h1 small {
        font-size: 9.5rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-05__headline h1 {
        font-size: 16rem
    }

    .mxd-hero-05__headline h1 small {
        font-size: 9.5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-05__headline h1 {
        font-size: 20rem;
        letter-spacing: -.5rem
    }

    .mxd-hero-05__headline h1 small {
        font-size: 12rem;
        letter-spacing: -.3rem
    }
}

.mxd-hero-05__bottom {
    padding-bottom: 5.2rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3rem;
        padding: 0 6rem;
        margin-bottom: 3.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-05__bottom {
        padding: 0 10rem
    }
}

.mxd-hero-05__dataline {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

@media only screen and (min-width:1200px) {
    .mxd-hero-05__dataline {
        height: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.hero-05-dataline__socials {
    margin-bottom: 1.8rem
}

.hero-05-dataline__socials .mxd-socials-line__link {
    color: var(--t-bright)
}

.no-touch .hero-05-dataline__socials .mxd-socials-line__link:hover {
    color: var(--t-medium)
}

@media only screen and (min-width:1200px) {
    .hero-05-dataline__socials {
        margin-bottom: 0
    }
}

.hero-05-dataline__caption {
    margin-bottom: 2.1rem;
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.06rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .hero-05-dataline__caption {
        position: absolute;
        top: 0;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 3rem;
        margin-bottom: 0
    }
}

.mxd-hero-06 {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 667px
}

.mxd-hero-06__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-hero-06__media video[poster] {
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-06__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
    background-color: #000
}

.mxd-hero-06__wrap {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 6.3rem 3rem 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-06__wrap {
        padding: 7rem 6rem 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__wrap {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-06__wrap {
        padding: 0 10rem;
        padding: 7rem 10rem 0 10rem
    }
}

.mxd-hero-06__top {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    mix-blend-mode: difference;
    padding: 0 3rem;
    margin-top: -6rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-06__top {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__top {
        position: static;
        left: auto;
        top: 0;
        bottom: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
        margin-top: 0;
        padding-top: 8.1rem
    }
}

.mxd-hero-06__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
    font-weight: 400;
    color: var(--nl-white-06);
    margin-bottom: .5rem
}

.mxd-hero-06__tags span {
    font-weight: 400
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__tags {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.3rem;
        padding-top: 3.9rem;
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-06__tags {
        padding-top: 3.9rem
    }
}

.mxd-hero-06__headline {
    position: relative;
    text-align: left
}

.mxd-hero-06__headline h1 {
    font-size: 5rem;
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .mxd-hero-06__headline h1 {
        font-size: 8.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__headline {
        text-align: right
    }

    .mxd-hero-06__headline h1 {
        font-size: 12rem
    }
}

.mxd-hero-06__bottom {
    padding-bottom: 5rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__bottom {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-bottom: 3.5rem
    }
}

.mxd-hero-06__caption {
    max-width: 340px;
    margin-bottom: 2.3rem
}

.mxd-hero-06__caption p {
    line-height: 1.2
}

@media only screen and (min-width:1200px) {
    .mxd-hero-06__caption {
        max-width: 560px;
        margin-bottom: 0
    }

    .mxd-hero-06__caption p {
        font-size: 3rem
    }
}

.mxd-hero-07 {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 6.6rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07 {
        height: 100vh;
        padding-top: 0;
        padding-bottom: 0
    }
}

.mxd-hero-07__wrap {
    position: relative;
    max-width: 1920px;
    margin: 0 auto
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__wrap {
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.mxd-hero-07__top {
    position: relative;
    text-align: center;
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__top {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-07__top {
        padding: 0 7rem
    }
}

.mxd-hero-07__bottom {
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__bottom {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__bottom {
        position: absolute;
        bottom: 4.3rem;
        left: 0;
        width: 100%
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-07__bottom {
        padding: 0 7rem
    }
}

.mxd-hero-07__headline {
    padding-top: 13.4rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__headline {
        padding-top: 19.8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__headline {
        padding-top: 0
    }
}

.mxd-hero-07__objects {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 6rem
}

.mxd-hero-07__objects img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    pointer-events: none;
    will-change: transform
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__objects {
        margin-bottom: 10rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__objects {
        -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
        margin-bottom: 0
    }

    .mxd-hero-07__objects img {
        width: 15vw;
        height: 15vw
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__objects {
        padding-bottom: 2rem;
        gap: 3rem
    }
}

.mxd-hero-07__subtitle {
    margin-bottom: 1.8rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__subtitle {
        margin-bottom: 2.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__subtitle {
        margin-bottom: 3.5rem
    }
}

.mxd-hero-07__title {
    margin-bottom: 5.1rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-07__title {
        margin-bottom: 8.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-07__title {
        margin-bottom: 3.7rem
    }
}

.mxd-hero-08 {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 6.6rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08 {
        height: 100vh;
        padding-top: 0
    }
}

.mxd-hero-08__wrap {
    position: relative;
    padding-bottom: 5.2rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08__wrap {
        height: 100%;
        padding-bottom: 0
    }
}

.mxd-hero-08__top {
    padding-top: 14rem;
    padding-bottom: 13.6rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08__top {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%
    }
}

.mxd-hero-08__bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 3rem 3.5rem 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-08__bottom {
        padding: 0 7rem 3.5rem 7rem
    }
}

.mxd-hero-08__data {
    max-width: 480px
}

@media only screen and (min-width:1600px) {
    .mxd-hero-08__data {
        max-width: 540px
    }
}

.mxd-hero-08__descr {
    margin-top: 2.2rem;
    margin-bottom: 2.3rem
}

.mxd-hero-08__descr p {
    font-size: 2.4rem;
    line-height: 1.2
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08__descr {
        margin-bottom: 3rem
    }
}

.mxd-hero-08__socials {
    margin-bottom: 2.1rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-08__socials {
        margin-bottom: 0
    }
}

.mxd-hero-09 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 667px;
    padding-top: 6.6rem;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    background-size: cover
}

@media only screen and (min-width:768px) {
    .mxd-hero-09 {
        padding-top: 7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09 {
        padding-top: 0;
        height: 100vh
    }
}

.mxd-hero-09__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-hero-09__background video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-09__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--nl-black-rgb), .4)
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__cover {
        background-color: rgba(var(--nl-black-rgb), .2)
    }
}

.mxd-hero-09__wrap {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-09__wrap {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__wrap {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-09__wrap {
        padding: 0 7rem
    }
}

.mxd-hero-09__top {
    position: relative;
    padding-bottom: 6rem;
    mix-blend-mode: difference
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__top {
        position: absolute;
        left: 0;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        padding: 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-09__top {
        padding: 0 7rem
    }
}

.mxd-hero-09__headline {
    padding-top: 14rem;
    text-align: center
}

.mxd-hero-09__headline h1 {
    font-size: 14cqw;
    font-size: clamp(1.6rem, 13cqw, 27rem);
    line-height: .746;
    font-style: normal;
    font-weight: 500;
    font-family: var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.2cqw;
    color: var(--nl-white);
    white-space: nowrap
}

.mxd-hero-09__headline .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    .mxd-hero-09__headline {
        padding-top: 20rem
    }

    .mxd-hero-09__headline h1 {
        font-size: clamp(1.6rem, 13cqw, 27rem)
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__headline {
        margin-top: -2rem;
        padding-top: 0
    }

    .mxd-hero-09__headline h1 {
        font-size: clamp(1.6rem, 14cqw, 27rem)
    }
}

.mxd-hero-09__divider {
    position: absolute;
    bottom: 0;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--nl-white)
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__divider {
        display: none
    }
}

.mxd-hero-09__center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 5.7rem;
    padding-bottom: 2.8rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__center {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: 0;
        margin-bottom: 3.6rem
    }
}

.mxd-hero-09__data {
    max-width: 480px;
    margin-bottom: 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__data {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-09__data {
        max-width: 540px
    }
}

.mxd-hero-09__descr {
    margin-top: 2.1rem
}

.mxd-hero-09__descr p {
    font-size: 2.4rem;
    line-height: 1.2
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__descr {
        margin-bottom: -.6rem
    }
}

.mxd-hero-09__media {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__media {
        max-width: 280px
    }
}

@media only screen and (min-width:1400px) {
    .mxd-hero-09__media {
        max-width: 320px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-09__media {
        max-width: 380px
    }
}

.mxd-hero-09__image,
.mxd-hero-09__video {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-09__media-btn {
    position: absolute;
    top: 1rem;
    right: 4rem
}

.mxd-hero-09__bottom {
    padding-bottom: 5.2rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-09__bottom {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-bottom: 3.5rem
    }
}

.mxd-hero-10 {
    position: relative;
    width: 100%;
    height: auto
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10 {
        height: -moz-calc(100vh - 6.3rem);
        height: calc(100vh - 6.3rem)
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10 {
        height: -moz-calc(100vh - 7rem);
        height: calc(100vh - 7rem)
    }
}

.mxd-hero-10__wrap {
    position: relative;
    padding-bottom: 5.2rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__wrap {
        padding-bottom: 5.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__wrap {
        height: 100%;
        padding-bottom: 0
    }
}

.mxd-hero-10__top {
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__top {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__top {
        padding: 0 7rem
    }
}

.mxd-hero-10__center {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    padding: 5.7rem 0 5.5rem 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__center {
        padding: 5.7rem 3rem 5.5rem 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__center {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 4.5rem 3rem 0 3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__center {
        padding: 6rem 7rem 0 7rem
    }
}

.mxd-hero-10__divider {
    position: absolute;
    top: 0;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-medium)
}

.mxd-hero-10__divider.divider-bottom {
    top: auto;
    bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__divider {
        left: 6rem;
        width: -moz-calc(100% - 12rem);
        width: calc(100% - 12rem)
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__divider.divider-bottom {
        display: none
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__divider {
        left: 10rem;
        width: -moz-calc(100% - 20rem);
        width: calc(100% - 20rem)
    }
}

.mxd-hero-10__bottom {
    padding-top: 5.2rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-top: 0;
        padding-bottom: 3.5rem
    }
}

.mxd-hero-10__headline {
    container-type: inline-size;
    padding-top: 13rem;
    padding-bottom: 6rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__headline {
        padding-top: 15.8rem;
        padding-bottom: 6rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-hero-10__headline {
        padding-top: 14.8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__headline {
        padding-top: 2rem;
        padding-bottom: 4.5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__headline {
        padding-top: 4rem;
        padding-bottom: 6rem
    }
}

.hero-10-headline__wrap {
    container-type: inline-size;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center
}

.hero-10-headline__wrap h1 {
    text-transform: lowercase;
    font-size: 20.2cqw;
    line-height: .76;
    letter-spacing: -.5cqw
}

.hero-10-headline__wrap h1 a span {
    white-space: nowrap;
    color: var(--t-bright)
}

@media only screen and (min-width:1600px) {
    .hero-10-headline__wrap h1 {
        letter-spacing: -.5cqw
    }
}

.mxd-hero-10__data-wrap {
    margin-bottom: 3rem
}

.mxd-hero-10__descr {
    margin-top: 2.1rem
}

.mxd-hero-10__descr p {
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.1rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__descr {
        max-width: 520px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__descr {
        max-width: 640px;
        margin-top: 2.7rem
    }

    .mxd-hero-10__descr p {
        font-size: 3.4rem
    }
}

.mxd-hero-10__media {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__media {
        max-width: 420px
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag {
        -webkit-transform: translateY(.4rem);
        -moz-transform: translateY(.4rem);
        -ms-transform: translateY(.4rem);
        transform: translateY(.4rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(2) {
        -webkit-transform: translateY(.8rem);
        -moz-transform: translateY(.8rem);
        -ms-transform: translateY(.8rem);
        transform: translateY(.8rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(3) {
        -webkit-transform: translateY(1.2rem);
        -moz-transform: translateY(1.2rem);
        -ms-transform: translateY(1.2rem);
        transform: translateY(1.2rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(4) {
        -webkit-transform: translateY(1.6rem);
        -moz-transform: translateY(1.6rem);
        -ms-transform: translateY(1.6rem);
        transform: translateY(1.6rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(5) {
        -webkit-transform: translateY(1rem);
        -moz-transform: translateY(1rem);
        -ms-transform: translateY(1rem);
        transform: translateY(1rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(6) {
        -webkit-transform: translateY(1.2rem);
        -moz-transform: translateY(1.2rem);
        -ms-transform: translateY(1.2rem);
        transform: translateY(1.2rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(7) {
        -webkit-transform: translateY(1.4rem);
        -moz-transform: translateY(1.4rem);
        -ms-transform: translateY(1.4rem);
        transform: translateY(1.4rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__tags .tag:nth-of-type(8) {
        -webkit-transform: translateY(1.6rem);
        -moz-transform: translateY(1.6rem);
        -ms-transform: translateY(1.6rem);
        transform: translateY(1.6rem)
    }

    .no-touch .mxd-hero-10__media:hover .hero-10-video__name {
        -webkit-transform: translateY(.4rem);
        -moz-transform: translateY(.4rem);
        -ms-transform: translateY(.4rem);
        transform: translateY(.4rem)
    }
}

.mxd-hero-10__image,
.mxd-hero-10__video {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-hero-10__video-btn {
    position: absolute;
    top: 1rem;
    right: 4rem
}

.mxd-hero-10__video-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6rem
}

.hero-10-video__name a {
    font: normal 700 2.2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .hero-10-video__name {
        -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }
}

.hero-10-video__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: .4rem
}

@media only screen and (min-width:1200px) {
    .hero-10-video__tags .tag {
        -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier);
        transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }
}

.mxd-hero-10__dataline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0
}

@media only screen and (min-width:768px) {
    .mxd-hero-10__dataline {
        padding: 0 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__dataline {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-10__dataline {
        padding: 0 7rem
    }
}

.mxd-hero-10__socials {
    position: relative;
    margin-bottom: 2.1rem
}

@media only screen and (min-width:1200px) {
    .mxd-hero-10__socials {
        margin-bottom: 0
    }
}

.mxd-hero-landing {
    position: relative;
    width: 100%
}

.mxd-hero-landing__wrap {
    position: relative;
    padding-top: 13.6rem;
    padding-bottom: 13rem
}

@media only screen and (min-width:768px) {
    .mxd-hero-landing__wrap {
        padding-top: 16.3rem;
        padding-bottom: 15.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-landing__wrap {
        padding-top: 10.3rem;
        padding-bottom: 16rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-landing__wrap {
        padding-top: 12.4rem;
        padding-bottom: 18rem
    }
}

.mxd-hero-landing__headline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.mxd-hero-landing__subtitle {
    mix-blend-mode: difference
}

@media only screen and (min-width:1600px) {
    .mxd-hero-landing__subtitle {
        margin-bottom: 2.4rem
    }
}

.mxd-hero-landing__title {
    mix-blend-mode: difference;
    max-width: 460px
}

@media only screen and (min-width:768px) {
    .mxd-hero-landing__title {
        max-width: 640px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-hero-landing__title {
        max-width: 1000px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-hero-landing__title {
        max-width: 1000px
    }
}

.mxd-demo-grid {
    position: relative
}

.mxd-demo-grid__gallery {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.mxd-demo-grid__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 7.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-demo-grid__item {
        margin-bottom: 9.4rem
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__image {
        border: 1px solid var(--st-bright)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__screen {
        -webkit-transform: scale(1.01);
        -moz-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag {
        -webkit-transform: translateY(.4rem);
        -moz-transform: translateY(.4rem);
        -ms-transform: translateY(.4rem);
        transform: translateY(.4rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(2) {
        -webkit-transform: translateY(.8rem);
        -moz-transform: translateY(.8rem);
        -ms-transform: translateY(.8rem);
        transform: translateY(.8rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(3) {
        -webkit-transform: translateY(1.2rem);
        -moz-transform: translateY(1.2rem);
        -ms-transform: translateY(1.2rem);
        transform: translateY(1.2rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(4) {
        -webkit-transform: translateY(1.6rem);
        -moz-transform: translateY(1.6rem);
        -ms-transform: translateY(1.6rem);
        transform: translateY(1.6rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(5) {
        -webkit-transform: translateY(1rem);
        -moz-transform: translateY(1rem);
        -ms-transform: translateY(1rem);
        transform: translateY(1rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(6) {
        -webkit-transform: translateY(1.2rem);
        -moz-transform: translateY(1.2rem);
        -ms-transform: translateY(1.2rem);
        transform: translateY(1.2rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(7) {
        -webkit-transform: translateY(1.4rem);
        -moz-transform: translateY(1.4rem);
        -ms-transform: translateY(1.4rem);
        transform: translateY(1.4rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__tags .tag:nth-of-type(8) {
        -webkit-transform: translateY(1.6rem);
        -moz-transform: translateY(1.6rem);
        -ms-transform: translateY(1.6rem);
        transform: translateY(1.6rem)
    }

    .no-touch .mxd-demo-grid__item:hover .mxd-demo-grid__name {
        -webkit-transform: translateY(.4rem);
        -moz-transform: translateY(.4rem);
        -ms-transform: translateY(.4rem);
        transform: translateY(.4rem)
    }
}

.mxd-demo-grid__image {
    position: relative;
    border: 1px solid var(--st-medium);
    overflow: hidden;
    -webkit-transition: border var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: border var(--_animspeed-medium) var(--_animbezier);
    transition: border var(--_animspeed-medium) var(--_animbezier)
}

.mxd-demo-grid__image img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0
}

.mxd-demo-grid__screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-demo-grid__screen.screen-01 {
    background-image: var(--bg-demo-screen-01)
}

.mxd-demo-grid__screen.screen-02 {
    background-image: var(--bg-demo-screen-02)
}

.mxd-demo-grid__screen.screen-03 {
    background-image: var(--bg-demo-screen-03)
}

.mxd-demo-grid__screen.screen-04 {
    background-image: var(--bg-demo-screen-04)
}

.mxd-demo-grid__screen.screen-05 {
    background-image: var(--bg-demo-screen-05)
}

.mxd-demo-grid__screen.screen-06 {
    background-image: var(--bg-demo-screen-06)
}

.mxd-demo-grid__screen.screen-07 {
    background-image: var(--bg-demo-screen-07)
}

.mxd-demo-grid__screen.screen-08 {
    background-image: var(--bg-demo-screen-08)
}

.mxd-demo-grid__screen.screen-09 {
    background-image: var(--bg-demo-screen-09)
}

.mxd-demo-grid__screen.screen-10 {
    background-image: var(--bg-demo-screen-10)
}

.mxd-demo-grid__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.mxd-demo-grid__name {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-demo-grid__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: .4rem
}

.mxd-demo-grid__tags .tag {
    white-space: nowrap;
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-demo-stack {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25svh;
    width: 100%;
    overflow: hidden;
    background-color: var(--base)
}

.mxd-demo-stack.opposite {
    background-color: var(--base-opp)
}

.mxd-demo-stack__card {
    position: relative;
    display: block;
    width: 100%;
    height: 100svh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--base);
    border-top: 1px solid var(--st-medium)
}

.mxd-demo-stack__card:last-of-type {
    border-bottom: 1px solid var(--st-medium)
}

.demo-card__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform;
    overflow: hidden;
    padding-top: 9.6rem
}

@media only screen and (min-width:1200px) {
    .demo-card__wrapper {
        padding-top: 0
    }
}

.demo-card__image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0
}

.demo-card__image img,
.demo-card__image video {
    position: relative;
    width: 100%;
    height: auto;
    will-change: transform
}

.demo-card__image .img-01 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 610px
}

.demo-card__image .img-02 {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 610px
}

@media only screen and (min-width:1200px) {
    .demo-card__image .img-01 {
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 1050px
    }

    .demo-card__image .img-02 {
        position: absolute;
        left: 0;
        bottom: 3rem;
        max-width: 800px
    }
}

@media only screen and (min-width:1600px) {
    .demo-card__image .img-02 {
        max-width: 960px
    }
}

.demo-card__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1
}

@media only screen and (min-width:1200px) {
    .demo-card__content {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}

@media only screen and (min-width:1600px) {
    .demo-card__content {
        padding-top: 10rem;
        padding-bottom: 10rem
    }
}

.demo-card__subtitle {
    margin-bottom: 1rem
}

.demo-card__subtitle span {
    display: inline-block;
    font: normal 600 1.6rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright);
    white-space: nowrap
}

@media only screen and (min-width:768px) {
    .demo-card__subtitle {
        margin-bottom: 1.6rem
    }

    .demo-card__subtitle span {
        font-size: 1.8rem
    }
}

@media only screen and (min-width:1200px) {
    .demo-card__subtitle {
        margin-bottom: 2.4rem
    }
}

@media only screen and (min-width:1600px) {
    .demo-card__subtitle {
        margin-bottom: 1.4rem
    }
}

.demo-card__title {
    margin-bottom: 2.4rem
}

.demo-card__title p {
    font: normal 600 4.4rem/1.1 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.demo-card__title .line-mask {
    padding-bottom: 9px;
    margin-bottom: -9px
}

@media only screen and (min-width:768px) {
    .demo-card__title {
        margin-bottom: 3.2rem
    }

    .demo-card__title p {
        font-size: 5.4rem
    }
}

@media only screen and (min-width:1200px) {
    .demo-card__title {
        margin-bottom: 4.2rem
    }

    .demo-card__title p {
        font-size: 7.5rem;
        letter-spacing: -.3rem
    }
}

@media only screen and (min-width:1600px) {
    .demo-card__title {
        margin-bottom: 3.7rem
    }

    .demo-card__title p {
        font-size: 9.5rem
    }
}

.demo-card__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 385px;
    opacity: 0;
    margin-bottom: 2.1rem
}

.demo-card__tags .tags-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.demo-card__tags .tags-column .tag {
    white-space: nowrap
}

@media only screen and (min-width:768px) {
    .demo-card__tags {
        gap: 6rem;
        margin-bottom: 2.7rem
    }
}

@media only screen and (min-width:1200px) {
    .demo-card__tags {
        margin-bottom: 0
    }
}

.demo-card__descr {
    margin-bottom: 2.9rem
}

@media only screen and (min-width:1200px) {
    .demo-card__descr {
        max-width: 520px;
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .demo-card__descr {
        max-width: 530px
    }
}

.mxd-demo-marquee-01 {
    padding-top: 3.1rem;
    padding-bottom: 10.7rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-marquee-01 {
        padding-top: 6.1rem;
        padding-bottom: 13.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-marquee-01 {
        padding-top: 5.1rem;
        padding-bottom: 14.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-marquee-01 {
        padding-top: 7.1rem;
        padding-bottom: 16.7rem
    }
}

.mxd-demo-marquee-02 {
    padding-bottom: 10.7rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-marquee-02 {
        padding-bottom: 13.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-marquee-02 {
        padding-bottom: 14.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-marquee-02 {
        padding-bottom: 16.7rem
    }
}

.mxd-resp-promo,
.mxd-resp-promo__item {
    position: relative
}

.mxd-resp-promo {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 12.8rem;
    padding-bottom: 10.1rem
}

@media only screen and (min-width:768px) {
    .mxd-resp-promo {
        padding-top: 15.5rem;
        padding-bottom: 12.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-resp-promo {
        padding-top: 18rem;
        padding-bottom: 13.6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-resp-promo {
        padding-top: 20rem;
        padding-bottom: 15rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-resp-promo__item {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.mxd-resp-promo__content {
    margin-bottom: 4.5rem
}

@media only screen and (min-width:768px) {
    .mxd-resp-promo__content {
        max-width: 800px;
        margin: 0 auto 5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-resp-promo__content {
        max-width: 700px;
        margin: 0;
        padding-bottom: 1.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-resp-promo__content {
        padding-bottom: 3rem
    }
}

.mxd-resp-promo__manifest {
    margin-bottom: 4rem;
    text-align: center
}

.mxd-resp-promo__manifest p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-resp-promo__manifest p span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-resp-promo__manifest {
        margin-bottom: 4.5rem
    }

    .mxd-resp-promo__manifest p {
        font-size: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-resp-promo__manifest {
        margin-bottom: 5.2rem;
        text-align: left
    }
}

@media only screen and (min-width:1600px) {
    .mxd-resp-promo__manifest p {
        font-size: 4.4rem
    }
}

.mxd-resp-promo__image {
    padding-left: 3rem
}

.mxd-resp-promo__image img {
    display: block;
    width: 100%;
    height: auto
}

@media only screen and (min-width:768px) {
    .mxd-resp-promo__image {
        padding-left: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-resp-promo__image {
        padding-left: 0
    }
}

.mxd-demo-cards__icons {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 3rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media only screen and (min-width:1200px) {
    .mxd-demo-cards__icons {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 0;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.demo-icons__item {
    width: 140px;
    padding: 0 3rem;
    border-right: 1px solid var(--st-medium);
    text-align: center
}

.demo-icons__item:last-of-type,
.demo-icons__item:nth-of-type(2) {
    border-right: none
}

@media only screen and (min-width:768px) {
    .demo-icons__item {
        width: 140px
    }

    .demo-icons__item:nth-of-type(2) {
        border-right: 1px solid var(--st-medium)
    }

    .demo-icons__item:first-of-type {
        padding: 0 3rem 0 0
    }
}

@media only screen and (min-width:1600px) {
    .demo-icons__item {
        width: 140px
    }
}

.demo-icons__icon {
    font-size: 5rem;
    line-height: 1.2;
    color: var(--t-bright)
}

@media only screen and (min-width:1600px) {
    .demo-icons__icon {
        font-size: 6rem
    }
}

.demo-icons__caption {
    font: normal 500 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .demo-icons__caption {
        font-size: 1.4rem
    }
}

@media only screen and (min-width:1600px) {
    .demo-icons__caption {
        font-size: 1.6rem
    }
}

.mxd-demo-swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 0
}

.no-touch .mxd-demo-swiper .swiper-slide-active:hover .demo-swiper-slide__image {
    border: 1px solid var(--st-bright)
}

.mxd-demo-swiper .swiper-slide-next,
.mxd-demo-swiper .swiper-slide-prev {
    -webkit-transform: scale(.96);
    -moz-transform: scale(.96);
    -ms-transform: scale(.96);
    transform: scale(.96);
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-demo-swiper__slide {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.demo-swiper-slide__image {
    border: 1px solid var(--st-medium);
    -webkit-transition: border var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: border var(--_animspeed-medium) var(--_animbezier);
    transition: border var(--_animspeed-medium) var(--_animbezier)
}

.demo-swiper-slide__image img {
    display: block;
    width: 100%;
    height: auto
}

.demo-swiper-slide__descr {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-top: 3rem
}

.demo-swiper-slide__descr a {
    font: normal 500 1.6rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .demo-swiper-slide__descr a {
        font-size: 1.8rem
    }
}

.swiper-horizontal .mxd-slider-btn-next.mxd-slider-btn-next-fullwidth {
    right: 0
}

@media only screen and (min-width:768px) {
    .swiper-horizontal .mxd-slider-btn-next.mxd-slider-btn-next-fullwidth {
        right: 0;
        left: auto
    }
}

@media only screen and (min-width:1400px) {
    .swiper-horizontal .mxd-slider-btn-next.mxd-slider-btn-next-fullwidth {
        right: 0;
        left: auto
    }
}

@media only screen and (min-width:1600px) {
    .swiper-horizontal .mxd-slider-btn-next.mxd-slider-btn-next-fullwidth {
        right: 0;
        left: auto
    }
}

.mxd-demo-components {
    position: relative;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-components {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-components {
        height: 165px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-components {
        height: 209px;
        padding: 0 10rem
    }
}

.mxd-demo-components__wrap {
    position: relative
}

@media only screen and (min-width:1200px) {
    .mxd-demo-components__wrap {
        position: absolute;
        top: 0;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.mxd-demo-components__objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red
}

.mxd-demo-components__object {
    position: absolute;
    height: auto;
    display: none
}

.mxd-demo-components__object img {
    display: block;
    width: 100%;
    height: auto
}

.mxd-demo-components__object.obj-01 {
    z-index: 1
}

.mxd-demo-components__object.obj-02 {
    z-index: 3
}

@media only screen and (min-width:1200px) {
    .mxd-demo-components__object {
        display: block
    }

    .mxd-demo-components__object.obj-01 {
        width: 23.2rem;
        bottom: -3.8rem;
        left: -15rem
    }

    .mxd-demo-components__object.obj-02 {
        width: 16rem;
        top: 3.4rem;
        right: -9.4rem
    }
}

.mxd-demo-components__title {
    margin-bottom: 2.9rem;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-demo-components__title {
        margin-bottom: 3.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-components__title {
        text-align: center;
        margin-bottom: 0
    }
}

.mxd-demo-components__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem
}

.mxd-demo-components__tags .tag {
    white-space: nowrap
}

.mxd-demo-components__tags .tags-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: .4rem
}

@media only screen and (min-width:1200px) {
    .mxd-demo-components__tags {
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%
    }

    .mxd-demo-components__tags .tags-column:nth-of-type(2) {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.marquee-components-top {
    padding-bottom: 7rem
}

@media only screen and (min-width:768px) {
    .marquee-components-top {
        padding-bottom: 12.8rem
    }
}

@media only screen and (min-width:1200px) {
    .marquee-components-top {
        padding-bottom: 12.4rem
    }
}

@media only screen and (min-width:1600px) {
    .marquee-components-top {
        padding-bottom: 12rem
    }
}

.marquee-components-bottom {
    padding-top: 7.3rem
}

@media only screen and (min-width:768px) {
    .marquee-components-bottom {
        padding-top: 13.3rem
    }
}

@media only screen and (min-width:1200px) {
    .marquee-components-bottom {
        padding-top: 12.6rem
    }
}

@media only screen and (min-width:1600px) {
    .marquee-components-bottom {
        padding-top: 12.3rem
    }
}

@media only screen and (min-width:1200px) {
    .landing-features-title .mxd-section-title__title {
        max-width: 730px
    }

    .landing-features-title .mxd-section-title__caption {
        max-width: none
    }
}

@media only screen and (min-width:1600px) {
    .landing-features-title .mxd-section-title__title {
        max-width: 870px
    }
}

.landing-features-cards .mxd-niche-cards__inner {
    background-color: var(--base-bright)
}

.landing-features-cards .mxd-niche-cards__gradient.gradient-linear {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(var(--base-bright-rgb), 1)), color-stop(50%, rgba(var(--base-bright-rgb), .6)), to(rgba(var(--base-bright-rgb), 0)));
    background: -moz-linear-gradient(top, rgba(var(--base-bright-rgb), 1) 10%, rgba(var(--base-bright-rgb), .6) 50%, rgba(var(--base-bright-rgb), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--base-bright-rgb), 1) 10%, rgba(var(--base-bright-rgb), .6) 50%, rgba(var(--base-bright-rgb), 0) 100%)
}

@media only screen and (min-width:768px) {
    .landing-features-cards .mxd-niche-cards__item {
        padding-bottom: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .landing-features-cards .mxd-niche-cards__gradient.gradient-linear {
        background: var(--base-bright-rgb);
        background: -webkit-gradient(linear, left top, right top, from(rgba(var(--base-bright-rgb), 1)), color-stop(80%, rgba(var(--base-bright-rgb), .2)), to(rgba(var(--base-bright-rgb), 0)));
        background: -moz-linear-gradient(left, rgba(var(--base-bright-rgb), 1) 0, rgba(var(--base-bright-rgb), .2) 80%, rgba(var(--base-bright-rgb), 0) 100%);
        background: linear-gradient(90deg, rgba(var(--base-bright-rgb), 1) 0, rgba(var(--base-bright-rgb), .2) 80%, rgba(var(--base-bright-rgb), 0) 100%)
    }

    .landing-features-cards .mxd-niche-cards__image.absolute-desktop-aside {
        width: 180px;
        padding: 0;
        right: 2rem;
        bottom: 2rem
    }
}

@media only screen and (min-width:1400px) {
    .landing-features-cards .mxd-niche-cards__image.absolute-desktop-aside {
        width: 200px;
        right: 3rem
    }
}

@media only screen and (min-width:1600px) {
    .landing-features-cards .mxd-niche-cards__image.absolute-desktop-aside {
        width: 256px;
        right: 3rem;
        bottom: 3rem
    }
}

.mxd-demo-cta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 14rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-cta {
        padding-bottom: 17rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-cta {
        padding-bottom: 18rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-cta {
        padding-bottom: 20rem
    }
}

.mxd-demo-cta__caption {
    position: relative;
    text-align: center
}

.mxd-demo-cta__caption h2 {
    margin: 0 auto
}

@media only screen and (min-width:768px) {
    .mxd-demo-cta__caption h2 {
        max-width: 1000px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-cta__caption h2 {
        max-width: 1240px
    }
}

.mxd-demo-cta__btn {
    margin-top: 3.8rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-cta__btn {
        margin-top: 4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-demo-cta__btn {
        margin-top: 4.7rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-demo-cta__btn {
        margin-top: 5.4rem
    }
}

.mxd-demo-footer {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: var(--base);
    overflow: hidden
}

.mxd-demo-footer__logo {
    margin-bottom: 2.5rem
}

@media only screen and (min-width:1600px) {
    .mxd-demo-footer__logo {
        margin-bottom: 2.3rem
    }
}

.mxd-demo-footer__slogan {
    margin-bottom: 2.8rem;
    max-width: 580px
}

@media only screen and (min-width:1600px) {
    .mxd-demo-footer__slogan {
        margin-bottom: 2.7rem
    }
}

.mxd-demo-footer__btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5.4rem
}

@media only screen and (min-width:576px) {
    .mxd-demo-footer__btn {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1.6rem
    }
}

.mxd-demo-footer__nav {
    position: relative;
    width: 100%
}

@media only screen and (min-width:768px) {
    .mxd-demo-footer__nav {
        margin-bottom: 4.9rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-demo-footer__nav {
        margin-bottom: 0
    }
}

.mxd-demo-footer-nav__block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem
}

@media only screen and (min-width:768px) {
    .mxd-demo-footer-nav__block:last-of-type {
        margin-bottom: 0
    }
}

.mxd-footer-promo__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.6rem
}

.mxd-footer-promo__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.6rem;
    -webkit-transition: -webkit-transform var(--_animspeed-medium);
    transition: -webkit-transform var(--_animspeed-medium);
    -moz-transition: transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium)
}

.no-touch .mxd-footer-promo__item:hover {
    -webkit-transform: translateX(.4rem);
    -moz-transform: translateX(.4rem);
    -ms-transform: translateX(.4rem);
    transform: translateX(.4rem)
}

@media only screen and (min-width:768px) {
    .mxd-footer-promo__item {
        max-width: 360px
    }
}

.mxd-footer-promo__icon {
    width: 4.6rem;
    height: 4.6rem
}

.mxd-footer-promo__icon img {
    width: 4.6rem;
    height: 4.6rem
}

@media only screen and (min-width:768px) {
    .mxd-footer-promo__icon {
        width: 5.6rem;
        height: 5.6rem
    }

    .mxd-footer-promo__icon img {
        width: 5.6rem;
        height: 5.6rem
    }
}

.mxd-demo-footer__background,
.mxd-demo-footer__foreground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto
}

.mxd-demo-footer__background img,
.mxd-demo-footer__foreground img {
    display: block;
    width: 100%;
    height: auto
}

.footer-foreground__img1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48.125%
}

.footer-background__img1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%
}

@media only screen and (min-width:1200px) {
    .footer-background__img1 {
        width: 65.1%
    }
}

.footer-background__img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 31.25%
}

.mxd-footer__planet01,
.mxd-footer__planet02 {
    position: absolute
}

.mxd-footer__planet01 img,
.mxd-footer__planet02 img {
    display: block;
    width: 100%;
    height: auto
}

.mxd-footer__planet01 {
    top: -30%;
    right: 18cqw;
    width: 11.2cqw;
    max-width: 214px
}

@media only screen and (min-width:1200px) {
    .mxd-footer__planet01 {
        top: -33%
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__planet01 {
        right: 246px;
        right: clamp(10px, 14.2cqw, 280px)
    }
}

.mxd-footer__planet02 {
    top: 22%;
    right: 40cqw;
    width: 4.85cqw;
    max-width: 93px
}

@media only screen and (min-width:768px) {
    .mxd-footer__planet02 {
        right: 38cqw
    }
}

@media only screen and (min-width:1600px) {
    .mxd-footer__planet02 {
        right: clamp(10px, 38cqw, 700px)
    }
}

.mxd-stats-lines {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.3rem
}

.mxd-stats-lines.manifest-title {
    padding-top: 7.4rem
}

@media only screen and (min-width:768px) {
    .mxd-stats-lines {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 5.2rem;
        -webkit-column-gap: 6rem;
        -moz-column-gap: 6rem;
        column-gap: 6rem
    }

    .mxd-stats-lines.manifest-title {
        padding-top: 9.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-stats-lines {
        row-gap: 9.3rem
    }

    .mxd-stats-lines.manifest-title {
        padding-top: 9rem
    }
}

.mxd-stats-lines__item {
    position: relative;
    overflow: hidden
}

@media only screen and (min-width:768px) {
    .mxd-stats-lines__item {
        -ms-flex-preferred-size: calc(50% - 3rem);
        flex-basis: -moz-calc(50% - 3rem);
        flex-basis: calc(50% - 3rem)
    }
}

.mxd-stats-lines__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-medium);
    z-index: 1
}

.mxd-stats-lines__divider.divider-top {
    top: 0
}

.mxd-stats-lines__divider.divider-bottom {
    bottom: 0
}

.mxd-stats-lines__inner {
    position: relative;
    width: 100%;
    will-change: transform;
    z-index: 2
}

.mxd-stats-lines__number {
    padding-top: 1rem
}

.mxd-stats-lines__number p {
    display: inline-block;
    font: normal 600 8rem/1 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .mxd-stats-lines__number {
        padding-top: 3rem
    }
}

.mxd-stats-lines__caption {
    padding-left: .4rem;
    padding-top: .5rem
}

.mxd-stats-lines__caption p {
    display: inline-block;
    font: normal 500 1.4rem/1.4 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium);
    max-width: 200px
}

@media only screen and (min-width:1200px) {
    .mxd-stats-lines__caption {
        padding-top: 2.5rem
    }
}

.marquee {
    position: relative;
    max-width: 100%;
    overflow: hidden
}

.marquee.marquee-stack {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%
}

.marquee.muted .marquee__image,
.marquee.muted .marquee__text {
    color: var(--t-medium)
}

.marquee.muted-extra .marquee__image,
.marquee.muted-extra .marquee__text {
    color: var(--t-muted-extra)
}

.marquee.muted-extra-opposite .marquee__image,
.marquee.muted-extra-opposite .marquee__text {
    color: var(--t-opp-muted-extra)
}

.marquee--gsap .marquee__bottom,
.marquee--gsap .marquee__top {
    translate: -moz-calc(-100% + 100vw) !important;
    translate: calc(-100% + 100vw) !important
}

.marquee-left--gsap .marquee__toleft,
.marquee-right--gsap .marquee__toright {
    translate: -moz-calc(-100% + 100vw) !important;
    translate: calc(-100% + 100vw) !important
}

.marquee__bottom,
.marquee__toleft,
.marquee__top,
.marquee__toright {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform
}

.marquee__images {
    gap: 3rem;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.marquee__images.align-start {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 3rem
}

.marquee__images.align-center {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.marquee__logos {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6rem
}

@media only screen and (min-width:768px) {
    .marquee__logos {
        gap: 10rem
    }
}

.marquee__shadow {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%
}

.marquee__shadow.left {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(var(--base-rgb), 1)), to(rgba(var(--base-rgb), 0)));
    background: -moz-linear-gradient(left, rgba(var(--base-rgb), 1) 0, rgba(var(--base-rgb), 0) 100%);
    background: linear-gradient(to right, rgba(var(--base-rgb), 1) 0, rgba(var(--base-rgb), 0) 100%)
}

.marquee__shadow.right {
    right: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(var(--base-rgb), 0)), to(rgba(var(--base-rgb), 1)));
    background: -moz-linear-gradient(left, rgba(var(--base-rgb), 0) 0, rgba(var(--base-rgb), 1) 100%);
    background: linear-gradient(to right, rgba(var(--base-rgb), 0) 0, rgba(var(--base-rgb), 1) 100%)
}

.marquee__item.item-imageblock {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .6rem;
    width: 200px
}

.marquee__item.item-hero {
    width: 200px
}

.marquee__item.item-logoblock {
    width: auto;
    height: auto;
    max-height: 3.6rem
}

.marquee__item.item-logoblock svg {
    fill: var(--t-muted)
}

.marquee__item.item-logoblock img {
    display: block;
    width: auto;
    height: auto;
    max-height: 3.6rem
}

@media only screen and (min-width:768px) {
    .marquee__item.item-imageblock {
        width: 300px
    }

    .marquee__item.item-hero {
        display: block;
        width: 280px
    }
}

@media only screen and (min-width:1600px) {
    .marquee__item.item-hero {
        display: block;
        width: 380px
    }
}

.marquee__text {
    font: normal 400 -moz-calc(25svh - 9rem) var(--_font-accent);
    font: normal 400 calc(25svh - 9rem) var(--_font-accent);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: 25svh
}

.marquee__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.marquee__image {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden
}

.marquee__image img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
    transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.no-touch .marquee__image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.marquee__component {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 200px;
    overflow: hidden;
    border: 1px solid var(--st-medium)
}

@media only screen and (min-width:768px) {
    .marquee__component {
        height: 280px
    }
}

@media only screen and (min-width:1600px) {
    .marquee__component {
        height: 320px
    }
}

.mxd-gravity-section {
    position: relative;
    width: 100%;
    background-color: var(--base-opp);
    overflow: hidden
}

.mxd-gravity-section.accent {
    background-color: var(--accent)
}

.object-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.object {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.4rem;
    font-family: var(--_font-accent);
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--base);
    padding: 1.6rem 2rem;
    -moz-border-radius: .4rem;
    border-radius: .4rem;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    z-index: 2
}

.object p {
    font-family: var(--_font-accent);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--t-bright);
    font-size: 1.3rem;
    line-height: .8
}

.object:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.object.object-permanent {
    background-color: var(--nl-white)
}

.object.object-permanent p {
    color: var(--nl-black)
}

.object.object-type {
    background-color: transparent;
    padding: 0
}

.object.object-type p {
    color: var(--nl-white);
    font-family: var(--_font-accent);
    font-weight: 400;
    font-size: 4rem
}

.object.object-image {
    background-color: transparent;
    padding: 0;
    width: 7rem
}

.object.object-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media only screen and (min-width:768px) {
    .object {
        padding: 2rem 2.4rem;
        font-size: 1.8rem
    }

    .object p {
        font-size: 1.8rem
    }

    .object.object-image {
        width: 12rem
    }

    .object.object-type p {
        font-size: 5rem
    }
}

@media only screen and (min-width:1600px) {
    .object.object-image {
        width: 14rem
    }

    .object.object-type p {
        font-size: 7rem
    }
}

.mxd-accordion {
    position: relative
}

.mxd-accordion__item {
    position: relative;
    cursor: pointer;
    margin-top: -1px
}

.mxd-accordion__item:first-of-type {
    margin-top: 0
}

.mxd-accordion__divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--st-medium)
}

.mxd-accordion__content {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 3rem 0;
    overflow: hidden;
    display: none
}

@media only screen and (min-width:768px) {
    .mxd-accordion__content {
        padding: 0 0 5.4rem 0
    }
}

.mxd-accordion__title {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.8rem 0 3rem 0;
    -webkit-transition: padding var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: padding var(--_animspeed-medium) var(--_animbezier);
    transition: padding var(--_animspeed-medium) var(--_animbezier)
}

.mxd-accordion__title p {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

.mxd-accordion__title p a {
    color: var(--t-bright)
}

.mxd-accordion__title p.opposite {
    color: var(--t-opp-bright)
}

.mxd-accordion__title p.opposite a {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-accordion__title {
        padding: 5rem 0 5.4rem 0
    }

    .mxd-accordion__title p {
        font-size: 2.4rem
    }
}

.accordion-opened {
    padding: 2.8rem 0 2.2rem 0
}

@media only screen and (min-width:768px) {
    .accordion-opened {
        padding: 5rem 0 4.5rem 0
    }
}

.mxd-accordion__arrow {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem
}

.mxd-accordion__arrow svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--t-bright)
}

.mxd-accordion__arrow i {
    display: block;
    width: 1.8rem;
    height: 1.8rem
}

.mxd-accordion__close {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0
}

.mxd-accordion__plus {
    position: relative;
    opacity: 1
}

.accordion-rotate .mxd-accordion__close {
    opacity: 1
}

.accordion-rotate .mxd-accordion__plus {
    opacity: 0
}

.mxd-teaser {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 13.4rem
}

@media only screen and (min-width:768px) {
    .mxd-teaser {
        padding-top: 16.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-teaser {
        padding-top: 13rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-teaser {
        padding-top: 15rem
    }
}

.mxd-teaser__wrap {
    margin-bottom: 7.3rem
}

@media only screen and (min-width:768px) {
    .mxd-teaser__wrap {
        margin-bottom: 9rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-teaser__wrap {
        padding-bottom: 16.3rem;
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-teaser__wrap {
        padding-bottom: 17.9rem;
        margin-bottom: 0
    }
}

.mxd-teaser__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5rem
}

@media only screen and (min-width:768px) {
    .mxd-teaser__content {
        gap: 1.9rem
    }
}

.mxd-teaser__btngroup {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mxd-teaser__captions {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem
}

.mxd-teaser__textblock {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: .3em;
    font: normal 600 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright);
    will-change: transform, opacity
}

.mxd-teaser__textblock i,
.mxd-teaser__textblock span {
    position: relative;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.mxd-teaser__textblock i {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.8rem
}

.mxd-teaser__textblock img {
    display: block;
    width: auto;
    height: 100%
}

@media only screen and (min-width:768px) {
    .mxd-teaser__textblock {
        font-size: 5rem;
        letter-spacing: -.14rem
    }

    .mxd-teaser__textblock i {
        height: 5.1rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-teaser__textblock {
        font-size: 7.5rem;
        letter-spacing: -.3rem
    }

    .mxd-teaser__textblock i {
        height: 7.4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-teaser__textblock {
        font-size: 9.5rem
    }

    .mxd-teaser__textblock i {
        height: 9.4rem
    }
}

.mxd-teaser__icon {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mxd-about-images {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mxd-about-images__wrap {
    position: relative;
    width: 100%
}

.mxd-about-images__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .6rem
}

.mxd-about-images__item.margin-bottom-mobile {
    margin-bottom: 7.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-about-images__item {
        height: 100%
    }

    .mxd-about-images__item.margin-bottom-mobile {
        margin-bottom: 0
    }

    .mxd-about-images__item.justify-start {
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 10rem
    }

    .mxd-about-images__item.justify-end {
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-bottom: 10rem
    }
}

.mxd-about-images__inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .6rem
}

.mxd-about-images__img img {
    display: block;
    width: 100%;
    height: auto
}

.mxd-about-images__descr {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:768px) {
    .mxd-about-images__descr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 6rem
    }
}

.mxd-process-points {
    position: relative;
    width: 100%
}

.mxd-process-points__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    padding-top: 4.8rem;
    padding-bottom: 5.2rem
}

@media only screen and (min-width:768px) {
    .mxd-process-points__item {
        gap: 2.7rem;
        padding-top: 4.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-process-points__item {
        padding-top: 3.2rem;
        padding-bottom: 0
    }
}

.mxd-process-points__divider {
    position: absolute;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-bright)
}

.mxd-process-points__divider.opposite {
    background-color: var(--base-opp)
}

.mxd-process-points__divider.accent {
    background-color: var(--pt-t-accent-bright)
}

.mxd-process-points__divider.top {
    top: 0
}

.mxd-process-points__divider.bottom {
    bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-process-points__divider.bottom {
        display: none
    }
}

.mxd-process-points__title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.4rem;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mxd-process-points__title p {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-process-points__title p span {
    color: var(--t-medium)
}

.mxd-process-points__title p.permanent {
    color: var(--nl-white)
}

.mxd-process-points__title p.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-process-points__title p.opposite {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-process-points__title p {
        font-size: 4rem
    }
}

.mxd-process-points__icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--t-bright)
}

.mxd-process-points__icon.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-process-points__icon i {
    font-size: 3.4rem
}

@media only screen and (min-width:768px) {
    .mxd-process-points__icon i {
        font-size: 4rem
    }
}

.mxd-process-points__time {
    padding-top: .1rem
}

@media only screen and (min-width:768px) {
    .mxd-process-points__time {
        padding-top: .4rem
    }
}

.about-mission {
    overflow: hidden
}

.about-mission-text {
    margin-top: 12.3rem
}

@media only screen and (min-width:768px) {
    .about-mission-text {
        margin-top: 14.6rem
    }
}

@media only screen and (min-width:1200px) {
    .about-mission-text {
        margin-top: 15.5rem
    }
}

@media only screen and (min-width:1600px) {
    .about-mission-text {
        margin-top: 17.3rem
    }
}

.mxd-about-team {
    position: relative
}

.mxd-about-team__img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.mxd-about-team__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:1200px) {
    .mxd-about-team__img.fullheight-xl {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.mxd-about-team__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 5rem
}

@media only screen and (min-width:768px) {
    .mxd-about-team__data {
        padding-top: 9rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-about-team__data {
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 0
    }
}

.mxd-about-team__info {
    position: relative;
    margin-bottom: 5.3rem
}

@media only screen and (min-width:768px) {
    .mxd-about-team__info {
        margin-bottom: 9.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-about-team__info {
        margin-bottom: 0;
        padding-top: 5rem
    }

    .mxd-about-team__info.fullheight-xl {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.mxd-split-descr {
    position: relative;
    width: 100%
}

.mxd-split-descr.pre-manifest-l {
    margin-top: 7.4rem
}

@media only screen and (min-width:768px) {
    .mxd-split-descr.pre-manifest-l {
        margin-top: 9.1rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-split-descr.pre-manifest-l {
        margin-top: 8.8rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-split-descr.pre-manifest-l {
        margin-top: 8.3rem
    }
}

.mxd-split-descr__image {
    position: relative;
    width: 100%;
    margin-bottom: 2.6rem
}

.mxd-split-descr__image img {
    display: block;
    width: 100%;
    height: auto
}

@media only screen and (min-width:768px) {
    .mxd-split-descr__image {
        margin-bottom: 4rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-split-descr__image {
        margin-bottom: 0
    }
}

.mxd-split-descr__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:992px) {
    .mxd-split-descr__wrap {
        height: 100%;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.mxd-split-descr__content {
    max-width: 600px;
    margin-bottom: 2.2rem
}

@media only screen and (min-width:768px) {
    .mxd-split-descr__content {
        margin-bottom: 3.7rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-split-descr__content {
        margin-bottom: 0
    }

    .mxd-split-descr__content.margin-bottom-l {
        margin-bottom: 3.2rem
    }
}

@media only screen and (min-width:1400px) {
    .mxd-split-descr__content {
        max-width: 680px
    }
}

.mxd-showcase-clip {
    position: relative;
    z-index: 10
}

.mxd-showcase-clip__trigger {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.mxd-showcase-clip__trigger img {
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block
}

.mxd-showcase-clip__cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3)
}

.mxd-showcase-clip__cover.cover-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.mxd-showcase-clip__track {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mxd-showcase-clip__sticky {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0
}

.mxd-showcase-clip__item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 3rem
}

@media only screen and (min-width:992px) {
    .mxd-showcase-clip__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left;
        gap: 2em;
        max-width: 1920px;
        padding: 0 6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-showcase-clip__item {
        padding: 0 10rem
    }
}

.mxd-showcase-clip__image {
    width: 100%;
    max-width: 40ch;
    aspect-ratio: 1/1;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    overflow: hidden
}

@media only screen and (min-width:992px) {
    .mxd-showcase-clip__image {
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        width: 40rem;
        max-width: none
    }
}

@media only screen and (min-width:1600px) {
    .mxd-showcase-clip__image {
        width: 46rem
    }
}

.mxd-showcase-clip__bg {
    height: 100%
}

.mxd-showcase-clip__title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 30ch;
    margin: 0 auto;
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-showcase-clip__title span {
    color: var(--t-medium)
}

.mxd-showcase-clip__title.permanent {
    color: var(--nl-white)
}

.mxd-showcase-clip__title.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-showcase-clip__title.opposite {
    color: var(--t-opp-bright)
}

.mxd-showcase-clip__title .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    .mxd-showcase-clip__title {
        font-size: 3.6rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-showcase-clip__title {
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0;
        max-width: -moz-calc(50% - 20rem);
        max-width: calc(50% - 20rem);
        padding-right: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-showcase-clip__title {
        font-size: 4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-showcase-clip__title {
        max-width: -moz-calc(50% - 23rem);
        max-width: calc(50% - 23rem);
        padding-right: 10rem
    }
}

.mxd-showcase-clip__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:992px) {
    .mxd-showcase-clip__tags {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: -moz-calc(50% - 20rem);
        width: calc(50% - 20rem);
        padding-left: 6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-showcase-clip__tags {
        width: -moz-calc(50% - 23rem);
        width: calc(50% - 23rem);
        padding-left: 10rem
    }
}

.mxd-projects-grid {
    position: relative
}

.mxd-projects-grid__gallery {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.mxd-project-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
    padding: 0 3rem;
    margin-bottom: 7.4rem
}

.mxd-project-item .mxd-cover {
    opacity: .5;
    -webkit-transition: opacity var(--_animspeed-medium) ease-in-out;
    -moz-transition: opacity var(--_animspeed-medium) ease-in-out;
    transition: opacity var(--_animspeed-medium) ease-in-out
}

@media only screen and (min-width:768px) {
    .mxd-project-item {
        margin-bottom: 7.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-project-item {
        margin-bottom: 9.4rem
    }

    .mxd-project-item.mxd-project-item-sticky {
        position: sticky;
        top: 0
    }
}

.no-touch .mxd-project-item:hover .mxd-cover {
    opacity: 1
}

.no-touch .mxd-project-item:hover.mxd-project-item-s .mxd-cover {
    opacity: 0
}

.no-touch .mxd-project-item:hover .mxd-project-item__logowrap {
    opacity: 0
}

.no-touch .mxd-project-item:hover .mxd-project-item__videowrap {
    clip-path: inset(0 0 0 0)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag {
    -webkit-transform: translateY(.4rem);
    -moz-transform: translateY(.4rem);
    -ms-transform: translateY(.4rem);
    transform: translateY(.4rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(2) {
    -webkit-transform: translateY(.8rem);
    -moz-transform: translateY(.8rem);
    -ms-transform: translateY(.8rem);
    transform: translateY(.8rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(3) {
    -webkit-transform: translateY(1.2rem);
    -moz-transform: translateY(1.2rem);
    -ms-transform: translateY(1.2rem);
    transform: translateY(1.2rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(4) {
    -webkit-transform: translateY(1.6rem);
    -moz-transform: translateY(1.6rem);
    -ms-transform: translateY(1.6rem);
    transform: translateY(1.6rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(5) {
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(6) {
    -webkit-transform: translateY(1.2rem);
    -moz-transform: translateY(1.2rem);
    -ms-transform: translateY(1.2rem);
    transform: translateY(1.2rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(7) {
    -webkit-transform: translateY(1.4rem);
    -moz-transform: translateY(1.4rem);
    -ms-transform: translateY(1.4rem);
    transform: translateY(1.4rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__tags .tag:nth-of-type(8) {
    -webkit-transform: translateY(1.6rem);
    -moz-transform: translateY(1.6rem);
    -ms-transform: translateY(1.6rem);
    transform: translateY(1.6rem)
}

.no-touch .mxd-project-item:hover .mxd-project-item__name {
    -webkit-transform: translateY(.4rem);
    -moz-transform: translateY(.4rem);
    -ms-transform: translateY(.4rem);
    transform: translateY(.4rem)
}

.mxd-project-divider {
    display: none
}

@media only screen and (min-width:1200px) {
    .mxd-project-divider {
        display: block
    }
}

.mxd-project-item__media {
    position: relative;
    overflow: hidden
}

.mxd-project-item__media img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-project-item__logowrap {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 45%;
    max-width: 200px;
    height: auto;
    max-height: 180px;
    opacity: 1;
    -webkit-transition: opacity var(--_animspeed-medium) ease-in-out;
    -moz-transition: opacity var(--_animspeed-medium) ease-in-out;
    transition: opacity var(--_animspeed-medium) ease-in-out
}

.mxd-project-item__logowrap img {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 110px
}

.mxd-project-item__videowrap {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: 0 auto;
    width: 70%;
    aspect-ratio: 1/.59;
    z-index: 2;
    clip-path: inset(50% 50% 50% 50%);
    -webkit-transition: clip-path var(--_animspeed-slow) var(--_animbezier);
    -moz-transition: clip-path var(--_animspeed-slow) var(--_animbezier);
    transition: clip-path var(--_animspeed-slow) var(--_animbezier);
    will-change: clip-path
}

.mxd-project-item__videowrap video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-project-item__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.mxd-project-item__name {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-project-item__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: .4rem
}

.mxd-project-item__tags .tag {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-stack-cards {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25svh;
    width: 100%;
    overflow: hidden;
    background-color: var(--base)
}

.mxd-stack-cards.opposite {
    background-color: var(--base-opp)
}

.mxd-stack-cards__card {
    position: relative;
    display: block;
    width: 100%;
    height: 100svh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mxd-stack-cards__card:nth-child(2) {
    margin-top: 50vh
}

.card__marquees {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.card__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform
}

.card__image {
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-border-radius: 0;
    border-radius: 0;
    overflow: hidden;
    will-change: clip-path
}

.card__image img,
.card__image video {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
}

.card__cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3)
}

.card__cover.cover-darken {
    background-color: rgba(0, 0, 0, .6)
}

.card__content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1
}

.card__content .card-description {
    position: relative;
    width: 80%;
    margin-bottom: 2em;
    text-align: center;
    -webkit-transform: translateX(4rem);
    -moz-transform: translateX(4rem);
    -ms-transform: translateX(4rem);
    transform: translateX(4rem);
    opacity: 0
}

.card__content .card-description p {
    font-size: 1.6rem;
    color: #fff
}

@media only screen and (min-width:1200px) {
    .card__content .card-description {
        width: 40%
    }

    .card__content .card-description p {
        font-size: 1.8rem
    }
}

.card__title {
    display: block;
    width: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center
}

.card__title p {
    font: normal 700 3.6rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.card__title p span {
    color: var(--t-medium)
}

.card__title p.small {
    font-size: 3.4rem
}

.card__title p.permanent {
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .card__title {
        width: 50%;
        max-width: 320px
    }
}

@media only screen and (min-width:1200px) {
    .card__title {
        max-width: 400px
    }

    .card__title p {
        font-size: 5rem
    }

    .card__title p.small {
        font-size: 4.4rem
    }
}

.card__descr {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem;
    opacity: 0
}

@media only screen and (min-width:992px) {
    .card__descr {
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 6rem
    }
}

@media only screen and (min-width:1600px) {
    .card__descr {
        padding: 0 10rem
    }
}

.card__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width:992px) {
    .card__tags {
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .card__tags.desktop-right {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.char {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    display: inline-block;
    will-change: transform
}

.line {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    display: inline-block;
    will-change: transform
}

.mxd-projects-list {
    position: relative;
    width: 100%;
    margin-bottom: 10rem
}

.mxd-projects-list.no-margin-bottom {
    margin-bottom: 0
}

.mxd-projects-list>.mxd-projects-list__item:nth-child(n+2) {
    margin-top: -1px
}

@media only screen and (min-width:768px) {
    .mxd-projects-list {
        margin-bottom: 9.3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-projects-list {
        margin-bottom: 17.3rem
    }

    .mxd-projects-list.no-margin-bottom {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-projects-list>.mxd-projects-list__item .mxd-projects-list__inner {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-projects-list:hover>.mxd-projects-list__item:not(:hover) .mxd-projects-list__inner {
        opacity: .3;
        scale: .984
    }
}

@media only screen and (min-width:1600px) {
    .mxd-projects-list {
        margin-bottom: 19.3rem
    }
}

.mxd-projects-list__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5.4rem 0 5.2rem 0
}

@media only screen and (min-width:1200px) {
    .mxd-projects-list__item {
        padding: 5.4rem 0
    }
}

.mxd-projects-list__divider {
    position: absolute;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-muted)
}

.mxd-projects-list__divider.top {
    top: 0
}

.mxd-projects-list__divider.bottom {
    bottom: 0
}

.mxd-projects-list__inner {
    position: relative
}

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

    .mxd-projects-list__date,
    .mxd-projects-list__meta,
    .mxd-projects-list__niche {
        padding-top: .5rem
    }
}

.mxd-projects-list__niche {
    margin-bottom: 1.7rem
}

@media only screen and (min-width:768px) {
    .mxd-projects-list__niche {
        margin-bottom: 2.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-projects-list__niche {
        margin-bottom: 0
    }
}

.mxd-projects-list__title h3,
.mxd-projects-list__title p {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-projects-list__title h3 span,
.mxd-projects-list__title p span {
    color: var(--t-medium)
}

.mxd-projects-list__title h3.permanent,
.mxd-projects-list__title p.permanent {
    color: var(--nl-white)
}

.mxd-projects-list__title h3.accent,
.mxd-projects-list__title p.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-projects-list__title h3.opposite,
.mxd-projects-list__title p.opposite {
    color: var(--t-opp-bright)
}

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

    .mxd-projects-list__title h3,
    .mxd-projects-list__title p {
        font-size: 4rem
    }
}

.mxd-projects-list__meta {
    margin-top: 2.2rem
}

@media only screen and (min-width:768px) {
    .mxd-projects-list__meta {
        margin-top: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-projects-list__meta {
        margin-top: 0
    }
}

.mxd-projects-list__date {
    margin-top: 2.2rem
}

@media only screen and (min-width:768px) {
    .mxd-projects-list__date {
        margin-top: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-projects-list__date {
        margin-top: 0
    }
}

.mxd-services-list {
    position: relative;
    width: 100%;
    margin-top: -100vh
}

.mxd-services-list.no-marquee {
    margin-top: 0
}

.mxd-services-list>.mxd-services-list__item:nth-child(n+2) {
    margin-top: -1px
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-services-list>.mxd-services-list__item .mxd-services-list__inner {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-services-list:hover>.mxd-services-list__item:not(:hover) .mxd-services-list__inner {
        opacity: .3;
        scale: .984
    }
}

.mxd-section__marquee-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden
}

.marquee-bg__content {
    -webkit-transition: opacity var(--_animspeed-medium) ease-in-out;
    -moz-transition: opacity var(--_animspeed-medium) ease-in-out;
    transition: opacity var(--_animspeed-medium) ease-in-out
}

.marquee-bg__top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 6px
}

.marquee-bg__center {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 6px;
    width: 100%
}

.marquee-bg__bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 6px
}

.marquee-bg__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh
}

.mxd-services-list__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5.4rem 0 5.2rem 0
}

@media only screen and (min-width:1200px) {
    .mxd-services-list__item {
        padding: 5.4rem 0
    }
}

.mxd-services-list__divider {
    position: absolute;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-medium)
}

.mxd-services-list__divider.top {
    top: 0
}

.mxd-services-list__divider.bottom {
    bottom: 0
}

.mxd-services-list__inner {
    position: relative
}

@media only screen and (min-width:1200px) {
    .mxd-services-list__number {
        padding-top: .5rem
    }
}

.mxd-services-list__descr {
    max-width: 400px;
    margin-top: 2rem
}

.mxd-services-list__descr p {
    line-height: 1.4
}

@media only screen and (min-width:768px) {
    .mxd-services-list__descr {
        max-width: 560px;
        margin-top: 2.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-services-list__descr {
        margin-top: 0;
        padding-top: .3rem
    }
}

.mxd-services-list__number {
    margin-bottom: 1.7rem
}

@media only screen and (min-width:768px) {
    .mxd-services-list__number {
        margin-bottom: 2.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-services-list__number {
        margin-bottom: 0
    }
}

.mxd-services-list__title h3 {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-services-list__title h3 span {
    color: var(--t-medium)
}

.mxd-services-list__title h3.permanent {
    color: var(--nl-white)
}

.mxd-services-list__title h3.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-services-list__title h3.opposite {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-services-list__title h3 {
        font-size: 4rem
    }
}

.mxd-cpb-list {
    position: relative;
    width: 100%
}

.mxd-cpb-list>.mxd-cpb-list__item:nth-child(n+2) {
    margin-top: -1px
}

.mxd-cpb-list__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5.5rem 0 5.5rem 0
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__item {
        padding: 5.4rem 0 6rem 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-cpb-list__item {
        padding: 6rem 0
    }
}

.mxd-cpb-list__divider {
    position: absolute;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-medium)
}

.mxd-cpb-list__divider.top {
    top: 0
}

.mxd-cpb-list__divider.bottom {
    bottom: 0
}

.mxd-cpb-list__title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:1200px) {
    .mxd-cpb-list__title {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.mxd-cpb-list__number {
    margin-bottom: 1.7rem
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__number {
        margin-bottom: 2.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-cpb-list__number {
        margin-bottom: 0
    }
}

.mxd-cpb-list__name {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright);
    margin-bottom: 2.8rem
}

.mxd-cpb-list__name span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__name {
        font-size: 4rem;
        margin-bottom: 3.6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-cpb-list__name {
        max-width: 300px;
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-cpb-list__name {
        font-size: 5rem;
        max-width: 370px
    }
}

.mxd-cpb-list__image {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem
}

.mxd-cpb-list__image img {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__image {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-cpb-list__image {
        margin-bottom: 0
    }
}

.mxd-cpb-list__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__data {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.mxd-cpb-list__descr {
    margin-bottom: 2.2rem
}

@media only screen and (min-width:768px) {
    .mxd-cpb-list__descr {
        max-width: 460px;
        margin-bottom: 0
    }
}

.mxd-stack-services {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25svh;
    width: 100%;
    overflow: hidden;
    background-color: var(--base)
}

.mxd-stack-services.opposite {
    background-color: var(--base-opp)
}

.mxd-stack-services__card {
    position: relative;
    display: block;
    width: 100%;
    height: 100svh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--base);
    border-top: 1px solid var(--st-medium)
}

.services-card__wrapper {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    will-change: transform;
    padding: 3.7rem 3rem 3rem 3rem
}

@media only screen and (min-width:768px) {
    .services-card__wrapper {
        padding: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .services-card__wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 6rem;
        padding: 6rem
    }
}

@media only screen and (min-width:1600px) {
    .services-card__wrapper {
        gap: 10rem;
        padding: 10rem
    }
}

.services-card__image {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden
}

.services-card__image img,
.services-card__image video {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform
}

@media only screen and (min-width:768px) {
    .services-card__image {
        display: block
    }
}

@media only screen and (min-width:1200px) {
    .services-card__image {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0
    }
}

.services-card__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:1200px) {
    .services-card__content {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: auto
    }
}

.services-card__subtitle {
    margin-bottom: .8rem
}

.services-card__subtitle .tag {
    color: var(--t-medium)
}

@media only screen and (min-width:1200px) {
    .services-card__subtitle {
        margin-bottom: 2.4rem
    }
}

@media only screen and (min-width:1600px) {
    .services-card__subtitle {
        margin-bottom: 1.5rem
    }
}

.services-card__title {
    margin-bottom: 2.4rem
}

.services-card__title p {
    font: normal 700 5rem/1.1 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.services-card__title .line-mask {
    padding-bottom: 9px;
    margin-bottom: -9px
}

@media only screen and (min-width:1200px) {
    .services-card__title {
        margin-bottom: 4.2rem
    }

    .services-card__title p {
        font-size: 7.5rem;
        letter-spacing: -.3rem
    }
}

@media only screen and (min-width:1600px) {
    .services-card__title {
        margin-bottom: 3.9rem
    }

    .services-card__title p {
        font-size: 9.5rem
    }
}

.services-card__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 385px;
    opacity: 0;
    margin-bottom: 2rem
}

.services-card__tags .tags-column {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:768px) {
    .services-card__tags {
        gap: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .services-card__tags {
        margin-bottom: 0
    }
}

.services-card__descr {
    margin-bottom: 2.9rem
}

@media only screen and (min-width:1200px) {
    .services-card__descr {
        max-width: 520px
    }
}

@media only screen and (min-width:1600px) {
    .services-card__descr {
        max-width: 680px
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {

    .mxd-resume>.mxd-resume__item .mxd-resume__date,
    .mxd-resume>.mxd-resume__item .mxd-resume__link,
    .mxd-resume>.mxd-resume__item .mxd-resume__title {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-resume:hover>.mxd-resume__item:not(:hover) .mxd-resume__date,
    .mxd-resume:hover>.mxd-resume__item:not(:hover) .mxd-resume__link,
    .mxd-resume:hover>.mxd-resume__item:not(:hover) .mxd-resume__title {
        opacity: .3
    }
}

.mxd-resume__item {
    margin-bottom: 4.3rem
}

.mxd-resume__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-resume__item {
        margin-bottom: 0
    }

    .no-touch .mxd-resume__item:hover .mxd-resume__image img {
        clip-path: inset(0 0 0 0);
        -webkit-transition: clip-path 0s;
        -moz-transition: clip-path 0s;
        transition: clip-path 0s
    }
}

.mxd-resume__date,
.mxd-resume__link,
.mxd-resume__title {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

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

    .mxd-resume__date,
    .mxd-resume__link,
    .mxd-resume__title {
        height: 100%;
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.mxd-resume__title {
    margin-bottom: 2.4rem
}

.mxd-resume__title p {
    font: normal 700 2.6rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .mxd-resume__title {
        margin-bottom: 0
    }

    .mxd-resume__title p {
        font-size: 3.4rem;
        letter-spacing: -.1rem
    }
}

.mxd-resume__image {
    position: relative;
    width: 100%;
    height: auto;
    height: 160px;
    margin-bottom: 2.4rem
}

.mxd-resume__image img {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:1200px) {
    .mxd-resume__image {
        max-height: 100px;
        margin-bottom: 0
    }

    .mxd-resume__image img {
        max-height: 100px;
        clip-path: inset(0 100% 0 0);
        will-change: clip-path;
        -webkit-transition: clip-path .6s;
        -moz-transition: clip-path .6s;
        transition: clip-path .6s
    }
}

.mxd-resume__link p {
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.mxd-resume__link p a {
    color: var(--t-bright)
}

.mxd-resume__date p {
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

@media only screen and (min-width:1200px) {
    .mxd-resume__date {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {

    .mxd-awards>.mxd-awards__item .mxd-awards__date,
    .mxd-awards>.mxd-awards__item .mxd-awards__tags,
    .mxd-awards>.mxd-awards__item .mxd-awards__title {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-awards:hover>.mxd-awards__item:not(:hover) .mxd-awards__date,
    .mxd-awards:hover>.mxd-awards__item:not(:hover) .mxd-awards__tags,
    .mxd-awards:hover>.mxd-awards__item:not(:hover) .mxd-awards__title {
        opacity: .3
    }
}

.mxd-awards__item {
    display: block;
    margin-bottom: 7.3rem
}

.mxd-awards__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-awards__item {
        margin-bottom: 0
    }

    .no-touch .mxd-awards__item:hover .mxd-awards__image img {
        clip-path: inset(0 0 0 0);
        -webkit-transition: clip-path 0s;
        -moz-transition: clip-path 0s;
        transition: clip-path 0s
    }
}

.mxd-awards__date,
.mxd-awards__tags,
.mxd-awards__title {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-awards__date p,
.mxd-awards__tags p,
.mxd-awards__title p {
    font: normal 700 2.6rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

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

    .mxd-awards__date,
    .mxd-awards__tags,
    .mxd-awards__title {
        height: 100%;
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .mxd-awards__date p,
    .mxd-awards__tags p,
    .mxd-awards__title p {
        font-size: 3.4rem;
        letter-spacing: -.1rem
    }
}

.mxd-awards__title {
    margin-bottom: .1rem
}

.mxd-awards__image {
    position: relative;
    width: 100%;
    height: 160px;
    margin-bottom: 1.9rem
}

.mxd-awards__image img {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:1200px) {
    .mxd-awards__image {
        max-height: 100px;
        margin-bottom: 0
    }

    .mxd-awards__image img {
        max-height: 100px;
        clip-path: inset(0 100% 0 0);
        will-change: clip-path;
        -webkit-transition: clip-path .6s;
        -moz-transition: clip-path .6s;
        transition: clip-path .6s
    }
}

.mxd-awards__tags {
    color: var(--t-medium)
}

.mxd-awards__tags a {
    color: var(--t-medium)
}

.mxd-awards__date p {
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

@media only screen and (min-width:1200px) {
    .mxd-awards__date {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-team-list>.mxd-team-list__item .mxd-team-list__inner {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-team-list:hover>.mxd-team-list__item:not(:hover) .mxd-team-list__inner {
        opacity: .3;
        scale: .984
    }
}

.mxd-team-list__item {
    position: relative;
    margin-bottom: 5.5rem
}

.mxd-team-list__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-team-list__item {
        height: 10rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__item {
        height: 14rem;
        margin-bottom: 0
    }

    .no-touch .mxd-team-list__item:hover .mxd-team-list__name {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .no-touch .mxd-team-list__item:hover .mxd-team-list__photo {
        display: block;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.mxd-team-list__position {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-team-list__position p {
    font: normal 600 1.2rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.mxd-team-list__position p a {
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-team-list__position {
        height: 10rem;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (min-width:992px) {
    .mxd-team-list__position p {
        font-size: 1.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__position {
        height: 100%;
        height: 14rem;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.mxd-team-list__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:768px) {
    .mxd-team-list__data {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -moz-box-orient: horizontal;
        -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 2.2rem;
        height: 10rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__data {
        height: 14rem
    }
}

.mxd-team-list__photo {
    width: 14rem;
    height: 14rem;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem
}

.mxd-team-list__photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-team-list__photo {
        width: 10rem;
        height: 10rem;
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__photo {
        width: 14rem;
        height: 14rem;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }
}

.mxd-team-list__name {
    margin-bottom: 1.5rem
}

.mxd-team-list__name p {
    font: normal 700 2.6rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-team-list__name {
        margin-bottom: 0
    }
}

@media only screen and (min-width:992px) {
    .mxd-team-list__name p {
        font-size: 3.4rem;
        letter-spacing: -.1rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__name {
        -webkit-transform: translateX(8.1rem);
        -moz-transform: translateX(8.1rem);
        -ms-transform: translateX(8.1rem);
        transform: translateX(8.1rem);
        -webkit-transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-team-list__name p {
        font-size: 5.4rem
    }
}

.mxd-team-list__socials {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-team-list__socials ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.mxd-team-list__socials ul li {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.mxd-team-list__socials ul li a {
    font: normal 600 1.2rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-team-list__socials {
        height: 100%;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .mxd-team-list__socials ul {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media only screen and (min-width:992px) {
    .mxd-team-list__socials ul li a {
        font-size: 1.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-team-list__socials ul li a {
        color: var(--t-medium)
    }

    .no-touch .mxd-team-list__socials ul li a:hover {
        color: var(--t-bright)
    }
}

.mxd-team-grid {
    position: relative
}

.mxd-team-grid__item {
    margin-bottom: 7.4rem
}

.mxd-team-grid__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-team-grid__item {
        margin-bottom: 0
    }
}

.mxd-team-grid__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem
}

.mxd-team-grid__media {
    position: relative
}

@media only screen and (min-width:1200px) {
    .no-touch .mxd-team-grid__media:hover .mxd-team-grid__photo img {
        -webkit-filter: blur(6px);
        filter: blur(6px);
        -webkit-transform: scale(1.04);
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        transform: scale(1.04)
    }

    .no-touch .mxd-team-grid__media:hover .mxd-team-grid__socials {
        opacity: 1
    }
}

.mxd-team-grid__photo {
    position: relative;
    overflow: hidden
}

.mxd-team-grid__photo img {
    display: block;
    width: 100%;
    height: auto
}

@media only screen and (min-width:1200px) {
    .mxd-team-grid__photo img {
        -webkit-filter: blur(0);
        filter: blur(0);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }
}

.mxd-team-grid__socials {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    padding: 1rem
}

@media only screen and (min-width:1200px) {
    .mxd-team-grid__socials {
        opacity: 0;
        -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium) var(--_animbezier)
    }
}

.mxd-team-grid__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.mxd-team-grid__name,
.mxd-team-grid__position {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-toolbox__item {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem;
    margin-top: -.1rem;
    padding: 3rem .2rem 3rem .2rem
}

.mxd-toolbox__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-medium)
}

.mxd-toolbox__divider.divider-top {
    top: 0
}

.mxd-toolbox__divider.divider-bottom {
    bottom: 0
}

.mxd-toolbox__icon {
    position: relative;
    width: 5rem;
    height: 4rem
}

.mxd-toolbox__icon img {
    display: block;
    width: auto;
    height: 100%
}

.mxd-toolbox__name p {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.03rem;
    color: var(--t-bright);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.mxd-tech-stack {
    position: relative;
    margin-top: 7.5rem
}

@media only screen and (min-width:768px) {
    .mxd-tech-stack {
        margin-top: 9.5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-tech-stack {
        margin-top: 0
    }
}

.mxd-tech-stack__column {
    position: relative
}

.mxd-tech-stack__item {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem;
    margin-top: -.1rem;
    padding: 3rem .2rem 3rem .2rem
}

.mxd-tech-stack__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-medium)
}

.mxd-tech-stack__divider.divider-top {
    top: 0
}

.mxd-tech-stack__divider.divider-bottom {
    bottom: 0
}

.mxd-tech-stack__logo {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    color: var(--t-bright);
    background-color: var(--t-muted-extra);
    -moz-border-radius: .3rem;
    border-radius: .3rem;
    padding: 1rem
}

.mxd-tech-stack__logo img,
.mxd-tech-stack__logo svg {
    display: block;
    width: auto;
    height: 100%
}

.mxd-tech-stack__logo svg {
    fill: currentColor
}

.mxd-tech-stack__name p {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.03rem;
    color: var(--t-bright);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.mxd-niche-cards {
    position: relative
}

.mxd-niche-cards__column {
    position: relative
}

.mxd-niche-cards__item {
    position: relative;
    height: 100%;
    padding-bottom: 3rem
}

@media only screen and (min-width:768px) {
    .mxd-niche-cards__item {
        padding-bottom: 6rem
    }
}

.mxd-niche-cards__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: var(--base-tint);
    overflow: hidden
}

.mxd-niche-cards__inner.opposite {
    background-color: var(--base-opp)
}

.mxd-niche-cards__inner.permanent {
    background-color: var(--nl-black)
}

.mxd-niche-cards__inner.fixed-height-desktop {
    height: auto;
    min-height: 420px
}

.mxd-niche-cards__inner.space-between-desktop {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media only screen and (min-width:1200px) {
    .mxd-niche-cards__inner.fixed-height-desktop {
        height: 420px
    }

    .mxd-niche-cards__inner.space-between-desktop {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media only screen and (min-width:1600px) {
    .mxd-niche-cards__inner.fixed-height-desktop {
        height: 500px
    }
}

.mxd-niche-cards__title {
    width: 100%;
    padding: 2.8rem 3rem 0 3rem;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-niche-cards__title {
        padding: 3.6rem 4rem 0 4rem
    }
}

.mxd-niche-cards__name {
    margin-bottom: 1.9rem
}

.mxd-niche-cards__name p {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-niche-cards__name p span {
    color: var(--t-medium)
}

.mxd-niche-cards__name p.permanent {
    color: var(--nl-white)
}

.mxd-niche-cards__name p.accent {
    color: var(--pt-t-accent-bright)
}

.mxd-niche-cards__name p.opposite {
    color: var(--t-opp-bright)
}

.mxd-niche-cards__name p .char {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media only screen and (min-width:768px) {
    .mxd-niche-cards__name p {
        font-size: 3.6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-niche-cards__name p {
        font-size: 4rem
    }
}

.mxd-niche-cards__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: .4rem;
    margin-bottom: 2.2rem
}

.mxd-niche-cards__descr {
    width: 100%;
    padding: 0 3rem 3rem 3rem;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-niche-cards__descr {
        padding: 0 4rem 4rem 4rem
    }

    .mxd-niche-cards__descr.wide {
        max-width: 360px
    }

    .mxd-niche-cards__descr.short {
        max-width: 300px
    }
}

.mxd-niche-cards__image {
    position: relative;
    width: 100%;
    z-index: 1
}

.mxd-niche-cards__image.absolute-desktop-bottom,
.mxd-niche-cards__image.absolute-desktop-full {
    position: relative
}

.mxd-niche-cards__image.absolute-desktop-aside {
    padding: .5rem 3rem 0 3rem
}

.mxd-niche-cards__image img {
    display: block;
    width: 100%;
    height: auto
}

@media only screen and (min-width:1200px) {
    .mxd-niche-cards__image.absolute-desktop-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto
    }

    .mxd-niche-cards__image.absolute-desktop-full {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%
    }

    .mxd-niche-cards__image.absolute-desktop-full img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .mxd-niche-cards__image.absolute-desktop-aside {
        position: absolute;
        right: -8rem;
        bottom: -3rem;
        width: 200px
    }
}

@media only screen and (min-width:1400px) {
    .mxd-niche-cards__image.absolute-desktop-aside {
        width: 240px;
        bottom: -2rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-niche-cards__image.absolute-desktop-aside {
        right: -8rem;
        bottom: -3rem;
        width: 320px
    }
}

.mxd-niche-cards__gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%
}

.mxd-niche-cards__gradient.gradient-linear {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(var(--base-tint-rgb), 1)), color-stop(50%, rgba(var(--base-tint-rgb), .6)), to(rgba(var(--base-tint-rgb), 0)));
    background: -moz-linear-gradient(top, rgba(var(--base-tint-rgb), 1) 10%, rgba(var(--base-tint-rgb), .6) 50%, rgba(var(--base-tint-rgb), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--base-tint-rgb), 1) 10%, rgba(var(--base-tint-rgb), .6) 50%, rgba(var(--base-tint-rgb), 0) 100%)
}

.mxd-niche-cards__gradient.gradient-radial {
    background: -moz-radial-gradient(circle closest-side, rgba(var(--nl-black-rgb), .2), rgba(var(--nl-black-rgb), .9));
    background: radial-gradient(circle closest-side, rgba(var(--nl-black-rgb), .2), rgba(var(--nl-black-rgb), .9))
}

@media only screen and (min-width:1200px) {
    .mxd-niche-cards__gradient.gradient-linear {
        background: #fff;
        background: -webkit-gradient(linear, left top, right top, from(rgba(var(--base-tint-rgb), 1)), color-stop(80%, rgba(var(--base-tint-rgb), .2)), to(rgba(var(--base-tint-rgb), 0)));
        background: -moz-linear-gradient(left, rgba(var(--base-tint-rgb), 1) 0, rgba(var(--base-tint-rgb), .2) 80%, rgba(var(--base-tint-rgb), 0) 100%);
        background: linear-gradient(90deg, rgba(var(--base-tint-rgb), 1) 0, rgba(var(--base-tint-rgb), .2) 80%, rgba(var(--base-tint-rgb), 0) 100%)
    }
}

.mxd-clients {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-clients {
        gap: 9.5rem;
        padding-top: 2.4rem
    }
}

.mxd-clients__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 5.4rem
}

.mxd-clients__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:992px) {
    .mxd-clients__item {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-clients__item {
        gap: 2.2rem;
        margin-bottom: 0
    }
}

.mxd-clients__logo {
    width: 100%;
    height: 4.2rem
}

.mxd-clients__logo img,
.mxd-clients__logo svg {
    display: block;
    width: auto;
    height: 100%
}

.mxd-clients__logo svg {
    fill: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-clients__logo {
        height: 4.8rem
    }
}

.mxd-testimonials-sticky {
    position: relative;
    width: 100%
}

.mxd-testimonials-sticky__static {
    position: sticky;
    top: 12.7rem;
    padding-bottom: 10.3rem
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-sticky__static {
        top: 18.1rem;
        padding-bottom: 17rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-sticky__static {
        top: 17.6rem;
        padding-bottom: 18rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-testimonials-sticky__static {
        padding-bottom: 20rem
    }
}

.mxd-testimonials-sticky__scroll {
    position: relative;
    width: 100%
}

.mxd-testimonials-sticky__cards {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-sticky__cards {
        gap: 18rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-testimonials-sticky__cards {
        gap: 20rem
    }
}

.mxd-testimonials-sticky__row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1340px
}

.mxd-testimonials-sticky__column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-testimonials-sticky__column.margin-bottom-mobile {
    margin-bottom: 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-sticky__column.margin-bottom-mobile {
        margin-bottom: 0
    }

    .mxd-testimonials-sticky__column.has-padding-top {
        padding-top: 6rem
    }

    .mxd-testimonials-sticky__column.has-padding-bottom {
        padding-bottom: 6rem
    }
}

.mxd-testimonials-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3rem;
    margin-top: 3rem;
    background-color: var(--base-tint)
}

.mxd-testimonials-card.fullheight {
    height: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card {
        padding: 4rem;
        margin-top: 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-card {
        margin-top: 0
    }
}

.mxd-testimonials-card__controls {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2.3rem
}

.mxd-testimonials-card__quote {
    position: relative;
    width: 10rem
}

.mxd-testimonials-card__quote svg {
    width: 100%;
    height: auto;
    fill: var(--t-muted)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card__quote {
        width: 16rem
    }
}

.mxd-testimonials-card__content {
    margin-bottom: 3.7rem
}

.mxd-testimonials-card__descr {
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-testimonials-card__descr span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card__descr {
        font-size: 3.4rem
    }
}

.mxd-testimonials-card__author {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem
}

.mxd-testimonials-card__photo {
    width: 5rem;
    height: 5rem
}

.mxd-testimonials-card__photo.round {
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden
}

.mxd-testimonials-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card__photo {
        width: 6rem;
        height: 6rem
    }
}

.mxd-testimonials-card__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .2rem
}

.mxd-testimonials-card__name {
    font: normal 700 2rem/1.2 var(--_font-default);
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card__name {
        font-size: 2.4rem
    }
}

.mxd-testimonials-card__position {
    display: inline-block;
    font: normal 600 1.2rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem
}

.mxd-testimonials-card__position a {
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card__position {
        font-size: 1.4rem
    }
}

.mxd-testimonials-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3rem
}

.mxd-testimonials-image.justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.mxd-testimonials-image.justify-end {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-image {
        margin-top: 3rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-image {
        margin-top: 0
    }

    .mxd-testimonials-image.has-padding-top {
        padding-top: 6rem
    }
}

.mxd-testimonials-image__wrap {
    position: relative;
    width: 20rem;
    height: 20rem
}

.mxd-testimonials-image__wrap img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-image__wrap {
        width: 24rem;
        height: 24rem
    }
}

.testimonials-slider {
    position: relative;
    position: relative;
    height: auto;
    padding: 0 3rem
}

.testimonials-slider.no-padding {
    padding: 0
}

@media only screen and (min-width:768px) {
    .testimonials-slider {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .testimonials-slider {
        padding: 0
    }
}

@media only screen and (min-width:1200px) {
    .testimonials-slider__shadow {
        position: absolute;
        top: 0;
        right: 0;
        width: 10rem;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(var(--base-rgb), 0)), to(rgba(var(--base-rgb), 1)));
        background: -moz-linear-gradient(left, rgba(var(--base-rgb), 0) 0, rgba(var(--base-rgb), 1) 100%);
        background: linear-gradient(to right, rgba(var(--base-rgb), 0) 0, rgba(var(--base-rgb), 1) 100%);
        z-index: 1
    }
}

.swiper-testimonials {
    position: relative;
    height: 100%;
    padding-bottom: 6rem
}

@media only screen and (min-width:992px) {
    .swiper-testimonials.no-padding {
        padding-bottom: 0
    }
}

.swiper-slide {
    width: 100%;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: .5;
    -webkit-transition: opacity var(--_animspeed-slow) var(--_animbezier), -webkit-filter var(--_animspeed-slow);
    transition: opacity var(--_animspeed-slow) var(--_animbezier), -webkit-filter var(--_animspeed-slow);
    -moz-transition: filter var(--_animspeed-slow), opacity var(--_animspeed-slow) var(--_animbezier);
    transition: filter var(--_animspeed-slow), opacity var(--_animspeed-slow) var(--_animbezier);
    transition: filter var(--_animspeed-slow), opacity var(--_animspeed-slow) var(--_animbezier), -webkit-filter var(--_animspeed-slow)
}

.swiper-slide.mxd-fullwidth-slide {
    width: 100%
}

.swiper-slide.swiper-slide-active {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1
}

@media only screen and (min-width:768px) {
    .swiper-slide {
        width: auto
    }

    .swiper-slide.mxd-fullwidth-slide {
        width: 100%
    }
}

.mxd-testimonials-card {
    margin: 0
}

.mxd-testimonials-card.slider-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-card.slider-card {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 640px;
        max-width: 460px
    }
}

@media only screen and (min-width:1400px) {
    .mxd-testimonials-card.slider-card {
        max-width: 500px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-testimonials-card.slider-card {
        height: 700px;
        max-width: 630px
    }
}

.swiper-horizontal .mxd-slider-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 3rem;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    width: auto;
    margin: 0
}

.swiper-horizontal .mxd-slider-btn::after {
    display: none
}

.swiper-horizontal .mxd-slider-btn-prev {
    left: 0
}

.swiper-horizontal .mxd-slider-btn-next {
    right: 0
}

@media only screen and (min-width:768px) {
    .swiper-horizontal .mxd-slider-btn-next {
        right: auto;
        left: 390px
    }
}

@media only screen and (min-width:1400px) {
    .swiper-horizontal .mxd-slider-btn-next {
        left: 430px
    }
}

@media only screen and (min-width:1600px) {
    .swiper-horizontal .mxd-slider-btn-next {
        left: 560px
    }
}

.mxd-testimonials-project {
    position: relative
}

.mxd-testimonials-project__item {
    margin-bottom: 7.4rem
}

.mxd-testimonials-project__item:last-of-type {
    margin-bottom: 0
}

.mxd-testimonials-project__item.manifest-item {
    margin-bottom: 6.8rem
}

.mxd-testimonials-project__item.manifest-item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-project__item {
        margin-bottom: 0
    }

    .mxd-testimonials-project__item.manifest-item {
        margin-bottom: 0
    }
}

.mxd-testimonials-project__subtitle.pre-manifest {
    margin-bottom: 1.8rem
}

.mxd-testimonials-project__subtitle.pre-grid {
    margin-bottom: 3rem
}

.mxd-testimonials-project__subtitle p {
    display: block;
    overflow: hidden;
    color: var(--t-medium);
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.mxd-testimonials-project__subtitle p span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-project__subtitle.pre-manifest {
        margin-bottom: 3.6rem
    }

    .mxd-testimonials-project__subtitle.pre-grid {
        margin-bottom: 5.5rem
    }
}

.mxd-testimonials-project__manifest {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2.8rem
}

@media only screen and (min-width:1200px) {
    .mxd-testimonials-project__manifest {
        gap: 3.8rem;
        max-width: 760px
    }

    .mxd-testimonials-project__manifest.fullwidth {
        max-width: none
    }
}

.mxd-testimonials-project__author {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem
}

.mxd-testimonials-project__photo {
    width: 5rem;
    height: 5rem
}

.mxd-testimonials-project__photo.round {
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden
}

.mxd-testimonials-project__photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-project__photo {
        width: 6rem;
        height: 6rem
    }
}

.mxd-testimonials-project__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .2rem
}

.mxd-testimonials-project__name {
    font: normal 700 2rem/1.2 var(--_font-default);
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-project__name {
        font-size: 2.4rem
    }
}

.mxd-testimonials-project__position {
    display: inline-block;
    font: normal 600 1.2rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem
}

.mxd-testimonials-project__position a {
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-testimonials-project__position {
        font-size: 1.4rem
    }
}

.mxd-next-prj {
    position: relative
}

.mxd-next-prj__data {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-next-prj__data {
        padding: 0 6rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__data {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 5rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-next-prj__data {
        padding: 0 10rem
    }
}

.mxd-next-prj__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__info {
        width: 70%
    }
}

.mxd-next-prj__caption {
    margin-bottom: 2.2rem
}

.mxd-next-prj__caption p {
    font: normal 600 5rem/1.2 var(--_font-default);
    ;
    color: var(--t-bright)
}

@media only screen and (min-width:768px) {
    .mxd-next-prj__caption {
        margin-bottom: 2.3rem
    }

    .mxd-next-prj__caption p {
        font-size: 5.4rem;

    }
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__caption {
        margin-bottom: 2rem
    }

    .mxd-next-prj__caption p {
        font-size: 7.5rem;
        letter-spacing: -.3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-next-prj__caption p {
        font-size: 9.5rem
    }
}

.mxd-next-prj__name {
    margin-bottom: 4rem
}

.mxd-next-prj__name a,
.mxd-next-prj__name p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-next-prj__name a span,
.mxd-next-prj__name p span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-next-prj__name {
        margin-bottom: 4.2rem
    }

    .mxd-next-prj__name a,
    .mxd-next-prj__name p {
        font-size: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__name {
        margin-bottom: 0
    }
}

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

    .mxd-next-prj__name a,
    .mxd-next-prj__name p {
        font-size: 4.4rem
    }
}

.mxd-next-prj__arrow {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 15rem;
    margin-bottom: 4.5rem
}

.mxd-next-prj__arrow svg {
    display: block;
    width: 15rem;
    height: 15rem;
    fill: var(--t-muted-extra)
}

.mxd-next-prj__arrow .arrow-container-1,
.mxd-next-prj__arrow .arrow-container-2 {
    width: 15rem;
    height: 15rem
}

@media only screen and (min-width:768px) {
    .mxd-next-prj__arrow {
        margin-bottom: 5rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__arrow {
        width: 30%;
        margin-bottom: 0
    }
}

.mxd-next-prj__media {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 600px
}

@media only screen and (min-width:768px) {
    .mxd-next-prj__media {
        height: 760px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-next-prj__media {
        height: 100vh
    }
}

.mxd-next-prj__image {
    position: relative;
    width: 100%;
    height: 100%
}

.mxd-next-prj__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-blog-grid {
    position: relative
}

.mxd-blog-grid__gallery {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media only screen and (min-width:992px) {
    .mxd-blog-grid__gallery.pre-object-link-desktop {
        margin-bottom: 7.6rem
    }
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {
    .mxd-blog-grid__gallery>.mxd-blog-item {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-blog-grid__gallery:hover>.mxd-blog-item:not(:hover) .mxd-blog-item__media {
        clip-path: inset(.4rem 0 .4rem 0);
        -webkit-transform: translateY(-.4rem);
        -moz-transform: translateY(-.4rem);
        -ms-transform: translateY(-.4rem);
        transform: translateY(-.4rem)
    }

    .mxd-blog-grid__gallery:hover>.mxd-blog-item:not(:hover) .mxd-blog-item__caption {
        -webkit-transform: translateY(-.8rem);
        -moz-transform: translateY(-.8rem);
        -ms-transform: translateY(-.8rem);
        transform: translateY(-.8rem)
    }
}

.mxd-blog-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 3rem;
    margin-bottom: 6.6rem;
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-blog-item:last-of-type {
    margin-bottom: 0
}

.mxd-blog-item.has-margin-bottom {
    margin-bottom: 6.6rem
}

@media only screen and (min-width:768px) {
    .mxd-blog-item {
        margin-bottom: 6.8rem
    }
}

@media only screen and (min-width:992px) {
    .mxd-blog-item {
        margin-bottom: 0
    }
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag {
    -webkit-transform: translateY(.8rem);
    -moz-transform: translateY(.8rem);
    -ms-transform: translateY(.8rem);
    transform: translateY(.8rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(2) {
    -webkit-transform: translateY(1.2rem);
    -moz-transform: translateY(1.2rem);
    -ms-transform: translateY(1.2rem);
    transform: translateY(1.2rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(3) {
    -webkit-transform: translateY(1.6rem);
    -moz-transform: translateY(1.6rem);
    -ms-transform: translateY(1.6rem);
    transform: translateY(1.6rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(4) {
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(5) {
    -webkit-transform: translateY(2.4rem);
    -moz-transform: translateY(2.4rem);
    -ms-transform: translateY(2.4rem);
    transform: translateY(2.4rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(6) {
    -webkit-transform: translateY(2.8rem);
    -moz-transform: translateY(2.8rem);
    -ms-transform: translateY(2.8rem);
    transform: translateY(2.8rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(7) {
    -webkit-transform: translateY(3.2rem);
    -moz-transform: translateY(3.2rem);
    -ms-transform: translateY(3.2rem);
    transform: translateY(3.2rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__tags .tag:nth-of-type(8) {
    -webkit-transform: translateY(3.6rem);
    -moz-transform: translateY(3.6rem);
    -ms-transform: translateY(3.6rem);
    transform: translateY(3.6rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__title {
    -webkit-transform: translateY(.8rem);
    -moz-transform: translateY(.8rem);
    -ms-transform: translateY(.8rem);
    transform: translateY(.8rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__title .blog-item-s,
.no-touch .mxd-blog-item:hover .mxd-blog-item__title .blog-name-m {
    line-height: 1.4
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__media {
    -webkit-transform: translateY(.6rem);
    -moz-transform: translateY(.6rem);
    -ms-transform: translateY(.6rem);
    transform: translateY(.6rem)
}

.no-touch .mxd-blog-item:hover .mxd-blog-item__media img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.mxd-blog-item-s {
    padding: 0 1.5rem
}

.mxd-blog-item__date {
    margin-bottom: .6rem
}

.mxd-blog-item__media {
    display: inline-block;
    clip-path: inset(0 0 0 0);
    overflow: hidden;
    -webkit-transition: clip-path var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium);
    transition: clip-path var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium);
    -moz-transition: transform var(--_animspeed-medium), clip-path var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium), clip-path var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium), clip-path var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium)
}

.mxd-blog-item__media img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    will-change: transform;
    -webkit-transition: -webkit-transform var(--_animspeed-medium);
    transition: -webkit-transform var(--_animspeed-medium);
    -moz-transition: transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium)
}

.mxd-blog-item__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6rem;
    margin-top: 1.8rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.mxd-blog-item__title {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    max-width: 80%
}

.mxd-blog-item__title .blog-name-m,
.mxd-blog-item__title .blog-name-s {
    -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
    transition: all var(--_animspeed-medium) var(--_animbezier)
}

.mxd-blog-item__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: .4rem
}

.mxd-blog-item__tags .tag {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-blog-list {
    position: relative;
    width: 100%
}

.mxd-blog-list>.mxd-blog-list__item:nth-child(n+2) {
    margin-top: -1px
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {

    .mxd-blog-list>.mxd-blog-list__item .mxd-blog-list__data,
    .mxd-blog-list>.mxd-blog-list__item .mxd-blog-list__inner,
    .mxd-blog-list>.mxd-blog-list__item .mxd-blog-list__meta {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-blog-list:hover>.mxd-blog-list__item:not(:hover) .mxd-blog-list__inner {
        opacity: .3;
        scale: .984
    }

    .mxd-blog-list:hover>.mxd-blog-list__item:not(:hover) .mxd-blog-list__meta {
        -webkit-transform: translateY(.6rem);
        -moz-transform: translateY(.6rem);
        -ms-transform: translateY(.6rem);
        transform: translateY(.6rem)
    }

    .mxd-blog-list:hover>.mxd-blog-list__item:not(:hover) .mxd-blog-list__data {
        -webkit-transform: translateY(-.5rem);
        -moz-transform: translateY(-.5rem);
        -ms-transform: translateY(-.5rem);
        transform: translateY(-.5rem)
    }
}

.mxd-blog-list__item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5.4rem 0 5.2rem 0
}

@media only screen and (min-width:1200px) {
    .mxd-blog-list__item {
        padding: 5.4rem 0
    }
}

.mxd-blog-list__divider {
    position: absolute;
    left: 3rem;
    width: -moz-calc(100% - 6rem);
    width: calc(100% - 6rem);
    height: 1px;
    background-color: var(--st-muted)
}

.mxd-blog-list__divider.top {
    top: 0
}

.mxd-blog-list__divider.bottom {
    bottom: 0
}

.mxd-blog-list__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.7rem
}

@media only screen and (min-width:768px) {
    .mxd-blog-list__meta {
        margin-bottom: 2.2rem
    }
}

.mxd-blog-list__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-blog-list__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 6rem
    }
}

.mxd-blog-list__title {
    max-width: 710px
}

.mxd-blog-list__title p {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-blog-list__title p span {
    color: var(--t-medium)
}

.mxd-blog-list__title.permanent p {
    color: var(--nl-white)
}

.mxd-blog-list__title.accent p {
    color: var(--pt-t-accent-bright)
}

.mxd-blog-list__title.opposite p {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-blog-list__title p {
        font-size: 4rem
    }
}

.mxd-blog-list__excerpt {
    margin-top: 1.9rem
}

.mxd-blog-list__excerpt p {
    max-width: 510px
}

@media only screen and (min-width:768px) {
    .mxd-blog-list__excerpt {
        margin-top: 2.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-blog-list__excerpt {
        margin-top: 0;
        padding-top: .5rem
    }
}

.mxd-blog-list__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    margin-top: 2.2rem
}

@media only screen and (min-width:768px) {
    .mxd-blog-list__data {
        margin-top: 3.1rem
    }
}

.mxd-posts-area {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (min-width:1200px) {
    .mxd-posts-area {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.mxd-posts-container {
    position: relative;
    width: 100%
}

@media only screen and (min-width:1200px) {
    .mxd-posts-container {
        width: -moz-calc(100% - 460px);
        width: calc(100% - 460px)
    }

    .mxd-posts-container.fullwidth-posts-container {
        width: 100%
    }
}

.mxd-sidebar {
    position: relative;
    width: 100%
}

@media only screen and (min-width:1200px) {
    .mxd-sidebar {
        width: 460px
    }
}

.mxd-post {
    position: relative
}

.post-featured {
    position: relative;
    margin-bottom: 6rem
}

@media only screen and (min-width:1600px) {
    .post-featured {
        padding-right: 2rem
    }
}

.post-featured__container {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 3rem
}

@media only screen and (min-width:768px) {
    .post-featured__container {
        padding: 6rem 6rem 5.4rem 6rem
    }
}

@media only screen and (min-width:1400px) {
    .post-featured__container {
        height: 600px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media only screen and (min-width:1600px) {
    .post-featured__container {
        height: 760px
    }
}

.post-featured__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.post-featured__thumb img {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-featured__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--nl-black-rgb), .3)
}

.post-featured__content {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 11.7rem
}

@media only screen and (min-width:768px) {
    .post-featured__content {
        gap: 11.2rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -moz-box-orient: horizontal;
        -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 6rem
    }
}

.post-featured__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    max-width: 400px;
    gap: 3rem
}

@media only screen and (min-width:1200px) {
    .post-featured__meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: none
    }
}

.post-featured__categories,
.post-featured__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.post-featured__categories span,
.post-featured__data span {
    white-space: nowrap
}

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

    .post-featured__categories,
    .post-featured__data {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media only screen and (min-width:1200px) {
    .post-featured__info {
        max-width: 500px
    }
}

.post-featured__title {
    font: normal 700 4rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.post-featured__title span {
    color: var(--t-medium)
}

.post-featured__title.permanent {
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .post-featured__title {
        font-size: 5rem
    }
}

.post-featured__excerpt {
    margin-top: 2.8rem
}

.post-featured-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 9.3rem
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen {
        padding-top: 10rem
    }
}

.post-featured-fullscreen__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1
}

.post-featured-fullscreen__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-featured-fullscreen__thumb video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.post-featured-fullscreen__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--nl-black-rgb), 0)), color-stop(40%, rgba(var(--nl-black-rgb), 0)), to(rgba(var(--nl-black-rgb), .7)));
    background: -moz-linear-gradient(top, rgba(var(--nl-black-rgb), 0) 0, rgba(var(--nl-black-rgb), 0) 40%, rgba(var(--nl-black-rgb), .7) 100%);
    background: linear-gradient(180deg, rgba(var(--nl-black-rgb), 0) 0, rgba(var(--nl-black-rgb), 0) 40%, rgba(var(--nl-black-rgb), .7) 100%)
}

.post-featured-fullscreen__container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 3.8rem
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen__container {
        padding-bottom: 5.3rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__container {
        padding-bottom: 5.2rem
    }
}

@media only screen and (min-width:1600px) {
    .post-featured-fullscreen__container {
        padding-bottom: 9.2rem
    }
}

.post-featured-fullscreen__link {
    margin-bottom: 1.5rem
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen__link {
        margin-bottom: 1.9rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__link {
        margin-bottom: 1rem
    }
}

.post-featured-fullscreen__info {
    display: block;
    position: relative
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__info {
        max-width: 830px
    }
}

.post-featured-fullscreen__title {
    font: normal 600 5rem/1.2 var(--_font-default);
    letter-spacing: -.24rem;
    color: var(--t-bright);
    margin-bottom: 2.5rem
}

.post-featured-fullscreen__title span {
    color: var(--t-medium)
}

.post-featured-fullscreen__title.permanent {
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen__title {
        font-size: 7.5rem;
        letter-spacing: -.3rem;
        margin-bottom: 3.3rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__title {
        font-size: 9.5rem;
        margin-bottom: 2.6rem
    }
}

.post-featured-fullscreen__excerpt {
    max-width: 660px;
    margin-bottom: 3.4rem
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen__excerpt {
        margin-bottom: 4.9rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__excerpt {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__aside {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        height: 100%;
        padding-top: 3.6rem
    }
}

.post-featured-fullscreen__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    max-width: 400px;
    gap: 3rem
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: none
    }
}

.post-featured-fullscreen__categories,
.post-featured-fullscreen__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.post-featured-fullscreen__categories span,
.post-featured-fullscreen__data span {
    white-space: nowrap
}

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

    .post-featured-fullscreen__categories,
    .post-featured-fullscreen__data {
        -webkit-box-align: end;
        -moz-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.post-featured-fullscreen__categories a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.post-featured-fullscreen__btngroup {
    margin-top: 3.2rem
}

@media only screen and (min-width:768px) {
    .post-featured-fullscreen__btngroup {
        margin-top: 4.6rem
    }
}

@media only screen and (min-width:1200px) {
    .post-featured-fullscreen__btngroup {
        margin-top: 0
    }
}

.mxd-posts-list {
    position: relative;
    width: 100%
}

.mxd-posts-list>.post-simple:nth-child(n+2) {
    margin-top: -1px
}

@media only screen and (min-width:1200px) and (hover) and (prefers-reduced-motion:no-preference) {

    .mxd-posts-list>.post-simple .post-simple__data,
    .mxd-posts-list>.post-simple .post-simple__inner,
    .mxd-posts-list>.post-simple .post-simple__meta {
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
    }

    .mxd-posts-list:hover>.post-simple:not(:hover) .post-simple__inner {
        opacity: .3;
        scale: .984
    }

    .mxd-posts-list:hover>.post-simple:not(:hover) .post-simple__meta {
        -webkit-transform: translateY(.6rem);
        -moz-transform: translateY(.6rem);
        -ms-transform: translateY(.6rem);
        transform: translateY(.6rem)
    }

    .mxd-posts-list:hover>.post-simple:not(:hover) .post-simple__data {
        -webkit-transform: translateY(-.5rem);
        -moz-transform: translateY(-.5rem);
        -ms-transform: translateY(-.5rem);
        transform: translateY(-.5rem)
    }
}

@media only screen and (min-width:1600px) {
    .mxd-posts-list {
        padding-right: 2rem
    }
}

.post-simple {
    position: relative;
    width: 100%
}

.post-simple__container {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5.4rem 0 5.6rem 0
}

@media only screen and (min-width:1400px) {
    .post-simple__container {
        padding: 5.4rem 0
    }
}

.post-simple__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--st-muted)
}

.post-simple__divider.top {
    top: 0
}

.post-simple__divider.bottom {
    bottom: 0
}

.post-simple__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: .4rem;
    -webkit-column-gap: 1.2rem;
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
    margin-bottom: 1.7rem
}

@media only screen and (min-width:768px) {
    .post-simple__meta {
        margin-bottom: 2.2rem
    }
}

.post-simple__title h3 {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright);
    max-width: 710px
}

.post-simple__title h3 span {
    color: var(--t-medium)
}

.post-simple__title h3.permanent {
    color: var(--nl-white)
}

.post-simple__title h3.accent {
    color: var(--pt-t-accent-bright)
}

.post-simple__title h3.opposite {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .post-simple__title h3 {
        font-size: 4rem
    }
}

.post-simple__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    margin-top: 2.2rem
}

@media only screen and (min-width:768px) {
    .post-simple__data {
        margin-top: 3.1rem
    }
}

.post-simple__excerpt {
    margin-top: 1.9rem
}

.post-simple__excerpt p {
    max-width: 510px
}

@media only screen and (min-width:768px) {
    .post-simple__excerpt {
        margin-top: 2.7rem
    }
}

@media only screen and (min-width:1400px) {
    .post-simple__excerpt {
        margin-top: 0;
        padding-top: .5rem;
        padding-left: 6rem
    }
}

.mxd-posts-grid {
    position: relative;
    padding-top: 7.4rem
}

@media only screen and (min-width:768px) {
    .mxd-posts-grid {
        padding-top: 5.4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-posts-grid {
        padding-top: 9.4rem
    }
}

.mxd-posts-grid__item {
    margin-bottom: 6.9rem
}

.mxd-posts-grid__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-posts-grid__item {
        margin-bottom: 8.8rem
    }

    .mxd-posts-grid__item:last-of-type {
        margin-bottom: 8.8rem
    }
}

.post-simple-alt {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag {
    -webkit-transform: translateY(.8rem);
    -moz-transform: translateY(.8rem);
    -ms-transform: translateY(.8rem);
    transform: translateY(.8rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(2) {
    -webkit-transform: translateY(1.2rem);
    -moz-transform: translateY(1.2rem);
    -ms-transform: translateY(1.2rem);
    transform: translateY(1.2rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(3) {
    -webkit-transform: translateY(1.6rem);
    -moz-transform: translateY(1.6rem);
    -ms-transform: translateY(1.6rem);
    transform: translateY(1.6rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(4) {
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(5) {
    -webkit-transform: translateY(2.4rem);
    -moz-transform: translateY(2.4rem);
    -ms-transform: translateY(2.4rem);
    transform: translateY(2.4rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(6) {
    -webkit-transform: translateY(2.8rem);
    -moz-transform: translateY(2.8rem);
    -ms-transform: translateY(2.8rem);
    transform: translateY(2.8rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(7) {
    -webkit-transform: translateY(3.2rem);
    -moz-transform: translateY(3.2rem);
    -ms-transform: translateY(3.2rem);
    transform: translateY(3.2rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__tags .tag:nth-of-type(8) {
    -webkit-transform: translateY(3.6rem);
    -moz-transform: translateY(3.6rem);
    -ms-transform: translateY(3.6rem);
    transform: translateY(3.6rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__title {
    -webkit-transform: translateY(.8rem);
    -moz-transform: translateY(.8rem);
    -ms-transform: translateY(.8rem);
    transform: translateY(.8rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__media {
    -webkit-transform: translateY(.6rem);
    -moz-transform: translateY(.6rem);
    -ms-transform: translateY(.6rem);
    transform: translateY(.6rem)
}

.no-touch .post-simple-alt:hover .post-simple-alt__media img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.post-simple-alt__date {
    margin-bottom: .6rem
}

.post-simple-alt__caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6rem;
    margin-top: 1.8rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.post-simple-alt__title {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    max-width: 80%
}

.post-simple-alt__title h3 {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease;
    -moz-transition: color var(--_animspeed-medium) ease;
    transition: color var(--_animspeed-medium) ease
}

.post-simple-alt__title h3 a {
    color: var(--t-bright)
}

.post-simple-alt__title h3.permanent {
    color: var(--nl-white)
}

.post-simple-alt__title h3.permanent a {
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .post-simple-alt__title h3 {
        font-size: 2.2rem
    }
}

.post-simple-alt__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: .4rem
}

.post-simple-alt__tags a {
    color: var(--t-medium)
}

.post-simple-alt__tags .tag {
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.post-simple-alt__media {
    display: inline-block;
    overflow: hidden;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.post-simple-alt__media img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    will-change: transform;
    -webkit-transition: -webkit-transform var(--_animspeed-medium);
    transition: -webkit-transform var(--_animspeed-medium);
    -moz-transition: transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium);
    transition: transform var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium), -moz-transform var(--_animspeed-medium)
}

.mxd-blog-pagination {
    position: relative;
    margin-top: 5.4rem;
    margin-bottom: 2.7rem
}

.mxd-blog-pagination.pagination-fullwidth {
    margin-top: 6.9rem;
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-blog-pagination.pagination-fullwidth {
        margin-top: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-blog-pagination {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-blog-pagination {
        padding-right: 2rem
    }
}

.mxd-blog-pagination__inner {
    position: relative
}

.mxd-blog-pagination__items {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    font: normal 600 1.8rem/1.6 var(--_font-accent)
}

.blog-pagination-control {
    position: absolute;
    top: 0;
    padding-top: .6rem
}

.blog-pagination-control .btn-caption {
    display: none !important
}

.blog-pagination-control.prev {
    left: 0
}

.blog-pagination-control.next {
    right: 0
}

@media only screen and (min-width:768px) {
    .blog-pagination-control {
        padding-top: 0
    }

    .blog-pagination-control .btn-caption {
        display: block !important
    }
}

.blog-pagination-number {
    font: normal 600 1.8rem/1.6 var(--_font-accent);
    color: var(--t-medium)
}

.blog-pagination-number.active {
    color: var(--t-bright)
}

.mxd-sidebar {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.3rem
}

@media only screen and (min-width:768px) {
    .mxd-sidebar {
        gap: 7.3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-sidebar {
        gap: 7.3rem
    }
}

.mxd-sidebar__widget {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem
}

.widget__title p {
    font: normal 600 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-medium)
}

.widget__descr p {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright)
}

.widget__descr p span {
    color: var(--t-medium)
}

.widget__categories {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem
}

.categories__item {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.categories__link {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font: normal 700 2.4rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-fast) ease-in-out;
    -moz-transition: color var(--_animspeed-fast) ease-in-out;
    transition: color var(--_animspeed-fast) ease-in-out
}

.categories__link span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-top: .2rem;
    font: normal 600 1.8rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    color: var(--t-medium);
    -webkit-transition: color var(--_animspeed-fast) ease-in-out;
    -moz-transition: color var(--_animspeed-fast) ease-in-out;
    transition: color var(--_animspeed-fast) ease-in-out
}

.categories__link span::before {
    content: "["
}

.categories__link span::after {
    content: "]"
}

@media only screen and (min-width:1200px) {
    .no-touch .categories__link:hover {
        color: var(--t-medium)
    }

    .no-touch .categories__link:hover span {
        color: var(--t-bright)
    }
}

.widget__recent-posts {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    margin-top: 1rem
}

@media only screen and (min-width:768px) {
    .widget__recent-posts {
        margin-bottom: .7rem
    }
}

.recent-post__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem
}

.recent-post__thumb {
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 120px;
    -moz-border-radius: var(--_radius-s);
    border-radius: var(--_radius-s);
    overflow: hidden;
    background-color: #ff0
}

.recent-post__thumb a {
    display: block
}

.recent-post__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier);
    transition: filter var(--_animspeed-medium), transform var(--_animspeed-medium) var(--_animbezier), -webkit-filter var(--_animspeed-medium), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.no-touch .recent-post__thumb:hover img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06)
}

.recent-post__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem
}

.recent-post__title {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright)
}

.recent-post__title a {
    display: inline;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-medium) ease-in-out;
    -moz-transition: color var(--_animspeed-medium) ease-in-out;
    transition: color var(--_animspeed-medium) ease-in-out
}

.recent-post__title a span {
    color: var(--t-medium)
}

.recent-post__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem
}

.widget-ad {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    overflow: hidden
}

@media only screen and (min-width:768px) {
    .widget-ad {
        margin-bottom: .4rem
    }
}

@media only screen and (min-width:1200px) {
    .widget-ad {
        height: 460px
    }
}

.widget__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:1200px) {
    .widget__image {
        height: 100%
    }
}

.widget__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem
}

.widget__social-links-small {
    position: relative;
    margin-top: 1rem
}

@media (hover) and (prefers-reduced-motion:no-preference) {
    .widget__social-links-small>.social-links-small__item {
        -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium) var(--_animbezier)
    }

    .widget__social-links-small:hover>.social-links-small__item:not(:hover) {
        opacity: .3
    }

    .widget__social-links-small:hover>.social-links-small__item:not(:hover) .social-links-small__icon,
    .widget__social-links-small:hover>.social-links-small__item:not(:hover) .social-links-small__title {
        scale: .964;
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
        transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
    }
}

.social-links-small__item {
    position: relative;
    display: block;
    margin-top: -1px
}

.social-links-small__item:first-of-type {
    margin-top: 0
}

.social-links-small__divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--st-medium)
}

.social-links-small__link {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.3rem 0 2.5rem 0;
    overflow: hidden
}

.no-touch .social-links-small__link:hover .social-links-small__icon i svg,
.no-touch .social-links-small__link:hover .social-links-small__icon i::before {
    -webkit-animation: .6s var(--_animbezier) 0s 1 both slideRightUp;
    -moz-animation: .6s var(--_animbezier) 0s 1 both slideRightUp;
    animation: .6s var(--_animbezier) 0s 1 both slideRightUp
}

.social-links-small__title {
    position: relative;
    font: normal 700 2rem/1.2 var(--_font-default);
    color: var(--t-bright);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.social-links-small__icon {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.8rem;
    -webkit-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium), scale var(--_animspeed-medium) var(--_animbezier)
}

.social-links-small__icon i,
.social-links-small__icon span,
.social-links-small__icon svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.social-links-small__icon i {
    font-size: 1.8rem;
    color: var(--t-bright);
    overflow: hidden
}

.social-links-small__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-bright)
}

.social-links-small__icon.accent svg {
    fill: var(--pt-t-accent-bright)
}

.mxd-article-area {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 12.8rem
}

.mxd-article,
.mxd-article-container {
    position: relative;
    width: 100%
}

.mxd-article__headline {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 7.4rem
}

@media only screen and (min-width:768px) {
    .mxd-article__headline {
        max-width: 870px;
        margin: 0 auto 9.4rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article__headline {
        max-width: 900px
    }
}

.mxd-article__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.2rem;
    row-gap: .5rem;
    -webkit-column-gap: 1.2rem;
    -moz-column-gap: 1.2rem;
    column-gap: 1.2rem;
    margin-bottom: 2rem
}

@media only screen and (min-width:768px) {
    .mxd-article__tags {
        margin-bottom: 2.2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article__tags {
        margin-bottom: 1.6rem
    }
}

.mxd-article__title {
    margin-bottom: 3rem
}

@media only screen and (min-width:768px) {
    .mxd-article__title {
        margin-bottom: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article__title {
        margin-bottom: 3.7rem
    }
}

.mxd-article__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem
}

@media only screen and (min-width:1200px) {
    .mxd-article__meta {
        margin-bottom: 1.8rem
    }
}

.mxd-article__data {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: .4rem
}

.mxd-article__thumb {
    position: relative;
    height: 360px;
    -moz-border-radius: var(--_radius-l);
    border-radius: var(--_radius-l);
    overflow: hidden;
    margin-bottom: 7rem
}

.mxd-article__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-article__thumb {
        height: 600px;
        margin-bottom: 12.6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article__thumb {
        height: 760px
    }
}

.mxd-article__content {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
    text-align: left
}

@media only screen and (min-width:768px) {
    .mxd-article__content {
        gap: 8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article__content {
        max-width: 870px;
        margin: 0 auto
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article__content {
        max-width: 900px
    }
}

.mxd-article__block {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    width: 100%
}

.mxd-article__block.block-table-of-contents {
    background-color: var(--base-tint);
    padding: 3rem
}

.mxd-article__block.block-quote {
    padding: 4.2rem 0 5.3rem 0;
    border-top: 1px solid var(--st-medium);
    border-bottom: 1px solid var(--st-medium)
}

.mxd-article__block.block-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem
}

@media only screen and (min-width:768px) {
    .mxd-article__block.block-table-of-contents {
        padding: 4rem
    }

    .mxd-article__block.block-image {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .mxd-article__block h4 {
        font-size: 3.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article__block.block-image {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.mxd-article__excerpt {
    font: normal 700 2.4rem/1.2 var(--_font-default);
    color: var(--t-bright);
    letter-spacing: -.04rem
}

.mxd-article__excerpt span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .mxd-article__excerpt {
        font-size: 3.4rem;
        letter-spacing: -.1rem
    }
}

.mxd-article__normal {
    font: normal 500 1.8rem/1.6 var(--_font-default);
    color: var(--t-medium)
}

.mxd-article__normal a,
.mxd-article__normal span {
    font-weight: 700;
    color: var(--t-bright)
}

.mxd-article__normal a {
    text-decoration: underline
}

@media only screen and (min-width:768px) {
    .mxd-article__normal {
        font-size: 2rem
    }
}

.table-of-contents__title {
    display: block;
    overflow: hidden;
    color: var(--t-medium);
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.table-of-contents__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem !important
}

.table-of-contents__nav li {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.table-of-contents__nav li a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    font: normal 700 2.2rem/1.2 var(--_font-default);
    letter-spacing: -.05rem;
    color: var(--t-bright);
    -webkit-transition: color var(--_animspeed-fast) ease-in-out;
    -moz-transition: color var(--_animspeed-fast) ease-in-out;
    transition: color var(--_animspeed-fast) ease-in-out
}

.table-of-contents__nav li a i,
.table-of-contents__nav li a span,
.table-of-contents__nav li a svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.table-of-contents__nav li a i {
    font-size: 1.8rem;
    overflow: hidden
}

.table-of-contents__nav li a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .no-touch .table-of-contents__nav li a:hover {
        color: var(--t-medium)
    }
}

.quote__text {
    font: normal 700 3.4rem/1.4 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright);
    margin-bottom: 1.2rem
}

.quote__text span {
    color: var(--t-medium)
}

@media only screen and (min-width:768px) {
    .quote__text {
        font-size: 3.6rem
    }
}

.quote__cite {
    color: var(--t-medium);
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.mxd-article__content ol {
    list-style: decimal inside;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem
}

.mxd-article__content ol:not(:has(ol, ul)) {
    gap: 0
}

.mxd-article__content ol li {
    font: normal 500 1.8rem/1.6 var(--_font-default);
    color: var(--t-medium)
}

.mxd-article__content ol li span {
    font-weight: 700;
    color: var(--t-bright)
}

.mxd-article__content ol ul {
    gap: 0;
    -webkit-padding-start: 2.4rem;
    -moz-padding-start: 2.4rem;
    padding-inline-start: 2.4rem;
    margin-top: 1rem
}

.mxd-article__content ul {
    list-style: disc inside;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem
}

.mxd-article__content ul:not(:has(ol, ul)) {
    gap: 0
}

.mxd-article__content ul li {
    font: normal 500 1.8rem/1.6 var(--_font-default);
    color: var(--t-medium)
}

.mxd-article__content ul li span {
    font-weight: 700;
    color: var(--t-bright)
}

.mxd-article__content ul ol,
.mxd-article__content ul ul {
    gap: 0;
    -webkit-padding-start: 2.4rem;
    -moz-padding-start: 2.4rem;
    padding-inline-start: 2.4rem;
    margin-top: 1rem
}

@media only screen and (min-width:1600px) {
    .mxd-article__content ol li {
        font-size: 2rem
    }

    .mxd-article__content ol ul {
        -webkit-padding-start: 2.8rem;
        -moz-padding-start: 2.8rem;
        padding-inline-start: 2.8rem
    }

    .mxd-article__content ul li {
        font-size: 2rem
    }

    .mxd-article__content ul ol,
    .mxd-article__content ul ul {
        -webkit-padding-start: 2.8rem;
        -moz-padding-start: 2.8rem;
        padding-inline-start: 2.8rem
    }
}

.block-image__container {
    position: relative;
    overflow: hidden
}

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

.block-image__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem
}

.mxd-article-author {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    background-color: var(--base-tint);
    padding: 3rem;
    margin-top: 6rem
}

@media only screen and (min-width:768px) {
    .mxd-article-author {
        padding: 4rem;
        margin-top: 8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article-author {
        max-width: 870px;
        margin: 8rem auto 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article-author {
        max-width: 900px
    }
}

.mxd-article-author__data {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.8rem
}

@media only screen and (min-width:768px) {
    .mxd-article-author__data {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 3rem
    }
}

.mxd-article-author__avatar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden
}

.mxd-article-author__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-article-author__avatar {
        -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
        height: 13rem
    }
}

.mxd-article-author__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-article-author__name {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .6rem;
    line-height: 1
}

.mxd-article-author__name a {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--t-bright)
}

.mxd-article-author__name small {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font: normal 600 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-medium)
}

.mxd-article-author__socials {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: .4rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-top: 2.2rem
}

.mxd-article-navigation {
    position: relative;
    margin-top: 7rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--st-medium)
}

@media only screen and (min-width:768px) {
    .mxd-article-navigation {
        margin-top: 8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article-navigation {
        max-width: 870px;
        margin: 8rem auto 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article-navigation {
        max-width: 900px
    }
}

.mxd-article-navigation__navitem {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .5rem
}

.mxd-article-navigation__navitem.left {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 1.5rem
}

.mxd-article-navigation__navitem.right {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-left: 1.5rem;
    text-align: right
}

@media only screen and (min-width:768px) {
    .mxd-article-navigation__navitem.left {
        padding-right: 3rem
    }

    .mxd-article-navigation__navitem.right {
        padding-left: 3rem
    }
}

.mxd-article-navigation__link {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.06rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1600px) {
    .mxd-article-navigation__link {
        font-size: 2.2rem
    }
}

.mxd-article-comments {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7rem;
    width: 100%;
    margin-top: 7rem
}

@media only screen and (min-width:768px) {
    .mxd-article-comments {
        gap: 8rem;
        margin-top: 8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-article-comments {
        max-width: 870px;
        margin: 8rem auto 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-article-comments {
        max-width: 900px
    }
}

.mxd-article-comments__container,
.mxd-article-comments__respond {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem
}

.mxd-article-comments__list {
    position: relative;
    width: 100%
}

.mxd-article-comments__list ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mxd-comment {
    margin-top: -1px;
    border-top: 1px solid var(--st-medium)
}

.mxd-comment:last-of-type {
    border-bottom: 1px solid var(--st-medium)
}

.mxd-comment__children {
    padding-left: 3rem
}

@media only screen and (min-width:768px) {
    .mxd-comment__children {
        padding-left: 13rem
    }
}

.mxd-comment__container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 0
}

@media only screen and (min-width:768px) {
    .mxd-comment__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 3rem;
        padding: 4rem 0
    }
}

.mxd-comment__avatar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: .6rem
}

.mxd-comment__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (min-width:768px) {
    .mxd-comment__avatar {
        margin-bottom: 0
    }
}

.mxd-comment__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem
}

@media only screen and (min-width:1200px) {
    .mxd-comment__content {
        gap: 1.6rem
    }
}

.mxd-comment__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.mxd-comment__date {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font: normal 600 1.4rem/1.2 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem;
    color: var(--t-medium)
}

.mxd-comment__name {
    font: normal 700 3rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-comment__name a {
    color: var(--t-bright)
}

.mxd-comment__reply {
    margin-top: .9rem
}

.comments-respond__row {
    margin-right: -3rem;
    margin-left: -3rem
}

.mxd-promo {
    position: relative;
    width: 100%;
    background-color: var(--base-opp)
}

.mxd-promo.transparent {
    background-color: transparent
}

.mxd-promo__wrap {
    position: relative;
    padding: 13.4rem 0 34rem 0
}

.mxd-promo__wrap.auto-height {
    max-height: none;
    padding-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-promo__wrap {
        height: auto;
        max-height: 100vh;
        padding: 16.4rem 0 40rem 0
    }

    .mxd-promo__wrap.auto-height {
        max-height: none;
        padding-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-promo__wrap {
        padding: 17.3rem 0 40rem 0
    }

    .mxd-promo__wrap.auto-height {
        padding-bottom: 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-promo__wrap {
        padding: 19.3rem 0 40rem 0
    }

    .mxd-promo__wrap.auto-height {
        padding-bottom: 0
    }
}

.mxd-promo__content {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.1rem;
    padding: 0 3rem;
    pointer-events: none
}

.mxd-promo__content * {
    pointer-events: auto
}

@media only screen and (min-width:768px) {
    .mxd-promo__content {
        gap: 2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-promo__content {
        gap: 2.3rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-promo__content {
        gap: 2.5rem
    }
}

.mxd-promo__btngroup,
.mxd-promo__caption {
    max-width: 640px
}

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

    .mxd-promo__btngroup,
    .mxd-promo__caption {
        max-width: 800px
    }
}

.mxd-promo__caption h2 {
    text-align: center
}

.mxd-promo__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 11.1rem
}

@media only screen and (min-width:768px) {
    .mxd-promo__marquee {
        margin-top: 15.7rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-promo__marquee {
        margin-top: 16.2rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-promo__marquee {
        margin-top: 18rem
    }
}

.mxd-divider-l,
.mxd-divider-xl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

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

    .mxd-divider-l,
    .mxd-divider-xl {
        padding: 20rem 0
    }
}

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

    .mxd-divider-l.mxd-divider-fullheight,
    .mxd-divider-xl.mxd-divider-fullheight {
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100vh;
        padding: 0
    }
}

.mxd-divider-xl.padding-top-default {
    padding-top: 20rem
}

.mxd-divider-xl.padding-top-subtitle {
    padding-top: 13.4rem
}

.mxd-divider-xl.padding-bottom-default {
    padding-bottom: 14rem
}

@media only screen and (min-width:768px) {
    .mxd-divider-xl.padding-top-subtitle {
        padding-top: 16.3rem
    }

    .mxd-divider-xl.padding-bottom-default {
        padding-bottom: 17rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider-xl.padding-top-subtitle {
        padding-top: 17.3rem
    }

    .mxd-divider-xl.padding-bottom-default {
        padding-bottom: 18rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-divider-xl.padding-top-subtitle {
        padding-top: 19.3rem
    }

    .mxd-divider-xl.padding-bottom-default {
        padding-bottom: 20rem
    }
}

.mxd-divider-l__content,
.mxd-divider-xl__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden
}

.mxd-divider-l__content.difference,
.mxd-divider-xl__content.difference {
    mix-blend-mode: difference
}

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

    .mxd-divider-l__content,
    .mxd-divider-xl__content {
        max-width: 800px;
        gap: 2rem
    }
}

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

    .mxd-divider-l__content,
    .mxd-divider-xl__content {
        gap: 2.3rem
    }
}

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

    .mxd-divider-l__content,
    .mxd-divider-xl__content {
        gap: 2.4rem
    }
}

@media only screen and (min-width:768px) {
    .mxd-divider-l__content {
        max-width: 1140px
    }
}

.mxd-divider-xl__btngroup.difference {
    mix-blend-mode: difference
}

.mxd-divider-xl__caption {
    text-align: center;
    margin-bottom: 2rem
}

.mxd-divider-xl__caption.difference {
    mix-blend-mode: difference
}

.mxd-divider-xl__caption h2 {
    position: relative;
    display: block
}

@media only screen and (min-width:768px) {
    .mxd-divider-xl__caption {
        margin-bottom: 2.4rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-divider-xl__caption {
        margin-bottom: 3rem
    }
}

.mxd-divider-l__caption {
    text-align: center
}

.mxd-divider-l__text {
    font: normal 700 3rem/1.3 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-divider-l__text span {
    color: var(--t-medium)
}

.mxd-divider-l__text.permanent {
    color: var(--nl-white)
}

.mxd-divider-l__text.opposite {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-divider-l__text {
        font-size: 7.6rem;
        letter-spacing: -.3rem
    }
}

.mxd-divider-gif {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mxd-divider-gif img {
    display: block;
    width: 100%;
    height: auto
}

.mxd-divider-gif__front {
    position: relative;
    width: 18rem;
    height: auto;
    overflow: hidden;
    z-index: 2
}

@media only screen and (min-width:768px) {
    .mxd-divider-gif__front {
        width: 26rem
    }
}

.mxd-divider-gif__back {
    position: relative;
    width: 10rem;
    height: auto;
    overflow: hidden;
    z-index: 1
}

.mxd-divider-gif__back.left {
    margin-right: -1rem
}

.mxd-divider-gif__back.right {
    margin-left: -1rem
}

.mxd-divider-gif__back img {
    opacity: .3
}

@media only screen and (min-width:768px) {
    .mxd-divider-gif__back {
        width: 15rem
    }
}

.mxd-dv-sticky-img {
    position: relative;
    text-align: center
}

.mxd-dv-sticky-img__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    z-index: 2
}

.mxd-dv-sticky-img__progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #b38a4f;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    will-change: transform;
    z-index: 10
}

.mxd-dv-sticky-img__images {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.images__list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.images__listitem {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.images__overflow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    will-change: transform, clippath
}

.images__img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.images__video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center;
    -moz-background-size: contain;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-dv-sticky-img__content {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    z-index: 2
}

.mxd-dv-sticky-img__titlelist,
.mxd-dv-sticky-img__titlewrap {
    position: relative;
    width: 100%
}

.mxd-dv-sticky-img__titlelist {
    height: 68px
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-img__titlelist {
        height: 71px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-img__titlelist {
        height: 300px
    }
}

.mxd-dv-sticky-img__titleitem {
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden
}

.mxd-dv-sticky-img__titleitem h2 {
    line-height: 1.3
}

.mxd-dv-sticky-img__number {
    margin-bottom: 1.9rem;
    color: var(--nl-white)
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-img__number {
        margin-bottom: 1.8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-img__number {
        margin-bottom: 1.8rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-dv-sticky-img__number {
        margin-bottom: 2rem
    }
}

.mxd-dv-sticky-img__btnholder {
    margin-top: 1.6rem
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-img__btnholder {
        margin-top: 2.8rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-img__btnholder {
        margin-top: .6rem
    }
}

@media only screen and (min-width:1600px) {
    .mxd-dv-sticky-img__btnholder {
        margin-top: 3.6rem
    }
}

.mxd-dv-sticky-cap {
    position: relative;
    width: 100%
}

.mxd-dv-sticky-cap__static {
    position: sticky;
    top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
    padding: 13rem 0;
    mix-blend-mode: difference
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-cap__static {
        padding: 16.4rem 0 16rem 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-cap__static {
        padding: 17.4rem 0 16.5rem 0
    }
}

@media only screen and (min-width:1600px) {
    .mxd-dv-sticky-cap__static {
        padding: 19.4rem 0 17.9rem 0
    }
}

.mxd-dv-sticky-cap__scroll {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 100vh
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-cap__scroll {
        gap: 19.5rem;
        padding-bottom: 100vh
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-cap__scroll {
        gap: 19.5rem
    }
}

.mxd-dv-sticky-cap__content {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.4rem;
    padding: 0 3rem
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-cap__content {
        max-width: 740px;
        gap: 2rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-cap__content {
        max-width: 1140px;
        gap: 2rem
    }
}

.mxd-dv-sticky-cap__center {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.mxd-dv-sticky-cap__bottom,
.mxd-dv-sticky-cap__top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.mxd-dv-sticky-cap__caption {
    text-align: center
}

.mxd-dv-sticky-cap__caption h2 {
    line-height: 1.3
}

.mxd-dv-sticky-cap__text {
    font: normal 700 3.6rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.mxd-dv-sticky-cap__text span {
    color: var(--t-medium)
}

.mxd-dv-sticky-cap__text.permanent {
    color: var(--nl-white)
}

.mxd-dv-sticky-cap__text.permanent span {
    color: var(--nl-white-06)
}

.mxd-dv-sticky-cap__text.opposite {
    color: var(--t-opp-bright)
}

@media only screen and (min-width:768px) {
    .mxd-dv-sticky-cap__text {
        font-size: 5rem;
        letter-spacing: -.24rem
    }
}

@media only screen and (min-width:1200px) {
    .mxd-dv-sticky-cap__text {
        font-size: 7rem;
        letter-spacing: -.3rem
    }
}

.scroll-images-row__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 3rem;
    margin-bottom: 10rem
}

@media only screen and (min-width:768px) {
    .scroll-images-row__item {
        margin-bottom: 0
    }
}

.scroll-images-row__obj {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .6rem
}

.scroll-images-row__obj img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.scroll-images-row__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.mxd-pricing-table {
    position: relative
}

.mxd-pricing-table__item {
    position: relative;
    margin-bottom: 3rem
}

.mxd-pricing-table__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-pricing-table__item {
        margin-bottom: 6rem
    }

    .mxd-pricing-table__item:last-of-type {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .mxd-pricing-table__item {
        margin-bottom: 0
    }
}

.mxd-pricing-table__inner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: var(--base-tint);
    padding: 3rem;
    -webkit-transition: all var(--_animspeed-medium);
    -moz-transition: all var(--_animspeed-medium);
    transition: all var(--_animspeed-medium)
}

.no-touch .mxd-pricing-table__inner:hover {
    background-color: var(--base)
}

.no-touch .mxd-pricing-table__inner:hover .mxd-pricing-table__bg {
    opacity: 1
}

.no-touch .mxd-pricing-table__inner:hover .mxd-pricing-table__bg svg {
    -webkit-transform: scale(1.2) translateX(-50%);
    -moz-transform: scale(1.2) translateX(-50%);
    -ms-transform: scale(1.2) translateX(-50%);
    transform: scale(1.2) translateX(-50%)
}

@media only screen and (min-width:1200px) {
    .mxd-pricing-table__inner {
        height: 100%;
        padding: 4rem
    }
}

.mxd-pricing-table__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: opacity var(--_animspeed-medium) var(--_animbezier);
    transition: opacity var(--_animspeed-medium) var(--_animbezier)
}

.mxd-pricing-table__bg svg {
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1) translateX(-50%);
    -moz-transform: scale(1) translateX(-50%);
    -ms-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
    -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
    -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier);
    transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier)
}

.mxd-pricing-table__tag {
    position: absolute;
    top: -1.6rem;
    left: 3rem
}

@media only screen and (min-width:1200px) {
    .mxd-pricing-table__tag {
        left: 4rem
    }
}

.mxd-pricing-table__data {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4.6rem
}

@media only screen and (min-width:1200px) {
    .mxd-pricing-table__data {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.pricing-data__header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.pricing-header__title {
    margin-bottom: 1.7rem;
    font: normal 700 4rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

.pricing-header__title span {
    color: var(--t-medium)
}

.pricing-header__title.small {
    font-size: 3.4rem
}

.pricing-header__title.permanent {
    color: var(--nl-white)
}

.pricing-header__title.no-margin {
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .pricing-header__title {
        margin-bottom: 1.5rem;
        font-size: 5rem
    }

    .pricing-header__title.small {
        font-size: 4.4rem
    }
}

.pricing-header__descr {
    font-size: 2rem
}

.pricing-data__info {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.5rem
}

.pricing-data__price {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.pricing-data__num {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0
}

.pricing-data__currency,
.pricing-data__period {
    display: inline-block;
    font: normal 500 1.8rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.pricing-data__amount {
    font: normal 700 7.4rem/.9 var(--_font-default);
    letter-spacing: -.5rem;
    color: var(--t-bright)
}

.pricing-data__caption {
    display: inline-block;
    font: normal 400 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.mxd-pricing-table__plan {
    margin-top: 2.6rem
}

.pricing-plan__caption {
    font-size: 2rem;
    margin-bottom: .4rem
}

.mxd-check-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .4rem
}

.mxd-check-list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem
}

.mxd-check-list li span {
    display: inline-block;
    font: normal 400 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--t-medium)
}

.mxd-check-list li i {
    font-size: 1.4rem;
    line-height: 1.6
}

.mxd-check-list li svg {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.4rem;
    height: auto;
    fill: var(--t-medium)
}

.mxd-pricing-table__link {
    margin-top: 2rem
}

.mxd-pricing-table__link a {
    font: normal 700 2rem/1.4 var(--_font-default);
    color: var(--t-bright);
    text-decoration: underline
}

.mxd-block-split__item {
    margin-bottom: 7.4rem
}

.mxd-block-split__item:last-of-type {
    margin-bottom: 0
}

.mxd-block-split__item.manifest-item {
    margin-bottom: 6.8rem
}

.mxd-block-split__item.manifest-item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-block-split__item {
        margin-bottom: 0
    }

    .mxd-block-split__item.manifest-item {
        margin-bottom: 0
    }
}

.mxd-block-split__subtitle.pre-manifest {
    margin-bottom: 1.8rem
}

.mxd-block-split__subtitle.pre-grid {
    margin-bottom: 3rem
}

.mxd-block-split__subtitle p {
    display: block;
    overflow: hidden;
    color: var(--t-medium);
    font: normal 600 1.4rem/1.6 var(--_font-accent);
    text-transform: uppercase;
    letter-spacing: -.05rem
}

.mxd-block-split__subtitle p span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media only screen and (min-width:1200px) {
    .mxd-block-split__subtitle.pre-manifest {
        margin-bottom: 3.6rem
    }

    .mxd-block-split__subtitle.pre-grid {
        margin-bottom: 5.5rem
    }
}

.mxd-block-split__manifest {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2.8rem
}

@media only screen and (min-width:1200px) {
    .mxd-block-split__manifest {
        gap: 5rem;
        max-width: 760px
    }

    .mxd-block-split__manifest.fullwidth {
        max-width: none
    }
}

.split-info__item {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.2rem;
    margin-top: -.1rem;
    padding: 2.9rem .2rem 3.1rem .2rem
}

@media only screen and (min-width:1200px) {
    .split-info__item {
        padding: 5.2rem .2rem 5.5rem .2rem
    }
}

.split-data__divider,
.split-info__divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--t-medium)
}

.split-data__divider.divider-top,
.split-info__divider.divider-top {
    top: 0
}

.split-data__divider.divider-bottom,
.split-info__divider.divider-bottom {
    bottom: 0
}

.split-info__details p {
    font: normal 700 2rem/1.2 var(--_font-default);
    letter-spacing: -.04rem;
    color: var(--t-bright)
}

.split-info__details p a,
.split-info__details p span {
    font-weight: 500;
    color: var(--t-medium)
}

.split-info__details p a {
    -webkit-transition: color var(--_animspeed-medium);
    -moz-transition: color var(--_animspeed-medium);
    transition: color var(--_animspeed-medium)
}

.no-touch .split-info__details p a:hover {
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .split-info__details p {
        font-size: 2.4rem
    }
}

.split-data__item {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.1rem;
    margin-top: -.1rem;
    padding: 2.5rem .2rem 3.2rem .2rem
}

@media only screen and (min-width:1200px) {
    .split-data__item {
        gap: 1.9rem;
        padding: 4.7rem .2rem 5.5rem .2rem
    }
}

.split-data__name p {
    font: normal 700 2.8rem/1.2 var(--_font-default);
    letter-spacing: -.1rem;
    color: var(--t-bright)
}

@media only screen and (min-width:1200px) {
    .split-data__name p {
        font-size: 3.4rem
    }
}

.mxd-images-grid {
    position: relative
}

.mxd-images-grid__gallery {
    margin-bottom: 3rem
}

.mxd-images-grid__gallery:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:1200px) {
    .mxd-images-grid__gallery {
        margin-bottom: 6rem
    }

    .mxd-images-grid__gallery:last-of-type {
        margin-bottom: 0
    }
}

.mxd-images-grid__item {
    position: relative;
    height: 360px;
    margin-bottom: 3rem
}

.mxd-images-grid__item:last-of-type {
    margin-bottom: 0
}

@media only screen and (min-width:768px) {
    .mxd-images-grid__item {
        height: 420px
    }
}

@media only screen and (min-width:1200px) {
    .mxd-images-grid__item {
        height: 460px;
        margin-bottom: 0
    }

    .mxd-images-grid__item.wide {
        height: 600px
    }
}

@media only screen and (min-width:1600px) {
    .mxd-images-grid__item {
        height: 600px
    }

    .mxd-images-grid__item.wide {
        height: 760px
    }
}

.mxd-images-grid__inner {
    position: relative;
    height: 100%;
    overflow: hidden
}

.mxd-images-grid__inner img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.mxd-images-grid__inner img.transparent {
    -o-object-fit: contain;
    object-fit: contain
}


/* new  */
.mxd-logo img {
    width: 130px;
}

/* new  */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ==========================
   DW STORY SECTION
========================== */

.dw-story-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 120px 0px;
    overflow: hidden;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Background Image */

.dw-story-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay */

.dw-story-overlay {
    position: absolute;
    inset: 0;
    /* background:rgba(0,0,0,.45); */
    z-index: -1;
}

/* Content */

.dw-story-content {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Subtitle */

.dw-story-subtitle {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Description */

.dw-story-text {
    color: #333;
    font-size: 30px;
    line-height: 1.9;
    font-style: italic;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

/* ==========================
   Responsive
========================== */

@media(max-width:991px) {

    .dw-story-section {
        min-height: 500px;
        padding: 80px 20px;
    }

    .dw-story-text {
        font-size: 22px;
        line-height: 1.8;
    }

}

@media(max-width:767px) {

    .dw-story-section {
        min-height: 420px;
        padding: 60px 15px;
    }

    .dw-story-subtitle {
        font-size: 16px;
    }

    .dw-story-text {
        font-size: 18px;
        line-height: 1.7;
    }

}

/* project  section */

        /* =========================================================
           SECTION HEADING ABOVE PROJECT IMAGE
        ========================================================= */

        .projects-heading-section {
            position: relative;
            width: 100%;
            padding:120px 0 20px;
            background: #f5f5f5;
            text-align: center;
        }



        .projects-heading-title {
           margin-bottom: 32px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
        }

        .projects-heading-description {
            margin: 0;
            /* color: #222222; */
            font-size: 18px;
            font-weight: 400;
            line-height: 1.7;
            letter-spacing: 0.1px;
        }


        /* =========================================================
           PROJECT SECTION
        ========================================================= */

        .luxury-projects {
            position: relative;
            width: 100%;
            height: 300vh;
            background: #101010;
        }

        .luxury-projects__sticky {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            overflow: hidden;
            background: #101010;
        }


        /* =========================================================
           PROJECT BACKGROUND IMAGES
        ========================================================= */

        .luxury-projects__media {
            position: absolute;
            inset: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .luxury-projects__image-item {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition:
                opacity 0.7s ease,
                visibility 0.7s ease;
        }

        .luxury-projects__image-item.project-active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .luxury-projects__image-item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }


        /* =========================================================
           DARK OVERLAYS
        ========================================================= */

        .luxury-projects__overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background:
                linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.91) 0%,
                    rgba(0, 0, 0, 0.77) 20%,
                    rgba(0, 0, 0, 0.40) 43%,
                    rgba(0, 0, 0, 0.08) 72%,
                    rgba(0, 0, 0, 0.12) 100%
                );
        }

        .luxury-projects__bottom-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            height: 38%;
            pointer-events: none;
            background:
                linear-gradient(
                    to top,
                    rgba(0, 0, 0, 0.58),
                    transparent
                );
        }


        /* =========================================================
           MAIN CONTENT
        ========================================================= */

        .luxury-projects__container {
            position: relative;
            z-index: 5;
            width: min(1400px, calc(100% - 120px));
            height: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        .luxury-projects__content {
            width: 100%;
            max-width: 500px;
        }


        /* =========================================================
           PROJECT COUNTER
        ========================================================= */

        .luxury-projects__counter {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 9px;
            margin-bottom: 35px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .luxury-projects__counter-dot {
            color: #c99a4b;
        }

        .luxury-projects__counter-current,
        .luxury-projects__counter-total {
            letter-spacing: 2px;
        }


        /* =========================================================
           PROJECT DETAILS
        ========================================================= */

        .luxury-projects__details {
            position: relative;
            width: 100%;
        }

        .luxury-projects__detail-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            pointer-events: none;
            transition:
                opacity 0.6s ease,
                visibility 0.6s ease,
                transform 0.6s ease;
        }

        .luxury-projects__detail-item.project-active {
            position: relative;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .luxury-projects__location {
            margin-bottom: 12px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
        }

        .luxury-projects__title {
            margin-bottom: 25px;
            color: #ffffff;
            font-family: "Cormorant Garamond", serif;
            font-size: 45px;
            font-weight: 600;
            line-height: 1;
            letter-spacing: 0.2px;
        }

        .luxury-projects__divider {
            width: 100%;
            height: 1px;
            margin-bottom: 23px;
            background: rgba(255, 255, 255, 0.28);
        }


        /* =========================================================
           PROJECT INFORMATION
        ========================================================= */

        .luxury-projects__information {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding-bottom: 23px;
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.28);
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.5;
        }

        .luxury-projects__information i {
            color: #ffffff;
            font-size: 18px;
        }

        .luxury-projects__information span {
            color: #ffffff;
        }

        .luxury-projects__information-separator {
            color: rgba(255, 255, 255, 0.65) !important;
        }

        .luxury-projects__description {
            max-width: 475px;
            margin-bottom: 33px;
            color: rgba(255, 255, 255, 0.94);
            font-size: 15px;
            font-weight: 400;
            line-height: 1.75;
        }


        /* =========================================================
           BUTTONS
        ========================================================= */

        .luxury-projects__buttons {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .luxury-projects__button {
            min-height: 50px;
            padding: 14px 26px;
            border: 1px solid transparent;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family:  'Montserrat';
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            transition:
                color 0.3s ease,
                background-color 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease;
        }

        .luxury-projects__button:hover {
            transform: translateY(-2px);
        }

        .luxury-projects__button--gold {
            min-width: 145px;
            color: #ffffff;
            background: #c99a4b;
            border-color: #c99a4b;
        }

        .luxury-projects__button--gold:hover {
            color: #ffffff;
            background: #af8035;
            border-color: #af8035;
        }

        .luxury-projects__button--white {
            min-width: 215px;
            color: #b8893d;
            background: #ffffff;
            border-color: #ffffff;
        }

        .luxury-projects__button--white:hover {
            color: #ffffff;
            background: #c99a4b;
            border-color: #c99a4b;
        }


        /* =========================================================
           RIGHT-SIDE PROGRESS BAR
        ========================================================= */

        .luxury-projects__progress {
            position: absolute;
            top: 23%;
            right: 30px;
            z-index: 7;
            width: 2px;
            height: 44%;
            background: rgba(255, 255, 255, 0.35);
        }

        .luxury-projects__progress-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #e5bd75;
            transition: height 0.1s linear;
        }


        /* =========================================================
           LARGE TABLET
        ========================================================= */

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

    .projects-heading-section {
                padding: 90px 0 20px;
            }
            .luxury-projects__content {
                max-width: 470px;
            }

            .luxury-projects__overlay {
                background:
                    linear-gradient(
                        90deg,
                        rgba(0, 0, 0, 0.88) 0%,
                        rgba(0, 0, 0, 0.72) 34%,
                        rgba(0, 0, 0, 0.18) 76%,
                        rgba(0, 0, 0, 0.10) 100%
                    );
            }

            .luxury-projects__title {
                font-size: 40px;
            }
        }


        /* =========================================================
           TABLET
        ========================================================= */

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

            .projects-heading-section {
                padding: 80px 0 20px;
            }

            .projects-heading-title {
                font-size: 34px;
            }

            .projects-heading-description {
                font-size: 16px;
            }

            .luxury-projects__content {
                max-width: 430px;
            }

            .luxury-projects__title {
                font-size: 34px;
            }

            .luxury-projects__information {
                font-size: 14px;
            }

            .luxury-projects__location {
                font-size: 14px;
            }

            .luxury-projects__counter {
                margin-bottom: 20px;
                font-size: 14px;
            }

            .luxury-projects__description {
                font-size: 14px;
            }

            .luxury-projects__progress {
                right: 20px;
            }
        }


        /* =========================================================
           MOBILE VERSION
           IMAGE ABOVE + CONTENT BELOW
        ========================================================= */

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

            .projects-heading-section {
                padding: 80px 0 20px;
            }

            .projects-heading-title {
                margin-bottom: 10px;
                font-size: 34px;
                line-height: 1.08;
            }

            .projects-heading-description {
                max-width: 520px;
                margin: 0 auto;
                font-size: 14px;
                line-height: 1.65;
            }

            .luxury-projects {
                width: 100%;
                height: 300vh;
                background: #f5f5f5;
            }

            .luxury-projects__sticky {
                position: sticky;
                top: 0;
                width: 100%;
                height: 100vh;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                overflow: hidden;
                background: #f5f5f5;
            }


            /* Mobile image */

            .luxury-projects__media {
                position: relative;
                inset: auto;
                z-index: 1;
                width: 100%;
                height: 42vh;
                min-height: 265px;
                max-height: 390px;
                flex: 0 0 auto;
                overflow: hidden;
                background: #111111;
            }

            .luxury-projects__image-item {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                visibility: hidden;
            }

            .luxury-projects__image-item.project-active {
                opacity: 1;
                visibility: visible;
            }

            .luxury-projects__image-item img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            .luxury-projects__overlay,
            .luxury-projects__bottom-overlay {
                display: none;
            }


            /* Mobile content */

            .luxury-projects__container {
                position: relative;
                z-index: 5;
                width: 100%;
                height: auto;
                flex: 1 1 auto;
                margin: 0;
                padding: 23px 20px 55px;
                display: block;
                overflow-y: auto;
                background: #f5f5f5;
                scrollbar-width: none;
            }

            .luxury-projects__container::-webkit-scrollbar {
                display: none;
            }

            .luxury-projects__content {
                width: 100%;
                max-width: 100%;
            }

            .luxury-projects__counter {
                gap: 7px;
                margin-bottom: 14px;
                color: #a77a3a;
                font-size: 12px;
                letter-spacing: 2.5px;
            }

            .luxury-projects__counter-dot {
                color: #c99a4b;
            }

            .luxury-projects__location {
                margin-bottom: 7px;
                color: #555555;
                font-size: 13px;
            }

            .luxury-projects__title {
                margin-bottom: 17px;
                color: #bd8b45;
                font-size: 32px;
                line-height: 1.05;
            }

            .luxury-projects__divider {
                margin-bottom: 16px;
                background: rgba(0, 0, 0, 0.14);
            }

            .luxury-projects__information {
                gap: 9px;
                padding-bottom: 16px;
                margin-bottom: 16px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.14);
                color: #333333;
                font-size: 13px;
            }

            .luxury-projects__information i,
            .luxury-projects__information span {
                color: #333333;
            }

            .luxury-projects__information-separator {
                color: #888888 !important;
            }

            .luxury-projects__description {
                max-width: 100%;
                margin-bottom: 22px;
                color: #555555;
                font-size: 13px;
                line-height: 1.7;
            }

            .luxury-projects__buttons {
                gap: 10px;
            }

            .luxury-projects__button {
                min-height: 45px;
                padding: 12px 18px;
                font-size: 12px;
            }

            .luxury-projects__button--gold {
                min-width: 125px;
            }

            .luxury-projects__button--white {
               min-width: 175px;
        color: #c99a4b;
        background: #f5f5f5;
        border-color: #c99a4b;
            }

            .luxury-projects__progress {
                top: auto;
                right: 20px;
                bottom: 18px;
                left: 20px;
                width: auto;
                height: 2px;
                background: rgba(0, 0, 0, 0.16);
            }

            .luxury-projects__progress-line {
                width: 0;
                height: 100%;
                background: #c99a4b;
                transition: width 0.1s linear;
            }
        }


        /* =========================================================
           SMALL MOBILE
        ========================================================= */

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

            .projects-heading-section {
                padding: 70px 0 20px;
            }

            .projects-heading-title {
                font-size: 34px;
            }

            .projects-heading-description {
                font-size: 14px;
            }

            .luxury-projects__media {
                height: 34vh;
                min-height: 230px;
            }

            .luxury-projects__container {
                padding: 20px 16px 52px;
            }

            .luxury-projects__title {
                font-size: 29px;
            }

            .luxury-projects__buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                width: 100%;
            }

            .luxury-projects__button {
                width: 100%;
                min-width: 0;
                padding: 12px 10px;
            }
        }

    




/* footer section  */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');



.footer {
    /* background: #eeeae8; */
    background: #05343b;
    padding: 120px 0 30px;
    /* color: #4f5560; */
    color: #f5f5f5;
}

.footer-top {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 300px;
    width: 100%;
}

.main-logo-footer {
    text-align: center;
    align-items: center;
}

.footer-divider {
    height: 1px;
    background: #d6d6d6;
    margin-bottom: 50px;
}

.main-footer-line {
    height: 1px;
    background: #d6d6d6;
    margin: 20px 0;
}

.footer-content {
    display: flex;
    /* grid-template-columns:2fr 1fr 1fr 1fr; */
    gap: 40px;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    color: #bc8c48;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col a {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 18px;
    /* color: #575960; */
    color: #f5f5f5;
    font-family: serif;
}

.footer-col strong {
    color: #c1964c;
}

.address {
    margin-top: 25px;
}

.address h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    color: #bc8c48;
    margin-bottom: 15px;
    font-weight: 600;
}

.address p {
    letter-spacing: 0.5px;
    line-height: 26px;
    font-size: 18px;
    font-family: serif;
    color: #f5f5f5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    text-decoration: none;
    /* color: #4f5560; */
    color: #f5f5f5;
    font-size: 18px;
    transition: 0.3s;
    font-family: serif;
}

.footer-col ul li a::before {
    content: '›';
    color: #c1964c;
    margin-right: 10px;
}

.footer-col ul li a:hover {
    color: #c1964c;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #c1964c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* color:#c1964c; */
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    /* background:#c1964c; */
    color: #bc8c48;
}

.quick-links {
    text-align: center;
    margin: 10px 0 15px;
    position: relative;
}

.quick-links::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #d6d6d6;
    z-index: 0;
}

.quick-links button {
    /* position: relative;  */
    z-index: 1;
    background: #f9f9f7;
    border: 1px solid #cfcfcf;
    padding: 0;
    border-radius: 30px;
    font-size: 0;
    /* color: #2f3441; */
    /* cursor: pointer; */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 15px;
    color: #f5f5f5;
}

.bottom-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.bottom-links a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 15px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #c1964c;
}

/* Responsive footer */



/* =========================================================
   1800px - 1999px
========================================================= */

@media only screen and (min-width: 1800px) and (max-width: 1999px) {

    .footer {
        padding: 120px 0 30px;
    }


    /* .footer-content {
        grid-template-columns: 1.2fr 0.8fr 0.9fr 1.5fr;
        gap: 70px;
    } */

    .footer-logo {
        max-width: 300px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 27px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 19px;
    }
}


/* =========================================================
   1600px - 1799px
========================================================= */

@media only screen and (min-width: 1600px) and (max-width: 1799px) {

    .footer {
        padding: 110px 0 30px;
    }



    /* .footer-content {
        grid-template-columns: 1.15fr 0.8fr 0.9fr 1.45fr;
        gap: 60px;
    } */

    .footer-logo {
        max-width: 280px;
    }
}


/* =========================================================
   1400px - 1599px
========================================================= */

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

    .footer {
        padding: 100px 0 28px;
    }



    .footer-content {
        /* grid-template-columns: 1.1fr 0.8fr 0.9fr 1.4fr; */
        gap: 35px;
    }

    .footer-logo {
        max-width: 250px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 24px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 17px;
    }
}


/* =========================================================
   1200px - 1399px
========================================================= */

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .footer {
        padding: 90px 0 35px;
    }



    .footer-content {
        /* grid-template-columns: 1fr 0.8fr 0.9fr 1.4fr; */
        gap: 30px;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 23px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 16px;
    }

    .address p {
        line-height: 24px;
    }
}


/* =========================================================
   992px - 1199px
========================================================= */

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

    .footer {
        padding: 80px 0 26px;
    }



    /* .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 45px;
    } */

    .main-logo-footer {
        justify-content: flex-start;
    }

    .footer-logo {
        max-width: 260px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 25px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 17px;
    }

    .footer-bottom {
        margin-top: 5px;
    }
}


/* =========================================================
   768px - 991px
========================================================= */

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

    .footer {
        padding: 75px 0 25px;
    }



    .footer-divider {
        margin-bottom: 40px;
    }

    /* .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 35px;
    } */

    .main-logo-footer {
        justify-content: flex-start;
    }

    .footer-logo {
        max-width: 230px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 16px;
    }

    .address {
        margin-top: 20px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
    }
}


/* =========================================================
   577px - 767px
========================================================= */

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

    .footer {
        padding: 65px 0 24px;
    }



    .footer-divider {
        margin-bottom: 35px;
    }

    /* .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 28px;
    } */

    .main-logo-footer {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-logo {
        max-width: 250px;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }

    .footer-col h3,
    .address h4 {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
    }
}


/* =========================================================
   398px - 576px
========================================================= */

@media only screen and (min-width: 398px) and (max-width: 576px) {

    .footer {
        padding: 55px 0 22px;
    }



    .footer-divider {
        margin-bottom: 30px;
    }

    /* .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
    } */

    .main-logo-footer {
        justify-content: center;
    }

    .footer-logo {
        max-width: 230px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h3,
    .address h4 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 15px;
    }

    .address p {
        line-height: 23px;
    }

    .social-icons {
        gap: 10px;
        margin-top: 20px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .quick-links {
        margin: 25px 0 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom p,
    .bottom-links a {
        font-size: 14px;
    }

    .bottom-links {
        justify-content: center;
        gap: 12px;
    }
}


/* =========================================================
   MAXIMUM 397px
========================================================= */

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

    .footer {
        padding: 48px 0 20px;
    }



    .footer-divider {
        margin-bottom: 28px;
    }

    /* .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    } */

    .main-logo-footer {
        justify-content: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-col h3,
    .address h4 {
        font-size: 21px;
        margin-bottom: 13px;
    }

    .footer-col a,
    .footer-col ul li a,
    .address p {
        font-size: 14px;
    }

    .address {
        margin-top: 18px;
    }

    .address p {
        line-height: 22px;
    }

    .social-icons {
        gap: 9px;
        margin-top: 18px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .quick-links {
        margin: 22px 0 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom p,
    .bottom-links a {
        font-size: 13px;
        line-height: 1.6;
    }

    .bottom-links {
        justify-content: center;
        gap: 10px;
    }
}


/* footer animatin  */

/* Footer divider animation */
[data-aos="line-expand"] {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition-property: opacity, transform;
}

[data-aos="line-expand"].aos-animate {
    opacity: 1;
    transform: scaleX(1);
}

/* Smooth animation */
.dwarakamai-footer [data-aos] {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Social icon hover */
.dwarakamai-social li {
    transition: transform 0.35s ease;
}

.dwarakamai-social li:hover {
    transform: translateY(-6px) rotate(5deg);
}

/* Footer menu hover */
.dwarakamai-menu a {
    position: relative;
    transition: color 0.3s ease;
}

.dwarakamai-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.dwarakamai-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}



/* why choose  */


.why-choose-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #eeeae8;
    isolation: isolate;
}

/* Background image must use only this class.
   Do not use .why-choose-section img because that affects card images. */

.why-choose-section .why-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
    opacity: 0.42;
}

.why-story-overlay {
    position: relative;
    overflow: hidden;
    /* position: absolute; */
    inset: 0;
    z-index: -2;
    /* background:
            radial-gradient(
                circle at 50% 15%,
                rgba(255, 255, 255, 0.4),
                transparent 40%
            ),
            linear-gradient(
                180deg,
                rgba(255, 253, 249, 0.82) 0%,
                rgba(250, 246, 239, 0.9) 100%
            ); */
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

/* Heading Decoration */

.why-heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-heading-decoration span {
    width: 95px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            #c89547);
}

.why-heading-decoration span:last-child {
    background: linear-gradient(90deg,
            #c89547,
            transparent);
}

.why-heading-decoration i {
    color: #c89547;
    font-size: 22px;
}

/* Main Heading */

.why-choose-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-align: center;
}

.why-title-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.why-title-divider span {
    width: 88px;
    height: 1px;
    background: #d5ae71;
}

.why-title-divider i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c89547;
}

.why-choose-section .subtitle {
    max-width: 100%;
    margin: 20px auto 20px;
    text-align: center;
    font-family: serif;
    font-size: 18px;
    line-height: 1.7;
    color: #565656;
    font-weight: 400;
}

/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* Card */

.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(193, 143, 69, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow:
        0 15px 40px rgba(90, 66, 31, 0.08),
        0 3px 10px rgba(90, 66, 31, 0.05);
    opacity: 0;
    transform: translateY(60px);
    animation-fill-mode: forwards;
    will-change: transform, opacity;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 143, 69, 0.35);
    box-shadow:
        0 28px 55px rgba(90, 66, 31, 0.15),
        0 8px 20px rgba(90, 66, 31, 0.08);
}

/* Image */

.image-box {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    border-radius: 17px 17px 0 0;
    background: #ddd;
}

.image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 55%,
            rgba(10, 18, 27, 0.18) 100%);
    pointer-events: none;
}

.image-box img {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: auto;
    transition: transform 0.7s ease;
}

.why-card:hover .image-box img {
    transform: scale(1.07);
}

/* Circular Gold Icon */

.why-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: -41px auto 0;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background:
        linear-gradient(145deg,
            #dcb66c,
            #b97d2d);
    box-shadow:
        0 8px 18px rgba(166, 109, 34, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.why-icon i {
    font-size: 25px;
}

/* Card Content */

.why-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 28px 30px;
}

.why-card h3 {
    margin: 10px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.2;
    color: #292826;
    font-weight: 500;
}

.card-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 10px 0 10px;
}

.card-divider span {
    width: 35px;
    height: 1px;
    background: #c89547;
}

.card-divider i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c89547;
}

.why-card-content p {
    margin: 0;
    /* font-family: ; */
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    letter-spacing: 0.5px;
}

/* Entrance Animations */

.why-card.show-left {
    animation: arcFromLeft 1s ease forwards;
}

.why-card.show-right {
    animation: arcFromRight 1s ease forwards;
}

.why-card.delay-1 {
    animation-delay: 0.18s;
}

@keyframes arcFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) translateY(60px);
    }

    65% {
        opacity: 1;
        transform: translateX(10px) translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes arcFromRight {
    0% {
        opacity: 0;
        transform: translateX(120px) translateY(60px);
    }

    65% {
        opacity: 1;
        transform: translateX(-10px) translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Responsive */



.why-choose-section,
.why-choose-section * {
    box-sizing: border-box;
}

.why-choose-section {
    width: 100%;
}

.why-choose-section .container {
    width: calc(100% - 40px);
    max-width: 1520px;
    margin: 0 auto;
}

.why-grid {
    width: 100%;
}

.why-card {
    width: 100%;
}

.image-box img {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   1800px - 1999px
========================================================= */

@media only screen and (min-width: 1800px) and (max-width: 1999px) {

    .why-choose-section {
        padding: 120px 0;
    }



    .why-choose-section h2 {
        font-size: 54px;
    }



    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 26px;
    }

    .image-box {
        height: 310px;
    }




}


/* =========================================================
   1600px - 1799px
========================================================= */

@media only screen and (min-width: 1600px) and (max-width: 1799px) {





    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .image-box {
        height: 285px;
    }

    .why-card-content {
        padding: 14px 24px 28px;
    }
}


/* =========================================================
   1400px - 1599px
========================================================= */

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

    .why-choose-section {
        padding: 100px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 80px);
        max-width: 1340px;
    }

    .why-choose-section h2 {
        font-size: 48px;
    }

    .why-choose-section .subtitle {
        font-size: 19px;
    }

    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .image-box {
        height: 250px;
    }

    .why-icon {
        width: 58px;
        height: 58px;
        margin-top: -38px;
    }

    .why-icon i {
        font-size: 23px;
    }

    .why-card-content {
        padding: 14px 20px 26px;
    }

    .why-card h3 {
        font-size: 28px;
    }

    .why-card-content p {
        font-size: 16px;
        line-height: 1.4;
    }
}


/* =========================================================
   1200px - 1399px
========================================================= */

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .why-choose-section {
        padding: 90px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 70px);
        max-width: 1160px;
    }

    .why-choose-section h2 {
        font-size: 45px;
    }

    .why-choose-section .subtitle {
        max-width: 850px;
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .image-box {
        height: 220px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
        margin-top: -35px;
        border-width: 2px;
    }

    .why-icon i {
        font-size: 21px;
    }

    .why-card-content {
        padding: 13px 16px 24px;
    }

    .why-card h3 {
        font-size: 25px;
    }

    .why-card-content p {
        font-size: 15px;
        line-height: 1.4;
    }
}


/* =========================================================
   992px - 1199px
========================================================= */

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

    .why-choose-section {
        padding: 85px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 60px);
        max-width: 940px;
    }

    .why-choose-section h2 {
        font-size: 44px;
    }

    .why-choose-section .subtitle {
        max-width: 760px;
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .image-box {
        height: 280px;
    }

    .why-card-content {
        padding: 15px 24px 28px;
    }

    .why-card h3 {
        font-size: 30px;
    }

    .why-card-content p {
        font-size: 17px;
        line-height: 1.5;
    }
}


/* =========================================================
   768px - 991px
========================================================= */

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

    .why-choose-section {
        padding: 75px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 50px);
        max-width: 720px;
    }

    .why-choose-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .why-choose-section .subtitle {
        max-width: 650px;
        font-size: 17px;
        line-height: 1.65;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .image-box {
        height: 235px;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        margin-top: -37px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-card-content {
        padding: 14px 19px 25px;
    }

    .why-card h3 {
        font-size: 27px;
    }

    .why-card-content p {
        font-size: 15px;
        line-height: 1.45;
    }
}


/* =========================================================
   577px - 767px
========================================================= */

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

    .why-choose-section {
        padding: 65px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 40px);
    }

    .why-choose-section h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .why-choose-section .subtitle {
        max-width: 520px;
        margin: 16px auto 28px;
        font-size: 16px;
        line-height: 1.6;
    }

    .why-heading-decoration span {
        width: 70px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .image-box {
        height: 200px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        margin-top: -34px;
    }

    .why-icon i {
        font-size: 20px;
    }

    .why-card-content {
        padding: 13px 14px 22px;
    }

    .why-card h3 {
        font-size: 24px;
    }

    .card-divider {
        margin: 9px 0;
    }

    .why-card-content p {
        font-size: 14px;
        line-height: 1.45;
    }
}


/* =========================================================
   398px - 576px
========================================================= */

@media only screen and (min-width: 398px) and (max-width: 576px) {

    .why-choose-section {
        padding: 55px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 32px);
    }

    .why-choose-section h2 {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .why-choose-section .subtitle {
        margin: 14px auto 26px;
        font-size: 15px;
        line-height: 1.55;
    }

    .why-heading-decoration {
        gap: 9px;
    }

    .why-heading-decoration span {
        width: 55px;
    }

    .why-heading-decoration i {
        font-size: 18px;
    }

    .why-title-divider span {
        width: 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-card {
        max-width: 430px;
        margin: 0 auto;
        border-radius: 16px;
    }

    .image-box {
        height: 270px;
        border-radius: 15px 15px 0 0;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        margin-top: -37px;
    }

    .why-icon i {
        font-size: 21px;
    }

    .why-card-content {
        padding: 14px 20px 25px;
    }

    .why-card h3 {
        font-size: 27px;
    }

    .why-card-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}


/* =========================================================
   MAXIMUM 397px
========================================================= */

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

    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-section .container {
        width: calc(100% - 26px);
    }

    .why-choose-section h2 {
        font-size: 31px;
        margin-bottom: 14px;
    }

    .why-choose-section .subtitle {
        margin: 12px auto 24px;
        font-size: 14px;
        line-height: 1.55;
    }

    .why-heading-decoration {
        gap: 8px;
    }

    .why-heading-decoration span {
        width: 42px;
    }

    .why-heading-decoration i {
        font-size: 17px;
    }

    .why-title-divider span {
        width: 48px;
    }

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

    .why-card {
        width: 100%;
        border-radius: 15px;
    }

    .image-box {
        height: 235px;
        border-radius: 14px 14px 0 0;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        margin-top: -34px;
    }

    .why-icon i {
        font-size: 19px;
    }

    .why-card-content {
        padding: 13px 16px 22px;
    }

    .why-card h3 {
        font-size: 25px;
    }

    .card-divider {
        margin: 8px 0;
    }

    .why-card-content p {
        font-size: 14px;
        line-height: 1.45;
    }
}


/* =========================================================
   DECORATIVE LEAVES
========================================================= */

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

    .why-choose-section .eco-top-leaves,
    .why-choose-section .eco-bottom-leaves {
        opacity: 0.5;
    }
}

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

    .why-choose-section .eco-top-leaves,
    .why-choose-section .eco-bottom-leaves {
        width: 145px;
        opacity: 0.3;
    }

    .why-choose-section .eco-top-leaves img,
    .why-choose-section .eco-bottom-leaves img {
        width: 100%;
        height: auto;
    }
}

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

    .why-choose-section .eco-top-leaves,
    .why-choose-section .eco-bottom-leaves {
        width: 105px;
        opacity: 0.22;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .why-card,
    .why-card.show-left,
    .why-card.show-right {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .why-card:hover {
        transform: none;
    }

    .image-box img {
        transition: none;
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .why-card,
    .why-card.show-left,
    .why-card.show-right {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .image-box img {
        transition: none;
    }
}

/* sustainability  */

.eco-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    /* border-bottom: 1px solid #e1ddd6; */
    background: #f5f5f5;
}

/* Main Container */

.eco-row {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    margin: auto;
    gap: 65px;
}

/* Left Content */

.eco-content {
    position: relative;
    z-index: 5;
    width: 50%;
    padding-left: 10px;
}

.eco-subtitle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto 22px;
}

.eco-subtitle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    color: #bd8737;
    font-size: 31px;
}

.eco-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #164a34;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* .eco-subtitle::before,
.eco-subtitle::after {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: #c8954b;
} */

.eco-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.eco-content h2 span,
.eco-content h2 strong {
    display: block;
}

.eco-content h2 span {
    color: #c08a3d;
}

.eco-content h2 strong {
    margin-top: 12px;
    color: #174b35;
    font-weight: 500;
}

.eco-heading-line {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 27px 0 27px;
}

.eco-heading-line span {
    width: 165px;
    height: 1px;
    background: #c99b5a;
}

.eco-heading-line i {
    color: #bd8737;
    font-size: 20px;
}

.eco-content p {
    max-width: 100%;
    margin: 0 0 25px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

/* Feature Box */

.eco-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    width: 100%;
    margin-top: 24px;
    border: 1px solid rgba(190, 135, 57, 0.42);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.58);
}

.eco-feature-item {
    position: relative;
    min-width: 0;
    padding: 20px 8px 14px;
    text-align: center;
}

.eco-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 0;
    width: 1px;
    height: calc(100% - 34px);
    background: rgba(190, 135, 57, 0.35);
}

.eco-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: #bc8c48;
    font-size: 30px;
}

.eco-feature-item h4 {
    /* min-height: 44px; */
    margin: 0;
    color: #333;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.4;
}

.eco-feature-line {
    display: block;
    width: 28px;
    height: 2px;
    margin: 11px auto 0;
    background: #bd8737;
}

/* Right Image Area */

.eco-image-area {
    position: relative;
    width: 50%;
    padding: 45px 28px 35px 15px;
}

.eco-green-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    border-radius: 0;
    /* background: #bc8c48; */
    border: 2px solid #bc8c48;
    box-shadow: 0 16px 35px #bc8c4821;
}

.eco-gold-line {
    position: absolute;
    top: 34px;
    left: 0;
    z-index: 2;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #be883c 12%,
            #be883c 100%);
}


.eco-image-box {
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid #bc8c48;
    border-radius: 0;
    background: #ddd;
    box-shadow:
        0 20px 50px rgba(28, 53, 38, 0.16),
        0 4px 15px rgba(28, 53, 38, 0.08);
}

.eco-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(17, 55, 38, 0.08),
            transparent 35%);
}

.eco-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.eco-image-area:hover .eco-image-box img {
    transform: scale(1.035);
}

/* Leaf Badge */

.eco-leaf-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 3px solid #d5a256;
    border-radius: 50%;
    color: #d8ac65;
    background: #184c35;
    box-shadow:
        0 12px 25px rgba(31, 72, 51, 0.23),
        0 0 0 6px rgba(255, 255, 255, 0.72);
}

.eco-leaf-badge i {
    font-size: 52px;
}

/* Decorative Dots */

.eco-dots {
    position: absolute;
    bottom: 0;
    left: 29%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 4px);
    gap: 8px;
}

.eco-dots span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c08a3d;
}

/* Decorative Leaves */

.eco-top-leaves,
.eco-bottom-leaves {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
}

.eco-top-leaves {
    top: -40px;
    left: -40px;
    width: 300px;
    opacity: 0.18 !important;
    transform: rotate(360deg) !important;
}

.eco-bottom-leaves {
    bottom: -40px;
    right: -40px;
    width: 300px;
    opacity: 0.18 !important;
    transform: rotate(180deg) !important;
}

.eco-top-leaves img,
.eco-bottom-leaves img {
    display: block;
    width: 100%;
}


/* ==========================================================
   ECO SECTION RESPONSIVE
========================================================== */



/* 1600px - 1799px */
@media only screen and (min-width:1600px) and (max-width:1799px) {

    .eco-content {
        width: 42%;
    }

    .eco-image-area {
        width: 58%;
    }
}


/* 1400px - 1599px */
@media only screen and (min-width:1400px) and (max-width:1599px) {

    .eco-row {
        gap: 45px;
    }

    .eco-content {
        width: 45%;
    }

    .eco-image-area {
        width: 55%;
    }





}


/* 1200px - 1399px */
@media only screen and (min-width:1200px) and (max-width:1399px) {

    .eco-section {
        padding: 100px 0;
    }

    .eco-row {
        gap: 35px;
    }

    .eco-content {
        width: 47%;
    }

    .eco-image-area {
        width: 53%;
        padding: 35px 15px;
    }
}


/* 992px - 1199px */
@media only screen and (min-width:992px) and (max-width:1199px) {

    .eco-section {
        padding: 100px 0;
    }

    .eco-row {
        gap: 45px;
        flex-direction: column;
    }

    .eco-content,
    .eco-image-area {
        width: 100%;
    }

    .eco-content {
        text-align: center;
    }

    .eco-content h2 {
        font-size: 40px;
    }

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

    .eco-features {
        grid-template-columns: repeat(4, 1fr);
    }



    .eco-image-area {
        padding: 20px;
    }

}


/* 768px - 991px */
@media only screen and (min-width:768px) and (max-width:991px) {

    .eco-section {
        padding: 80px 0;
    }

    .eco-row {
        flex-direction: column;
        gap: 40px;
    }

    .eco-content,
    .eco-image-area {
        width: 100%;
    }

    .eco-content {
        text-align: center;
    }

    .eco-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .eco-content p {
        font-size: 14px;
    }

  

    .eco-image-box {
        border-radius: 60px 20px;
    }

}


/* 577px - 767px */
@media only screen and (min-width:577px) and (max-width:767px) {

    .eco-section {
        padding: 70px 0;
    }

    .eco-row {
        flex-direction: column;
        gap: 35px;
    }

    .eco-content,
    .eco-image-area {
        width: 100%;
    }

    .eco-content {
        text-align: center;
        padding-left: 0;
    }

    .eco-content h2 {
        font-size: 34px;
    }

    .eco-content p {
        font-size: 14px;
    }

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

    .eco-feature-item:nth-child(2)::after {
        display: none;
    }

    .eco-image-area {
        padding: 15px;
    }

    .eco-image-box {
        border-radius: 50px 20px;
    }

    .eco-dots {
        display: none;
    }

}


/* 398px - 576px */



/* 397px */
@media only screen and (max-width:576px) {

    .eco-section {
        padding: 70px 0;
    }

    .eco-row {
        flex-direction: column;
        gap: 28px;
    }

    .eco-content,
    .eco-image-area {
        width: 100%;
        padding: 0;
    }

    .eco-content {
        text-align: center;
    }

    .eco-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .eco-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .eco-features {
        grid-template-columns: 1fr 1fr;
    }

    .eco-feature-item {
        padding: 10px;
    }



    .eco-image-box {
        border-radius: 30px 12px;
    }

    .eco-green-shape,
    .eco-gold-line,
    .eco-dots {
        display: none;
    }

    .eco-top-leaves,
    .eco-bottom-leaves {
        width: 160px;
    }

}

/* Laptop */


/* why choose 2 */


.dka-why-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, rgba(247, 243, 234, .96), rgba(247, 243, 234, .96)),
        url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.dka-why-top {
    margin-bottom: 70px;
}

.dka-section-title__tagline-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.dka-section-title__shape {
    width: 44px;
    height: 2px;
    background: #b58a49;
}

.dka-section-title__tagline {
    color: #b58a49;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.dka-section-title__title {
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.15;
    color: #17353b;
    font-weight: 700;
    max-width: 650px;
}

.dka-why-top-text {
    font-size: 18px;
    line-height: 34px;
    color: #333;
    max-width: 560px;
    margin-top: 10px;
}

.dka-feature-hero-box {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ddd2c2;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.dka-feature-hero-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.dka-feature-hero-content {
    background: #e8cda7;
    padding: 28px;
    text-align: center;
}

.dka-feature-hero-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    color: #111;
}

.dka-cards-grid .row {
    row-gap: 30px;
}

.dka-service-card {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #d4c9b8;
    background: #fbfaf6;
    min-height: 180px;
    transition: .35s ease;
    border-radius: 18px;
}

.dka-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.dka-service-card__img {
    width: 250px;
    min-width: 150px;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 0 120px 120px 0;
}

.dka-service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.dka-service-card:hover .dka-service-card__img img {
    transform: scale(1.08);
}

.dka-service-card__badge {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.dka-service-card:hover .dka-service-card__badge {
    opacity: 1;
}

.dka-service-card__badge img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.dka-service-card__content {
    padding: 32px;
    flex: 1;
}

.dka-service-card__title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #17353b;
    font-family: Georgia, serif;
}

.dka-service-card__text {
    font-size: 16px;
    line-height: 24px;
    color: #444;
}

@media(max-width:991px) {
    .dka-service-card {
        flex-direction: column;
        text-align: center;
    }

    .dka-service-card__img {
        width: 100%;
        height: 240px;
        border-radius: 0;
    }

    .dka-service-card__content {
        padding: 24px;
    }

    .dka-section-title__title {
        font-size: 38px;
        max-width: 100%;
    }

    .dka-feature-hero-text {
        font-size: 20px;
        line-height: 32px;
    }
}

@media(max-width:767px) {
    .dka-why-section {
        padding: 60px 0;
    }

    .dka-why-top {
        text-align: center;
    }

    .dka-section-title__tagline-box {
        justify-content: center;
    }

    .dka-section-title__title {
        font-size: 30px;
    }

    .dka-why-top-text {
        margin-top: 20px;
        font-size: 16px;
        line-height: 28px;
    }

    .dka-feature-hero-img img {
        height: 280px;
    }

    .dka-feature-hero-text {
        font-size: 18px;
        line-height: 28px;
    }
}




/*==================================
 PREMIUM ADD-ON CSS
===================================*/

/* Paper Background */
.dka-why-section {
    position: relative;
    overflow: hidden;
}

.dka-why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
    opacity: .18;
    pointer-events: none;
}

.dka-why-section::after {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 320px;
    height: 520px;
    background: url("https://www.svgrepo.com/show/530365/building.svg") no-repeat center;
    background-size: contain;
    opacity: .05;
}

/* Heading */

.dka-section-title__title {
    position: relative;
    padding-bottom: 28px;
}

.dka-section-title__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 2px;
    background: #c59d5f;
}

.dka-section-title__title::before {
    content: "◆";
    position: absolute;
    left: 125px;
    bottom: -10px;
    color: #c59d5f;
    font-size: 14px;
}

/* Card */

.dka-service-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    border: 1px solid #e3d7c5;
}

.dka-service-card:hover {
    border-color: #c59d5f;
}

/* Number */

.dka-service-card {
    counter-increment: service;
}

.dka-cards-grid {
    counter-reset: service;
}

.dka-service-card__content {
    position: relative;
}

.dka-service-card__content::before {

    content: "0" counter(service);

    display: block;

    color: #c59d5f;

    font-size: 34px;

    font-family: Georgia, serif;

    margin-bottom: 12px;

}

/* Title */

.dka-service-card__title {

    transition: .35s;

}

.dka-service-card:hover .dka-service-card__title {

    color: #b5873e;

}

/* Image */

.dka-service-card__img {

    border-right: 2px solid #dcb97b;

}

.dka-service-card__img img {

    filter: brightness(.96);

}

/* Hover */

.dka-service-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg, #d9b37b20, transparent);

    opacity: 0;

    transition: .4s;

}

.dka-service-card:hover::before {

    opacity: 1;

}

/* Text */

.dka-service-card__text {

    max-width: 280px;

}

/* Smooth */

.dka-service-card,
.dka-service-card img,
.dka-service-card__badge,
.dka-service-card__title {

    transition: .4s;

}


/* testimonials  */


.review-wrap {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #ffffff;
}

/*=================================
SECTION HEADING
=================================*/

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.title-group {
    max-width: 100%;
}

.title-group h2 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #bc8c48;
}

.title-group p {
    margin: 0;
    max-width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    /* color: #555555; */
}


/*=================================
NAVIGATION
=================================*/

.carousel-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid #bc8c48;
    border-radius: 50%;
    background: transparent;
    color: #bc8c48;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
    background: #bc8c48;
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}


/*=================================
SLIDER
=================================*/

.slider-viewport {
    width: 100%;
    overflow: hidden;
}

.card-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}


/*=================================
TESTIMONIAL CARD
=================================*/

.testimonial-card {
    flex: 0 0 auto;
    min-height: 365px;
    padding: 30px;
    border: 1px solid #bc8c48;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    height: 55px;
    margin-bottom: 10px;
    /* font-family: Georgia, serif; */
    font-size: 60px;
    line-height: 1;
    color: #bc8c48;
}

.quote {
    flex-grow: 1;
    margin: 0 0 25px;
    /* font-family: "Montserrat", sans-serif; */
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    /* color: #444444; */
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.details {
    width: 100%;
}

.owner {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.75px;
    color: #bc8c48;
}

.location {
    margin: 0;
    /* font-family: "Montserrat", sans-serif; */
    font-size: 14px;
    line-height: 1.4;
    /* color: #666666; */
}


/*=================================
PROGRESS BAR
=================================*/

.progress-bar {
    position: relative;
    width: min(500px, 100%);
    height: 4px;
    margin-top: 30px;
    overflow: hidden;
    background: #e7e7e7;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: #bc8c48;
    transform-origin: left center;
    transition: width 0.45s ease;
}


/*=================================
ABOVE 1200PX - 4 CARDS
=================================*/

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

    .testimonial-card {
        padding: 30px;
    }

}


/*=================================
992PX TO 1199PX - 3 CARDS
=================================*/

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

    .review-wrap {
        padding: 90px 0;
    }

    .title-group h2 {
        font-size: 40px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 26px;
    }

}


/*=================================
577PX TO 991PX - 2 CARDS
=================================*/

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

    .review-wrap {
        padding: 70px 0;
    }

    .review-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .carousel-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .title-group h2 {
        font-size: 34px;
    }

    .title-group p {
        font-size: 14px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 24px;
    }

    .nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
    .quote {
    margin: 0 0 15px;
    font-size: 14px;
}

}


/*=================================
BELOW 577PX - 1 CARD
=================================*/

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

    .review-wrap {
        padding: 70px 0;
    }



    .review-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-bottom: 25px;
    }

    .carousel-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .title-group h2 {
        margin-bottom: 14px;
        font-size: 34px;
        line-height: 1.15;
    }

    .title-group p {
        font-size: 14px;
        line-height: 1.7;
    }

    .card-container {
        gap: 16px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 25px;
    }

    .quote-mark {
        height: 48px;
        font-size: 52px;
    }

    .quote {
        font-size: 14px;
        line-height: 1.7;
    }

    .owner {
        font-size: 16px;
    }

    .location {
        font-size: 14px;
    }

    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .progress-bar {
        margin-top: 25px;
    }

}


/*=================================
VERY SMALL MOBILE
=================================*/

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

    .title-group h2 {
        font-size: 35px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px;
    }

}



/* contact  */

.contact-hero-section {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 75%));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
    padding: 30px 20px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-hero-text {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    margin: 30px auto;
    font-family: serif;
    width: 80%;
}

.contact-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: #b78d45;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .35s ease;
    font-family: 'Montserrat';
}

.contact-trigger-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}
@media (max-width:1199px) {
.contact-hero-title {
    font-size: 40px;
}
}

@media (max-width:991px) {

    .contact-hero-section {
        min-height: 520px;
    }

    .contact-hero-title {
        font-size: 34px;
    }

    .contact-hero-text {
        font-size: 14px;
    }

}

@media (max-width:767px) {

    .contact-hero-section {
        min-height: 420px;
    }

    .contact-hero-title {
        font-size: 34px;
    }

    .contact-hero-text {
        font-size: 14px;
    }

    .contact-trigger-btn {
        padding: 14px 34px;
    }

}

/* Modal Background */
.contact-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-modal-content {
    background: white;
    margin: 14% auto;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    position: relative;
}

.contact-close-btn {
    position: absolute;
    right: 20px;
    top: 5px;
    cursor: pointer;
    font-size: 30px;
    color: #000;
}

/* Form Elements */
.contact-input-field {
    width: 100%;
    padding: 16px 0;
    margin: 10px 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #000;
    font-family: 'Montserrat' !important;
}

.contact-modal-content form label {
    font-size: 16px;
    color: #000;
}

.contact-submit-btn {
    width: 100%;
    padding: 10px;
    background: #a68953;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form-subtitle {
    color: #bc8c48;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif !important;
}

.contact-modal-content h2 {
    font-size: 20px;
}





/* header section  */


.mxd-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;

    width: 100%;
    padding: 10px 55px 10px 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition:
        transform 0.45s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.35s ease,
        visibility 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

/* Header background after scrolling */

.mxd-header.header-scrolled {
    background: rgba(238, 234, 232, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Hide while scrolling down */

.mxd-header.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Show while scrolling up */

.mxd-header.header-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Keep header visible when menu is open */

.mxd-header.menu-active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


/* =========================================
           HEADER LOGO
        ========================================= */

.mxd-header__logo {
    position: relative;
    z-index: 10004;

    display: flex;
    align-items: center;
}

.mxd-header__logo a {
    display: inline-flex;
    align-items: center;
}

.mxd-header__logo img {
    display: block;
    width: 150px;
    height: auto;

    opacity: 1;
    transition:
        opacity 0.2s ease,
        transform 0.35s ease;
}


/* =========================================
           HAMBURGER BUTTON
        ========================================= */

.mxd-menu__hamburger {
    position: relative;
    z-index: 10004;

    flex: 0 0 auto;

    width: 62px;
    height: 62px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #bd8e4d;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.mxd-menu__hamburger:hover {
    background: #a97838;
    transform: scale(1.06);
    box-shadow: 0 13px 35px rgba(0, 0, 0, 0.28);
}

.hamburger__line {
    position: absolute;

    width: 26px;
    height: 2px;

    border-radius: 20px;
    background: #ffffff;

    transition:
        transform 0.45s ease,
        opacity 0.35s ease;
}

.hamburger__line:first-child {
    transform: translateY(-5px);
}

.hamburger__line:last-child {
    transform: translateY(5px);
}

.mxd-menu__hamburger.is-active .hamburger__line:first-child {
    transform: translateY(0) rotate(45deg);
}

.mxd-menu__hamburger.is-active .hamburger__line:last-child {
    transform: translateY(0) rotate(-45deg);
}


/* =========================================
           FULLSCREEN MENU
        ========================================= */

.mxd-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        visibility 0.6s ease,
        opacity 0.6s ease;
}

.mxd-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================
           MENU OVERLAY
        ========================================= */

.mxd-menu__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.46) 45%,
            rgba(0, 0, 0, 0.85) 100%);

    opacity: 0;
    cursor: pointer;

    transition: opacity 0.6s ease;
}

.mxd-menu.is-open .mxd-menu__overlay {
    opacity: 1;
}


/* =========================================
           MENU NAVIGATION
        ========================================= */

.mxd-menu__navigation {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;

    width: 50%;
    height: 100%;

    padding: 105px 80px 35px;

    display: flex;
    align-items: center;

    overflow-x: hidden;
    overflow-y: auto;

    background: #eeeae8;

    transform: translateX(100%);

    transition:
        transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);

    -webkit-overflow-scrolling: touch;
}

.mxd-menu.is-open .mxd-menu__navigation {
    transform: translateX(0);
}

.mxd-menu__navigation::-webkit-scrollbar {
    width: 5px;
}

.mxd-menu__navigation::-webkit-scrollbar-track {
    background: transparent;
}

.mxd-menu__navigation::-webkit-scrollbar-thumb {
    background: rgba(203, 160, 100, 0.7);
    border-radius: 20px;
}

.mxd-menu__inner,
.main-menu,
.main-menu__content,
.main-menu__accordion {
    width: 100%;
}


/* =========================================
           MENU ITEMS
        ========================================= */

.main-menu__item {
    width: 100%;
    padding: 5px 0;

    opacity: 0;
    transform: translateX(70px);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.mxd-menu.is-open .main-menu__item {
    opacity: 1;
    transform: translateX(0);
}

.mxd-menu.is-open .main-menu__item:nth-child(1) {
    transition-delay: 0.18s;
}

.mxd-menu.is-open .main-menu__item:nth-child(2) {
    transition-delay: 0.24s;
}

.mxd-menu.is-open .main-menu__item:nth-child(3) {
    transition-delay: 0.30s;
}

.mxd-menu.is-open .main-menu__item:nth-child(4) {
    transition-delay: 0.36s;
}

.mxd-menu.is-open .main-menu__item:nth-child(5) {
    transition-delay: 0.42s;
}

.mxd-menu.is-open .main-menu__item:nth-child(6) {
    transition-delay: 0.48s;
}

.mxd-menu.is-open .main-menu__item:nth-child(7) {
    transition-delay: 0.54s;
}

.mxd-menu.is-open .main-menu__item:nth-child(8) {
    transition-delay: 0.60s;
}

.mxd-menu.is-open .main-menu__item:nth-child(9) {
    transition-delay: 0.66s;
}


/* =========================================
           MENU LINKS
        ========================================= */

.main-menu__link {
    width: 100%;
    min-height: 57px;
    padding: 9px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    color: #333333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);

    cursor: pointer;
}

.main-menu__caption {
    position: relative;
    display: inline-block;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 35px;
    line-height: 1;
    font-weight: 500;
    color: #333333;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

/* .main-menu__caption::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #d2a568;

    transition: width 0.35s ease;
} */


/* =========================================
           MENU ARROW
        ========================================= */

.main-menu__arrow {
    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d4aa6d;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.main-menu__arrow i {
    font-size: 14px;
}

.main-menu__link:hover .main-menu__caption {
    color: #d6ad72;
    transform: translateX(10px);
}

/* .main-menu__link:hover .main-menu__caption::after {
    width: 100%;
} */

.main-menu__link:hover .main-menu__arrow {
    color: #ffffff;
    background: #bd8e4d;
    border-color: #bd8e4d;
    transform: rotate(45deg);
}


/* =========================================
           TABLET
        ========================================= */

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

    .mxd-header {
        padding: 10px 30px 10px 35px;
    }

    .mxd-header__logo img {
        width: 138px;
    }

    .mxd-menu__hamburger {
        width: 54px;
        height: 54px;
    }

    .hamburger__line {
        width: 22px;
    }

    .mxd-menu__navigation {
        width: 62%;
        padding: 95px 42px 28px;
    }

    .main-menu__link {
        min-height: 51px;
        padding: 7px 0;
        gap: 18px;
    }

    .main-menu__caption {
        font-size: 29px;
    }

    .main-menu__arrow {
        width: 34px;
        height: 34px;
    }
}


/* =========================================
           MOBILE AND SMALL TABLET
        ========================================= */

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

    .mxd-header {
        padding: 8px 20px;
    }

    /*
            Header stays above mobile menu.
            Logo changes using JavaScript.
            */

    .mxd-header.menu-active {
        background: #eeeae8;
    }

    .mxd-header__logo img {
        width: 128px;
    }

    .mxd-menu__hamburger {
        width: 48px;
        height: 48px;
    }

    .hamburger__line {
        width: 21px;
    }

    .mxd-menu__overlay {
        display: none;
    }

    .mxd-menu__navigation {
        width: 100%;
        height: 100%;

        padding: 90px 28px 25px;

        align-items: flex-start;
        background: #eeeae8;
    }

    .mxd-menu__inner {
        padding: 20px 10px 35px;
    }

    .main-menu__item {
        padding: 1px 0;
    }

    .main-menu__link {
        min-height: 49px;
        padding: 7px 0;
        gap: 14px;
    }

    .main-menu__caption {
        font-size: 27px;
    }

    .main-menu__arrow {
        width: 32px;
        height: 32px;
    }

    .main-menu__arrow i {
        font-size: 11px;
    }

    .main-menu__link:hover .main-menu__caption {
        transform: translateX(5px);
    }
}


/* =========================================
           SMALL MOBILE
        ========================================= */

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

    .mxd-header {
        padding: 7px 14px;
    }

    .mxd-header__logo img {
        width: 112px;
    }

    .mxd-menu__hamburger {
        width: 44px;
        height: 44px;
    }

    .hamburger__line {
        width: 19px;
    }

    .hamburger__line:first-child {
        transform: translateY(-4px);
    }

    .hamburger__line:last-child {
        transform: translateY(4px);
    }

    .mxd-menu__hamburger.is-active .hamburger__line:first-child {
        transform: translateY(0) rotate(45deg);
    }

    .mxd-menu__hamburger.is-active .hamburger__line:last-child {
        transform: translateY(0) rotate(-45deg);
    }

    .mxd-menu__navigation {
        padding: 72px 16px 18px;
    }

    .mxd-menu__inner {
        padding: 28px 10px 30px;
    }

    .main-menu__link {
        min-height: 45px;
        padding: 5px 0;
        gap: 10px;
    }

    .main-menu__caption {
        font-size: 22px;
        line-height: 1.1;
    }

    .main-menu__caption::after {
        bottom: -3px;
    }

    .main-menu__arrow {
        width: 29px;
        height: 29px;
    }

    .main-menu__arrow i {
        font-size: 10px;
    }
}


/* =========================================
           SHORT MOBILE SCREEN
        ========================================= */

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

    .mxd-menu__navigation {
        padding-top: 65px;
        padding-bottom: 15px;
    }

    .mxd-menu__inner {
        padding-top: 50px;
    }

    .main-menu__link {
        min-height: 45px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .main-menu__caption {
        font-size: 21px;
    }

    .main-menu__arrow {
        width: 27px;
        height: 27px;
    }
}



/* =========================================
   ONGOING PROJECTS SUB MENU
========================================= */

.main-menu__item--has-submenu {
    position: relative;
}


/* Main ongoing project link */

.ongoing-projects-link {
    position: relative;
}


/* Submenu */

.project-submenu {
    margin: 0;
    padding: 0 0 0 25px;

    list-style: none;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        max-height 0.5s ease,
        opacity 0.35s ease,
        transform 0.4s ease,
        visibility 0.35s ease;
}


/* Desktop Hover Open */

.main-menu__item--has-submenu:hover .project-submenu {
    max-height: 250px;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* Rotate dropdown arrow */

.main-menu__item--has-submenu:hover
.ongoing-projects-link
.main-menu__arrow {
    transform: rotate(180deg);

    background: #bd8e4d;
    border-color: #bd8e4d;
    color: #ffffff;
}


/* Project submenu item */

.project-submenu li {
    width: 100%;
}


/* Project links */

.project-submenu li a {
    width: 100%;

    padding: 12px 5px 12px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;

    color: #555;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    transition:
        color 0.3s ease,
        padding-left 0.3s ease,
        background 0.3s ease;
}


/* Project arrow */

.project-submenu li a i {
    margin-right: 12px;

    font-size: 12px;

    color: #bd8e4d;

    opacity: 0;

    transform: translateX(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* Project hover */

.project-submenu li a:hover {
    color: #bd8e4d;

    padding-left: 25px;
}


/* Show project arrow */

.project-submenu li a:hover i {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================
   MOBILE
========================================= */

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

    .project-submenu {
        padding-left: 15px;
    }

    .project-submenu li a {
        padding: 10px 5px 10px 12px;

        font-size: 20px;
    }

}


/* Small Mobile */

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

    .project-submenu li a {
        font-size: 18px;

        padding-top: 9px;
        padding-bottom: 9px;
    }

}


/* about  section  */

/* =====================================
           ABOUT HERO SECTION
        ===================================== */

.dw-about-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.dw-about-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: 110px;
}

/* =====================================
           LEFT CONTENT
        ===================================== */

.dw-about-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.dw-about-top-text {
    max-width: 730px;
    margin-bottom: 16px;
    /* color: #262626; */
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.dw-about-heading {
    margin-bottom: 32px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
}

.dw-about-description {
    max-width: 780px;
    margin-bottom: 24px;
    /* color: #343434; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
}

.dw-about-small-description {
    max-width: 800px;
    margin-top: 18px;
    /* color: #343434; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
}

/* =====================================
           BUTTON
        ===================================== */

.dw-about-actions {
    margin-top: 46px;
}

.dw-about-button {
    min-width: 180px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 26px;
    border: 1px solid #bc8c48;
    border-radius: 50px;
    color: #c28d44;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dw-about-button i {
    font-size: 13px;
    transform: rotate(-45deg);
    transition: transform 0.35s ease;
}

.dw-about-button:hover {
    color: #ffffff;
    background: #bc8c48;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(198, 149, 80, 0.24);
}

.dw-about-button:hover i {
    transform: rotate(0deg);
}

/* =====================================
           STATS
        ===================================== */

.dw-about-stats {
    width: 100%;
    max-width: 830px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 62px;
}

.dw-stat-item {
    min-height: 120px;
    padding: 4px 22px;
    border-left: 1px solid #d8d8d8;
}
.dw-stat-item:first-child {
    border-left: none;
}

.dw-stat-number {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #bc8c48;
    font-family: "Montserrat", sans-serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.8px;
}

.dw-stat-number span {
    display: inline-block;
    margin-top: 8px;
    margin-left: 3px;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0;
}

.dw-stat-label {
    /* color: #353535; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

/* =====================================
           RIGHT IMAGE
        ===================================== */

.dw-about-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dw-about-image-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 415px;
    aspect-ratio: 415 / 605;
    overflow: hidden;
    background: #172139;
}

.dw-about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.dw-about-image-wrap:hover img {
    transform: scale(1.035);
}

.dw-about-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,
            rgba(5, 11, 27, 0.18),
            transparent 42%),
        linear-gradient(to bottom,
            rgba(7, 12, 34, 0.08),
            transparent 38%);
}


/* =====================================
           ENQUIRE NOW SIDE BUTTON
        ===================================== */

.dw-enquire-button {
    position: fixed;
    z-index: 100;
    top: 49%;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 8px 8px 0 0;
    background: #bc8c48;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transform: translate(49px, -50%) rotate(90deg);
    transform-origin: center;
    transition: background 0.3s ease;
}

.dw-enquire-button:hover {
    background: #ab7939;
}

/* =====================================
           LARGE SCREEN
        ===================================== */

@media (min-width: 1600px) {
    .dw-about-container {
        width: min(1465px, calc(100% - 100px));
    }

    .dw-about-section {
        min-height: 830px;
    }

    .dw-about-row {
        grid-template-columns: minmax(0, 1.45fr) 415px;
        gap: 135px;
    }

    .dw-about-image-wrap {
        max-width: 415px;
    }
}

/* =====================================
           LAPTOP
        ===================================== */

@media (max-width: 1400px) {
    .dw-about-container {
        width: min(1250px, calc(100% - 60px));
    }

    .dw-about-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.72fr);
        gap: 70px;
    }

    .dw-about-heading {
        font-size: 40px;
            margin-bottom: 20px;
    }
    .dw-about-description {
    margin-bottom: 15px;
}
.dw-about-small-description {
    margin-top: 0;
}
.dw-about-actions {
    margin-top: 20px;
}
.dw-about-stats {
    margin-top: 35px;
}

    .dw-about-circle {
        width: 680px;
        height: 680px;
        right: -110px;
    }

    .dw-stat-item {
        padding-right: 15px;
        padding-left: 18px;
    }
    .dw-stat-number {
        font-size: 40px;
    }
}

/* =====================================
           TABLET
        ===================================== */

@media (max-width: 991px) {
    .dw-about-section {
        min-height: auto;
        padding: 80px 0;
    }

    .dw-about-top-text {
    font-size: 14px;
}
.dw-about-description {
    font-size: 14px;
}
.dw-about-small-description {
    font-size: 14px;
}
    .dw-about-container {
        width: min(920px, calc(100% - 50px));
    }

    .dw-about-row {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .dw-about-content {
        max-width: 100%;
    }

    .dw-about-description,
    .dw-about-small-description {
        max-width: 100%;
    }
       .dw-about-heading {
        font-size: 34px;
    }

    .dw-about-stats {
        max-width: 100%;
    }

    .dw-about-visual {
        justify-content: center;
    }

    .dw-about-image-wrap {
        width: min(100%, 470px);
    }

    .dw-about-circle {
        width: 700px;
        height: 700px;
        top: auto;
        right: 50%;
        bottom: -120px;
        transform: translateX(50%);
    }
}

/* =====================================
           MOBILE
        ===================================== */

@media (max-width: 767px) {
    .dw-about-section {
        padding: 65px 0 55px;
    }

    .dw-about-container {
        width: calc(100% - 34px);
    }

    .dw-about-row {
        gap: 48px;
    }

    .dw-about-top-text {
        margin-bottom: 13px;
        font-size: 14px;
        line-height: 1.7;
    }

    .dw-about-heading {
        margin-bottom: 22px;
        font-size: 34px;
        line-height: 1.05;
    }

    .dw-about-description,
    .dw-about-small-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .dw-about-actions {
        margin-top: 30px;
    }

    .dw-about-button {
        min-width: 165px;
        min-height: 48px;
        padding: 10px 22px;
        font-size: 14px;
    }

    .dw-about-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
        margin-top: 48px;
    }

    .dw-stat-item {
        min-height: 100%;
        padding: 2px 15px;
    }

    .dw-stat-number {
        margin-bottom: 9px;
        font-size: 39px;
    }

    .dw-stat-number span {
        margin-top: 7px;
        font-size: 18px;
    }

    .dw-stat-label {
        font-size: 14px;
    }

    .dw-about-image-wrap {
        width: 100%;
        max-width: 430px;
        aspect-ratio: 4 / 5.5;
    }

    .dw-about-circle {
        width: 560px;
        height: 560px;
        bottom: -75px;
    }

    .dw-enquire-button {
        display: none;
    }
}

/* =====================================
           SMALL MOBILE
        ===================================== */

@media (max-width: 430px) {
    .dw-about-heading {
        font-size: 34px;
    }

    .dw-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dw-stat-item {
        padding-right: 10px;
        padding-left: 12px;
    }

    .dw-stat-number {
        font-size: 34px;
    }

    .dw-stat-label {
        font-size: 14px;
    }
}


/* responsive about  */



/* =========================================================
   1600px - 1799px
========================================================= */

@media only screen and (min-width: 1600px) and (max-width: 1799px) {

    .hero-section {
        padding: 110px 45px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content>p {
        font-size: 19px;
        line-height: 1.85;
    }

    .visual-card {
        height: 570px;
    }

    .stat-card {
        padding: 21px;
    }

    .stat-card h3 {
        font-size: 46px;
    }
}


/* =========================================================
   1400px - 1599px
========================================================= */

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

    .hero-section {
        padding: 100px 40px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 47px;
        margin-bottom: 22px;
    }

    .hero-content>p {
        font-size: 18px;
        line-height: 1.8;
    }

    .hero-actions {
        margin: 28px 0 38px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 11px 23px;
        font-size: 17px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-card {
        padding: 19px;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    .stat-card h3 span {
        font-size: 26px;
    }

    .stat-card p {
        font-size: 16px;
    }

    .visual-card {
        height: 535px;
    }
}


/* =========================================================
   1200px - 1399px
========================================================= */

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .hero-section {
        padding: 100px 0px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1fr 0.9fr;
        gap: 42px;
    }

    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.75;
        width: 95%;
    }

    .hero-actions {
        margin: 26px 0 34px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 21px;
        font-size: 16px;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 17px 14px;
        border-radius: 16px;
    }

    .stat-card h3 {
        font-size: 37px;
    }

    .stat-card h3 span {
        font-size: 23px;
    }

    .stat-card p {
        font-size: 15px;
    }

    .visual-card {
        height: 490px;
    }
}


/* =========================================================
   992px - 1199px
========================================================= */

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

    .hero-section {
        padding: 100px 0px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-content h1 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 33px;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        line-height: 1.8;
        width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        padding: 21px 17px;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    .stat-card p {
        font-size: 16px;
    }

    .hero-visual {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .visual-card {
        width: 100%;
        height: 580px;
    }
}


/* =========================================================
   768px - 991px
========================================================= */

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

    .hero-section {
        padding: 75px 30px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.75;
        width: 100%;
    }

    .hero-actions {
        justify-content: center;
        margin: 28px 0 35px;
    }

    .stats-grid {
        max-width: 680px;
        margin: 0 auto;
        gap: 13px;
    }

    .stat-card {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .stat-card h3 {
        font-size: 37px;
    }

    .stat-card h3 span {
        font-size: 23px;
    }

    .stat-card p {
        font-size: 15px;
    }

    .hero-visual {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .visual-card {
        width: 100%;
        height: 520px;
    }
}


/* =========================================================
   577px - 767px
========================================================= */

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

    .hero-section {
        padding: 65px 24px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
        width: 100%;
    }

    .hero-actions {
        justify-content: center;
        margin: 25px 0 32px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 11px 22px;
        font-size: 16px;
    }

    .stats-grid {
        max-width: 520px;
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 8px;
        border-radius: 14px;
    }

    .stat-card h3 {
        font-size: 31px;
        margin-bottom: 7px;
    }

    .stat-card h3 span {
        font-size: 19px;
    }

    .stat-card p {
        font-size: 13px;
        line-height: 1.35;
    }

    .hero-visual {
        width: 100%;
        margin: 0 auto;
    }

    .visual-card {
        width: 100%;
        height: 460px;
        border-width: 3px;
    }
}


/* =========================================================
   398px - 576px
========================================================= */



/* =========================================================
   MAXIMUM 397px
========================================================= */

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

    .hero-section {
        padding: 70px 0;
    }

    .floating-badge {
        display: none;
        left: -6px;
        bottom: 20px;
        padding: 5px 15px;
    }

    .badge-content {
        gap: 15px;
    }

    .badge-content strong {
        font-size: 25px;
    }

    .badge-content span {
        font-size: 12px;
    }

    .hero-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 33px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero-content>p {
        font-size: 14px;
        line-height: 1.65;
        width: 100%;
    }

    .hero-actions {
        width: 100%;
        margin: 22px 0 27px;
        flex-direction: column;
        gap: 10px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 11px 18px;
        font-size: 15px;
    }

    .stats-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
    }

    .stat-card h3 {
        font-size: 31px;
        margin-bottom: 6px;
    }

    .stat-card h3 span {
        font-size: 19px;
    }

    .stat-card p {
        font-size: 14px;
    }

    .hero-visual {
        width: 100%;
    }

    .visual-card {
        width: 100%;
        height: 350px;
        border-width: 3px;
    }
}


/* =========================================================
   DECORATIVE LEAVES RESPONSIVE
========================================================= */

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

    .eco-top-leaves,
    .eco-bottom-leaves {
        opacity: 0.55;
    }
}

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

    .eco-top-leaves,
    .eco-bottom-leaves {
        width: 150px;
        opacity: 0.35;
    }

    .eco-top-leaves img,
    .eco-bottom-leaves img {
        width: 100%;
        height: auto;
    }
}

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

    .eco-top-leaves,
    .eco-bottom-leaves {
        width: 110px;
        opacity: 0.25;
    }
}





/* banner  */




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

    .banner-marttp {
        display: block !important;
    }

    #mobileCarousel {
        display: none !important;
    }
}

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

    .banner-marttp {
        display: none !important;
    }

    #mobileCarousel {
        display: block !important;
    }
}



/* footer  */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap");



.dwarakamai-footer {
    width: 100%;
    padding: 100px 0 30px;
    overflow: hidden;
    color: #ffffff;
    background: #eeeae8;
}




/* =========================================================
   TOP LOGO AND DESCRIPTION
========================================================= */

.dwarakamai-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dwarakamai-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dwarakamai-logo {
    display: block;
    width: 155px;
    max-width: 100%;
    height: auto;
    margin-bottom: 17px;
}

.dwarakamai-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.7px;
}


/* =========================================================
   DIVIDERS
========================================================= */

.dwarakamai-divider {
    width: 100%;
    height: 1px;
    margin: 40px 0;
    background: #bc8c4847;
}

.dwarakamai-divider-bottom {
    margin-top: 38px;
    margin-bottom: 38px;
}


/* =========================================================
   CONTACT ROW
========================================================= */

.dwarakamai-contact-row {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1fr;
    align-items: center;
}

.dwarakamai-contact-column {
    position: relative;
    min-width: 0;
    padding: 0 55px;
}

.dwarakamai-contact-column:first-child {
    padding-left: 60px;
}

.dwarakamai-contact-column:last-child {
    padding-right: 30px;
}

.dwarakamai-contact-column:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 88px;
    background: rgb(188 140 72 / 26%);
    transform: translateY(-50%);
}

.dwarakamai-contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dwarakamai-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border: 1px solid #bc8c4867;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc8c48;
}

.dwarakamai-icon i {
    font-size: 26px;
}

.dwarakamai-contact-content {
    min-width: 0;
}

.dwarakamai-contact-content h4 {
    margin: 0 0 8px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
}

.colo-fote {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.4px;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.colo-fote:hover {
    color: #d6a63e;
}


/* =========================================================
   FOOTER MENU
========================================================= */

.dwarakamai-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 34px;
    text-align: center;
}

.dwarakamai-menu a {
    position: relative;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dwarakamai-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #d2a33d;
    transition: width 0.3s ease;
}

.dwarakamai-menu a:hover {
    color: #d2a33d;
}

.dwarakamai-menu a:hover::after {
    width: 100%;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.dwarakamai-social {
    margin-top: 20px;
    text-align: center;
}

.dwarakamai-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dwarakamai-social li {
    flex: 0 0 auto;
}

.dwarakamai-social li a {
    width: 41px;
    height: 41px;
    border: 1px solid #bc8c4873;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc8c48;
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dwarakamai-social li a:hover {
    color: #053b2e;
    border-color: #d2a33d;
    background: #d2a33d;
    transform: translateY(-3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.dwarakamai-bottom {
    margin-top: 20px;
    padding-top: 23px;
    border-top: 1px solid #bc8c4852;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    align-items: center;
    gap: 30px;
}

.dwarakamai-bottom p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.25px;
}

.dwarakamai-bottom a {
    color: #d8a934;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dwarakamai-bottom a:hover {
    color: #bc8c48;
}

.dwarakamai-credit {
    text-align: center;
}

.dwarakamai-policy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.dwarakamai-policy-links a {
    position: relative;
    padding: 0 10px;
    color: #333;
    font-size: 14px;
}

.dwarakamai-policy-links a:first-child {
    padding-left: 0;
}

.dwarakamai-policy-links a:last-child {
    padding-right: 0;
}

.dwarakamai-policy-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 22px;
    background: rgb(43 42 42 / 55%);
    transform: translateY(-50%);
}


/* =========================================================
   1800px - 1999px
========================================================= */

@media only screen and (min-width: 1800px) and (max-width: 1999px) {


    .dwarakamai-contact-column {
        padding-right: 65px;
        padding-left: 65px;
    }

    .dwarakamai-contact-content h4 {
        font-size: 30px;
    }

    .colo-fote,
    .dwarakamai-menu a {
        font-size: 16px;
    }
}


/* =========================================================
   1600px - 1799px
========================================================= */

@media only screen and (min-width: 1600px) and (max-width: 1799px) {


    .dwarakamai-contact-column {
        padding-right: 48px;
        padding-left: 48px;
    }
}


/* =========================================================
   1400px - 1599px
========================================================= */

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

    .dwarakamai-footer {
        padding-top: 72px;
    }


    .dwarakamai-contact-column {
        padding-right: 36px;
        padding-left: 36px;
    }

    .dwarakamai-contact-column:first-child {
        padding-left: 30px;
    }

    .dwarakamai-contact-content h4 {
        font-size: 27px;
    }



    .dwarakamai-menu {
        gap: 14px 28px;
    }

    .dwarakamai-bottom {
        grid-template-columns: 1.25fr 1fr 1.2fr;
    }

    .dwarakamai-bottom p {
        font-size: 13px;
    }
}


/* =========================================================
   1200px - 1399px
========================================================= */

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .dwarakamai-footer {
        padding: 70px 0 30px;
    }


    .dwarakamai-contact-row {
        grid-template-columns: 1.2fr 0.9fr 1fr;
    }

    .dwarakamai-contact-column {
        padding: 0 20px;
    }

    .dwarakamai-contact-column:first-child {
        padding-left: 15px;
    }

    .dwarakamai-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .dwarakamai-icon i {
        font-size: 22px;
    }

    .dwarakamai-contact-content h4 {
        font-size: 24px;
    }


    .dwarakamai-menu {
        gap: 13px 24px;
    }

    .dwarakamai-menu a {
        font-size: 14px;
    }

    .dwarakamai-bottom {
        gap: 20px;
    }

    .dwarakamai-bottom p,
    .dwarakamai-policy-links a {
        font-size: 12px;
    }
}


/* =========================================================
   992px - 1199px
========================================================= */

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


    .dwarakamai-contact-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 35px;
    }

    .dwarakamai-contact-column {
        padding: 0 35px;
    }

    .dwarakamai-contact-column:nth-child(2)::after {
        display: none;
    }

    .dwarakamai-contact-column:last-child {
        grid-column: 1 / -1;
        padding-top: 10px;
    }

    .dwarakamai-contact-column:last-child .dwarakamai-contact-box {
        justify-content: center;
    }

    .dwarakamai-contact-box {
        justify-content: center;
    }

    .dwarakamai-bottom {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 12px;
    }

    .dwarakamai-policy-links {
        justify-content: center;
    }
}


/* =========================================================
   768px - 991px
========================================================= */

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

    .dwarakamai-footer {
        padding: 62px 0 24px;
    }



    .dwarakamai-desc {
        max-width: 620px;
        font-size: 14px;
    }

    .dwarakamai-contact-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dwarakamai-contact-column {
        padding: 0;
    }

    .dwarakamai-contact-column:first-child {
        padding-left: 00px;
    }

    .dwarakamai-contact-column:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 1px;
        transform: none;
    }

    .dwarakamai-contact-box {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        justify-content: flex-start;
    }

    .dwarakamai-menu {
        gap: 14px 26px;
    }

    .dwarakamai-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .dwarakamai-policy-links {
        justify-content: center;
    }
}


/* =========================================================
   577px - 767px
========================================================= */

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

    .dwarakamai-footer {
        padding: 55px 0 22px;
    }



    .dwarakamai-logo {
        width: 140px;
    }

    .dwarakamai-desc {
        max-width: 520px;
        font-size: 14px;
    }

    .dwarakamai-divider {
        margin: 32px 0;
    }

    .dwarakamai-contact-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dwarakamai-contact-column {
        padding: 0;
    }

    .dwarakamai-contact-column:first-child {
        padding-left: 0;
    }
    .dwarakamai-contact-content h4 {
    font-size: 24px;
}
.colo-fote {
    font-size: 14px;
}


    .dwarakamai-contact-column:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: -14px;
        left: 0;
        width: 100%;
        height: 1px;
        transform: none;
    }

    .dwarakamai-contact-box {
        max-width: 100%;
        margin: 0 auto;
        justify-content: flex-start;
    }

    .dwarakamai-menu {
        gap: 13px 22px;
    }

    .dwarakamai-menu a {
        font-size: 14px;
    }

    .dwarakamai-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 11px;
    }

    .dwarakamai-policy-links {
        justify-content: center;
    }
}


/* =========================================================
   398px - 576px
========================================================= */


/* =========================================================
   MAXIMUM 397px
========================================================= */

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

    .dwarakamai-footer {
        padding: 44px 0 18px;
    }



    .dwarakamai-logo {
        width: 120px;
    }

    .dwarakamai-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .dwarakamai-divider {
        margin: 25px 0;
    }

    .dwarakamai-contact-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dwarakamai-contact-column {
        padding: 0;
    }

    .dwarakamai-contact-column:first-child {
        padding-left: 0;
    }

    .dwarakamai-contact-column:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: -12px;
        left: 0;
        width: 100%;
        height: 1px;
        transform: none;
    }

    .dwarakamai-contact-box {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .dwarakamai-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .dwarakamai-icon i {
        font-size: 19px;
    }

    .dwarakamai-contact-content h4 {
        margin-bottom: 6px;
        font-size: 20px;
    }

    .colo-fote {
        font-size: 14px;
    }

    .dwarakamai-menu {
        gap: 10px 15px;
    }

    .dwarakamai-menu a {
        font-size: 13px;
        margin: 0;
        text-decoration: none;
        border-left: 1px solid #bc8c48;
        padding: 0 5px;
    }

    .dwarakamai-social {
        margin-top: 18px;
    }

    .dwarakamai-social ul {
        gap: 9px;
    }

    .dwarakamai-social li a {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .dwarakamai-bottom {
        grid-template-columns: 1fr;
        padding-top: 18px;
        text-align: center;
        gap: 9px;
    }

    .dwarakamai-bottom p,
    .dwarakamai-policy-links a {
        font-size: 13px;
    }

    .dwarakamai-policy-links {
        justify-content: center;
    }

    .dwarakamai-policy-links a {
        padding-right: 7px;
        padding-left: 7px;
    }
}



/* whats app icon start */

.floating_btn {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #4dac48;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 40px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;

    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

/* chatbot css Start */

#chat-bot-launcher-container.chat-bot-avatar-launcher,
#chat-bot-launcher-container.chat-bot-launcher-notext {
    bottom: 20px !important;
    right: 25px !important;
    z-index: 9;
}

#chat-bot-message-container {
    right: 48px !important;
    bottom: 90px !important;
}

#chat-bot-frame-container {
    bottom: 100px !important;
    right: 35px !important;
    max-height: 455px !important;
    width: 330px !important;
}

.chat-bot-message-label p,
.bubble-label p,
.bubble-label {
    font-size: 14px !important;
    line-height: normal;
    margin-bottom: 0;
}

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

    #chat-bot-message-container .overflow,
    #chat-bot-message-close {
        display: none;
    }
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
}

.carousel-item {
    display: none;
    width: 100%;
}

.carousel-item.active {
    display: block;
}

/* Optional: Smooth fade effect */
.carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}


/* why choose and counter mix  */


.inv-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}



.inv-head {
    text-align: center;
    margin-bottom: 35px;
}



.inv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}



.inv-sub {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

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

.inv-card {
    background: #fff;
    border: 1px solid #bc8c48;
    border-radius: 28px;
    padding: 35px 25px 30px;
    text-align: center;
    transition: .4s;
    overflow: hidden;
}

.inv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.inv-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid #bc8c48;
    position: relative;
}

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

.inv-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #bc8c48;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -28px auto 20px;
    position: relative;
    z-index: 5;
    border: 5px solid #eeeae8;
}

.inv-icon i {
    font-size: 22px;
}

.inv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #bc8c48;
    margin: 12px 0;
    font-family: 'Cormorant Garamond', serif;
}

.line {
    width: 40px;
    height: 2px;
    background: #bc8c48;
    display: block;
    margin: 0 auto 18px;
}

.inv-card p {
    font-size: 16px;
    line-height: 1.8;
    /* color: #555; */
}

/* Responsive */




@media(max-width:991px) {
.inv-card p {
    font-size: 14px;
}
.inv-img {
    width: 120px;
    height: 120px;
}
}

@media(max-width:768px) {
    .inv-grid {
        grid-template-columns: 1fr !important;
    }

    .inv-img {
        width: 110px;
        height: 110px;
    }
}

.inv-stats {

    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}

.stat-box {

    background: #eeeae8;
    border: 1px solid #bc8c48;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    transition: .4s;

}

.stat-box:hover {

    transform: translateY(-8px);
    border-color: #bc8c48;

}

.stat-number {

    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    font-weight: 700;
    color: #bc8c48;
    margin-bottom: 8px;

}

.stat-text {

    font-size: 16px;
    color: #333;

}

/* laptop  */

@media(max-width:1199px) {

    .inv-section {
        padding: 100px 0;
    }

    .inv-grid {

        grid-template-columns: 1fr 1fr 1fr;

    }

    .inv-stats {

        grid-template-columns: repeat(4, 1fr);
        margin-top: 30px;
        gap: 15px;

    }

    .stat-box {
        padding: 20px;
    }

    .inv-title {
        font-size: 40px;
        margin-bottom: 15px;

    }


}


/* Tablet */

@media(max-width:991px) {

    .inv-section {
        padding: 80px 0;
    }

    .inv-grid {

        grid-template-columns: 1fr 1fr;

    }

    .inv-stats {

        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
        gap: 15px;

    }

    .stat-box {
        padding: 14px;
        border-radius: 0;
    }

    .inv-title {
        font-size: 34px;
        margin-bottom: 15px;

    }


}

/* Mobile */

@media(max-width:768px) {

    .inv-section {

        padding: 70px 0px;

    }

    .inv-title {
        font-size: 34px;
        margin: 0 0 15px;
    }
    .inv-sub {
    font-size: 14px;
}
.inv-card p {
    font-size: 14px;
}

    .inv-head {
        margin-bottom: 15px;

    }

    .inv-card {
        padding: 15px;
        border-radius: 0;
    }

    .inv-stats {
        grid-template-columns: 1fr 1fr;
    }

}

/* why choose and counter mix animation  */


/* First two cards: bottom-left to normal position */
[data-aos="curve-bottom-left"] {
    opacity: 0;
    transform:
        translate3d(-140px, 150px, 0) rotate(-25deg) scale(0.75);

    transform-origin: bottom center;

    transition-property:
        opacity,
        transform;
}

/* Last two cards: bottom-right to normal position */
[data-aos="curve-bottom-right"] {
    opacity: 0;
    transform:
        translate3d(140px, 150px, 0) rotate(25deg) scale(0.75);

    transform-origin: bottom center;

    transition-property:
        opacity,
        transform;
}

/* Final normal position */
[data-aos="curve-bottom-left"].aos-animate,
[data-aos="curve-bottom-right"].aos-animate {
    opacity: 1;
    transform:
        translate3d(0, 0, 0) rotate(0deg) scale(1);
}

/* Smooth arch-style movement */
.stat-box[data-aos] {
    transition-timing-function:
        cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Investment card smooth movement */
.inv-card[data-aos] {
    transition-timing-function:
        cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mobile: reduce movement distance */
@media screen and (max-width: 767px) {

    [data-aos="curve-bottom-left"] {
        transform:
            translate3d(-60px, 90px, 0) rotate(-15deg) scale(0.85);
    }

    [data-aos="curve-bottom-right"] {
        transform:
            translate3d(60px, 90px, 0) rotate(15deg) scale(0.85);
    }

    [data-aos="curve-bottom-left"].aos-animate,
    [data-aos="curve-bottom-right"].aos-animate {
        transform:
            translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

/* enquiry form  */


.sidebar-form {
    position: fixed;
    top: 50%;
    right: -320px;
    width: 320px;
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
    transition: right 0.4s ease-in-out;
    z-index: 12999;
}

.sidebar-form.show {
    right: 0;
}

.sidebar-form .call-action {
    position: absolute;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    background: #bc8c48;
    font-weight: 500;
    color: #000;
    width: 150px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    left: -93px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.sidebar-form h3 {
    font-weight: 600;
    /* letter-spacing: 3.2px; */
    /* text-transform: uppercase; */
    font-size: 22px;
    color: #bc8c48;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;


}

.sidebar-form .form-label {
    font-weight: 500;
    font-size: 15px;
    color: #D2DACE;
}

.sidebar-form .btn {
    background-color: #ccad6e;
    margin: 0;
}

.submi-butt {
    display: flex;
    justify-content: center;
}

.sidebar-form .form-control {
    background-color: #ffffff;
    border-radius: 0;
    font-size: 15px;
}

.sidebar-form .form-control:focus {
    box-shadow: none;
    border-color: #333;
}

.sidebar-form input[type="email"] {
    margin-bottom: 0;
    /* padding: .375rem .75rem; */
    font-weight: 400;
    line-height: 1.5;
}

.sidebar-form .form-control,
.sidebar-form .form-control .placeholder {
    color: #000000;
}

.button.-md.sidee-butt {
    color: #D2DACE;
    border: 1px solid #D2DACE;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: var(--black-color);
    letter-spacing: 1px;
    font-weight: 700;
    padding: 15px 35px;
    font-size: 12px;
    /* background: var(--main-color); */
    /* border: 2px solid var(--main-color); */
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    background: #bc8c48;
}

.btn-style-one:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: #043222;
}

.btn-style-one .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one {
    position: relative;
    display: block;
    color: #000;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.btn-style-one .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* about page  */

/* about section  */

/* ===================================
           LEGACY SECTION
        =================================== */

.legacy-section {
    position: relative;
    width: 100%;
    /* min-height: 760px; */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
    /* border-bottom: 1px solid #ededed; */
    padding: 120px 0;
}

.legacy-row {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

/* ===================================
           LEFT CONTENT
        =================================== */



.legacy-subtitle {
    display: block;
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

.legacy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.7px;
}

.legacy-description {
    /* color: #252525; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.1px;
}

.legacy-quote {
    margin-top: 23px;
    color: #c58e4c;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

/* ===================================
           RIGHT IMAGE
        =================================== */

.legacy-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(197, 142, 76, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.legacy-image-wrap {
    position: relative;
    z-index: 2;
    width: 438px;
    height: 536px;
    overflow: hidden;
    background: #eeeeee;
}

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

/* ===================================
           RESPONSIVE DESIGN
        =================================== */

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

    .legacy-row {
        gap: 70px;
    }

    .legacy-circle {
        width: 600px;
        height: 600px;
    }

    .legacy-image-wrap {
        width: 410px;
        height: 510px;
    }
}

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

    .legacy-section {
        min-height: auto;
        padding: 90px 0;
    }

    .legacy-row {
        grid-template-columns: 1fr 0.8fr;
        gap: 80px;
    }

    .legacy-title {
        font-size: 34px;
    }

    .legacy-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .legacy-circle {
        width: 400px;
        height: 400px;
        display: none;
    }

    .legacy-image-wrap {
        width: 350px;
        height: 460px;
    }
}

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

    .legacy-section {
        padding: 80px 0;
    }

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

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

    .legacy-visual {
        min-height: 100%;
    }

    .legacy-image-wrap {
        width: 410px;
        height: 520px;
    }
}

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

    .legacy-section {
        padding: 70px 0;
    }

    .legacy-row {
        gap: 30px;
    }

    .legacy-subtitle {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .legacy-title {
        margin-bottom: 25px;
        font-size: 34px;
    }

    .legacy-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .legacy-quote {
        margin-top: 20px;
        font-size: 20px;
    }

    .legacy-visual {
        min-height: 500px;
    }

    .legacy-circle {
        width: 460px;
        height: 460px;
    }

    .legacy-image-wrap {
        width: min(340px, 85vw);
        height: 440px;
    }
}

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

    .legacy-section {
        padding: 70px 0;
    }

    .legacy-title {
        font-size: 34px;
    }

    .legacy-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .legacy-visual {
        min-height: 400px;
    }

    .legacy-circle {
        width: 390px;
        height: 390px;
    }

    .legacy-image-wrap {
               width: 100%;
        height: 380px;
    }
}



/* vmp section  */

/* =========================================
           SECTION
        ========================================= */

.purpose-section {
    width: 100%;
    padding: 120px 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.purpose-row {
    margin: 0 auto;
}

/* =========================================
           SECTION HEADING
        ========================================= */

.purpose-heading {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}

.purpose-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.purpose-heading p {
    max-width: 620px;
    margin: 0 auto;
    /* color: #555555; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Decorative line */

.purpose-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin: 28px auto 0;
    background-color: #c69755;
}

/* =========================================
           MAIN GRID
        ========================================= */

.purpose-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

/* Centre vertical line */

.purpose-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #dddddd;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

/* =========================================
           COMMON GRID ITEMS
        ========================================= */

.purpose-item {
    position: relative;
    min-height: 455px;
    background-color: #ffffff00;
}

/* =========================================
           IMAGE STYLE
        ========================================= */

.purpose-image {
    overflow: hidden;
    background-color: #eeeeee;
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.purpose-image:hover img {
    transform: scale(1.035);
}

/* =========================================
           CONTENT STYLE
        ========================================= */

.purpose-content {
    display: flex;
    align-items: center;
}

.purpose-content-inner {
    width: 100%;
}

.purpose-title {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 18px;
    color: #c69755;
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.purpose-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 2px;
    background-color: #c69755;
}

.purpose-description {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.25px;
    text-align: justify;
}

/* =========================================
           TOP LEFT IMAGE
        ========================================= */

.purpose-image-top {
    height: 410px;
    margin-right: 125px;
}

/* =========================================
           TOP RIGHT CONTENT
        ========================================= */

.purpose-content-top {
    padding: 55px 40px 35px 125px;
}

.purpose-content-top .purpose-content-inner {
    max-width: 590px;
}

/* =========================================
           BOTTOM LEFT CONTENT
        ========================================= */

.promise-content-bottom {
    padding: 65px 125px 45px 0;
}

/* .promise-content-bottom .purpose-content-inner {
    max-width: 570px;
} */

/* =========================================
           BOTTOM RIGHT IMAGE
        ========================================= */

.promise-image-bottom {
    height: 410px;
    margin-left: 80px;
}

/* Mission Focus Heading */
.mission-focus-title {
    margin: 22px 0 14px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #05343b;
}

/* Mission Points List */
.mission-focus-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mission-focus-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Custom Check Icon */
.mission-focus-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #bc8c48;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* Bottom Content */
.mission-bottom-text {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .mission-focus-title {
        margin-top: 18px;
        font-size: 18px;
    }

    .mission-focus-list li {
        margin-bottom: 10px;
        padding-left: 28px;
        font-size: 14px;
    }

    .mission-bottom-text {
        margin-top: 16px;
        font-size: 14px;
    }
}

/* =========================================
           LARGE LAPTOP
        ========================================= */

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

    .purpose-heading {
        margin-bottom: 50px;
    }

    .purpose-item {
        min-height: 410px;
    }

    .purpose-image-top {
        height: 380px;
        margin-right: 80px;
    }

    .purpose-content-top {
        padding: 45px 25px 35px 80px;
    }

    .promise-content-bottom {
        padding: 55px 80px 40px 0;
    }

    .promise-image-bottom {
        height: 380px;
        margin-left: 55px;
    }

    .purpose-title {
        margin-bottom: 26px;
        font-size: 30px;
    }

    .purpose-description {
        font-size: 16px;
        line-height: 1.85;
    }
}

/* =========================================
           SMALL LAPTOP
        ========================================= */

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

    /* .purpose-container {
                width: min(960px, calc(100% - 50px));
            } */

            .purpose-section {
    padding: 90px 0;
}
.purpose-heading h2 {
    font-size: 40px;
}

    .purpose-heading {
        max-width: 720px;
        margin-bottom: 40px;
    }

    .purpose-heading p {
        font-size: 14px;
    }

    .purpose-item {
        min-height: 370px;
    }

    .purpose-image-top {
        height: 350px;
        margin-right: 45px;
    }

    .purpose-content-top {
        padding: 35px 15px 30px 45px;
    }

    .promise-content-bottom {
        padding: 45px 45px 35px 0;
    }

    .promise-image-bottom {
        height: 350px;
        margin-left: 35px;
    }

    .purpose-title {
        margin-bottom: 22px;
        font-size: 28px;
    }

    .purpose-description {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* =========================================
           TABLET
        ========================================= */

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

    .purpose-section {
        padding:80px 0;
    }

    /* .purpose-container {
                width: min(720px, calc(100% - 40px));
            } */

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

    .purpose-heading h2 {
        font-size: 40px;
    }

    .purpose-heading p {
        max-width: 550px;
        font-size: 16px;
    }

    .purpose-grid {
        display: flex;
        flex-direction: column;
    }

    .purpose-grid::before {
        display: none;
    }

    .purpose-item {
        min-height: auto;
    }

    .purpose-image-top,
    .promise-image-bottom {
        width: 100%;
        height: 430px;
        margin: 0;
    }

    .purpose-content-top,
    .promise-content-bottom {
        padding: 55px 35px;
    }

    .purpose-content-top .purpose-content-inner,
    .promise-content-bottom .purpose-content-inner {
        max-width: 100%;
    }

    .purpose-title {
        margin-bottom: 25px;
        font-size: 31px;
    }

    .purpose-description {
        font-size: 15px;
        line-height: 1.85;
        text-align: left;
    }

    /* Tablet and mobile content order */

    .purpose-image-top {
        order: 1;
    }

    .purpose-content-top {
        order: 2;
    }

    .promise-image-bottom {
        order: 3;
    }

    .promise-content-bottom {
        order: 4;
    }
}

/* =========================================
           MOBILE
        ========================================= */

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

    .purpose-section {
        padding: 50px 0;
    }

    /* .purpose-container {
                width: calc(100% - 28px);
            } */

    .purpose-heading {
        margin-bottom: 38px;
    }

    .purpose-heading h2 {
        margin-bottom: 15px;
        font-size: 38px;
        line-height: 1.1;
    }

    .purpose-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .purpose-heading::after {
        width: 55px;
        margin-top: 22px;
    }

    .purpose-image-top,
    .promise-image-bottom {
        height: 330px;
    }

    .purpose-content-top,
    .promise-content-bottom {
        padding: 42px 20px;
    }

    .purpose-title {
        margin-bottom: 20px;
        font-size: 27px;
    }

    .purpose-description {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* =========================================
           SMALL MOBILE
        ========================================= */

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

    .purpose-section {
        padding: 70px 0;
    }

    .purpose-heading {
        margin-bottom: 20px;
    }

    .purpose-heading h2 {
        font-size: 34px;
    }

    .purpose-heading p {
        font-size: 14px;
    }

    .purpose-image-top,
    .promise-image-bottom {
        height: 260px;
    }

    .purpose-content-top,
    .promise-content-bottom {
        padding: 35px 15px;
    }

    .purpose-title {
        font-size: 24px;
    }

    .purpose-description {
        font-size: 14px;
        line-height: 1.75;
    }
}



/* director  */

/* =========================================
           LEADERSHIP SECTION
        ========================================= */

.dwarakamai-leadership {
    position: relative;
    padding: 120px 0;
    width: 100%;
    /* min-height: 765px; */
    overflow: hidden;
    background-color:#fff;
}



.dwarakamai-leadership-row {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

/* =========================================
           LEFT CONTENT
        ========================================= */

.dwarakamai-leadership-content {
    position: relative;
    z-index: 4;
    /* padding: 95px 25px 65px 0; */
}

/* .dwarakamai-leadership-heading {
            max-width: 760px;
        } */

.dwarakamai-leadership-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.dwarakamai-leadership-heading p {
    max-width: 680px;
    /* color: #5c5c5c; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.dwarakamai-leadership-divider {
    width: 100%;
    max-width: 750px;
    height: 1px;
    margin: 24px 0 45px;
    background-color: rgba(188, 140, 72, 0.25);
}

/* =========================================
           QUOTE CONTENT
        ========================================= */

.dwarakamai-quote-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 780px;
}

.dwarakamai-quote-icon {
    flex: 0 0 80px;
    color: rgba(188, 140, 72, 0.18);
    font-family: Georgia, serif;
    font-size: 95px;
    font-weight: 700;
    line-height: 0.85;
}

.dwarakamai-quote-content {
    max-width: 675px;
    padding-top: 18px;
}

.dwarakamai-quote-content p {
    margin-bottom: 16px;
    /* color: #555555; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.1px;
}

.dwarakamai-leader-name {
    margin-top: 30px;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.dwarakamai-leader-role {
    margin-top: 5px;
    color: #bc8c48;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =========================================
           RIGHT IMAGE
        ========================================= */

.dwarakamai-leadership-image {
    position: relative;
    /* min-height: 765px; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Decorative transparent symbol */

/* .dwarakamai-leadership-image::before {
            content: "D";
            position: absolute;
            top: 105px;
            right: -20px;
            z-index: 1;
            color: rgba(188, 140, 72, 0.10);
            font-family: "Cormorant Garamond", serif;
            font-size: 470px;
            font-weight: 600;
            line-height: 0.8;
        } */

.dwarakamai-leader-photo {
    position: relative;
    z-index: 3;
    width: min(530px, 100%);
    max-height: 690px;
    object-fit: contain;
    object-position: bottom center;
}

/* =========================================
           LARGE LAPTOP
        ========================================= */

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

.dwarakamai-quote-wrap {
    max-width: 600px;
}
.dwarakamai-leadership-divider {
    max-width: 600px;
    margin: 20px 0 20px;
}
}

/* =========================================
           SMALL LAPTOP
        ========================================= */

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

.dwarakamai-leadership {
    padding: 90px 0;
}

    .dwarakamai-leadership-heading h2 {
        font-size: 40px;
    }

    .dwarakamai-quote-icon {
        flex-basis: 60px;
        font-size: 75px;
    }

    .dwarakamai-quote-content {
        padding-top: 12px;
    }

    .dwarakamai-quote-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .dwarakamai-leader-name {
        font-size: 24px;
    }

    .dwarakamai-leader-photo {
        width: 410px;
        max-height: 580px;
    }
}

/* =========================================
           TABLET
        ========================================= */

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

    .dwarakamai-leadership {
        padding: 80px 0;
    }

    .dwarakamai-leadership-heading {
        max-width: 100%;
        text-align: center;
    }

    .dwarakamai-leadership-heading h2 {
        font-size: 45px;
    }

    .dwarakamai-leadership-heading p {
        margin: 0 auto;
    }
    .dwarakamai-leadership-row {
    display: grid;
    grid-template-columns: none;
}

    .dwarakamai-leadership-divider {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .dwarakamai-quote-wrap {
        max-width: 100%;
    }

    .dwarakamai-quote-content {
        max-width: 100%;
    }

    .dwarakamai-leadership-image::before {
        top: 70px;
        right: 30px;
        font-size: 350px;
    }

    .dwarakamai-leader-photo {
        width: 430px;
        max-height: 510px;
    }
}

/* =========================================
           MOBILE
        ========================================= */

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

     .dwarakamai-leadership {
        padding: 80px 0;
    }

    .dwarakamai-leadership-content {
        padding-top: 0px;
    }

    .dwarakamai-leadership-heading h2 {
        font-size: 34px;
    }

    .dwarakamai-leadership-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .dwarakamai-quote-icon {
        flex: 0 0 45px;
        font-size: 62px;
    }

    .dwarakamai-quote-content {
        padding-top: 8px;
    }

    .dwarakamai-quote-content p {
        font-size: 13.5px;
        line-height: 1.75;
    }

    .dwarakamai-leader-name {
        font-size: 23px;
    }

    .dwarakamai-leadership-image {
        min-height: 450px;
    }

    .dwarakamai-leader-photo {
        width: 360px;
        max-height: 435px;
    }

    .dwarakamai-leadership-image::before {
        right: 0;
        font-size: 280px;
    }
}

/* =========================================
           SMALL MOBILE
        ========================================= */

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

   .dwarakamai-leadership {
        padding: 70px 0;
    }

    .dwarakamai-leadership-heading h2 {
        font-size: 34px;
    }

    .dwarakamai-leadership-heading p {
        font-size: 14px;
    }

    .dwarakamai-quote-wrap {
        display: block;
    }

    .dwarakamai-quote-icon {
        height: 45px;
        font-size: 60px;
    }

    .dwarakamai-quote-content {
        padding-top: 0;
    }

    .dwarakamai-quote-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .dwarakamai-leader-name {
        margin-top: 24px;
        font-size: 21px;
    }

    .dwarakamai-leadership-image {
        min-height: 390px;
    }

    .dwarakamai-leader-photo {
        width: 320px;
        max-height: 380px;
    }
}


/* innerpages banner  */

/*=========================================
INNER BANNER
=========================================*/

.inner-banner {
    position: relative;
    width: 100%;
    height: 660px;
    overflow: hidden;
    display: flex;
    align-items: end;
    background: #000;
}

.inner-banner .image-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    transition: transform 8s ease;
    opacity: 0.4;
}

.inner-banner:hover .image-layer {
    transform: scale(1.1);
}

/* Dark Overlay */

/* .inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
} */

.auto-container {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 60px));
    margin: 0 auto;
}

.inner {
    max-width: 650px;
}

.banner-headd {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
}

.banner-headd::after {
    content: "";
    display: block;
    width: 85px;
    height: 3px;
    margin-top: 22px;
    background: #bc8c48;
}

.banner-text {
    margin-top: 30px;
}

.banner-text p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .3px;
    font-weight: 400;
}

/*=========================================
1400px
=========================================*/

@media (max-width:1400px) {

    .inner-banner {
        height: 470px;
    }

    .banner-headd {
        font-size: 62px;
    }

}

/*=========================================
1200px
=========================================*/

@media (max-width:1199px) {

    .inner-banner {
        height: 430px;
    }

    .auto-container {
        width: calc(100% - 50px);
    }

    .banner-headd {
        font-size: 56px;
    }

    .banner-text p {
        font-size: 16px;
    }

}

/*=========================================
991px
=========================================*/

@media (max-width:991px) {

    .inner-banner {
        height: 380px;
    }

    .auto-container {
        width: calc(100% - 40px);
    }

    .banner-headd {
        font-size: 48px;
    }

    .banner-text {
        margin-top: 22px;
    }

    .banner-text p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/*=========================================
767px
=========================================*/

@media (max-width:767px) {

    .inner-banner {
        height: 330px;
    }

    .auto-container {
        width: calc(100% - 30px);
    }

    .inner {
        max-width: 100%;
    }

    .banner-headd {
        font-size: 40px;
    }

    .banner-headd::after {
        width: 65px;
        margin-top: 18px;
    }

    .banner-text {
        margin-top: 18px;
    }

    .banner-text p {
        font-size: 14px;
        line-height: 1.75;
    }

}

/*=========================================
480px
=========================================*/

@media (max-width:480px) {

    .inner-banner {
        height: 290px;
    }

    .auto-container {
        width: calc(100% - 20px);
    }

    .banner-headd {
        font-size: 34px;
    }

    .banner-text p {
        font-size: 13px;
    }

}


/* corevalue  */

/* =========================================
   CORE VALUES SECTION
========================================= */

.core-values-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.core-values-section *,
.core-values-section *::before,
.core-values-section *::after {
    box-sizing: border-box;
}

.core-values-section img {
    display: block;
    max-width: 100%;
}


/* =========================================
   HEADING
========================================= */


.core-values-label {
    margin: 0 0 18px;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.core-values-title {
   font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}


/* =========================================
   MAIN GRID
========================================= */

.core-values-grid {
    display: grid;
    grid-template-columns: minmax(350px, 490px) minmax(0, 1fr);
    gap: 65px;
    align-items: stretch;
}


/* =========================================
   LEFT LARGE IMAGE
========================================= */

.core-main-slider-wrapper {
    width: 100%;
    min-width: 0;
}

.core-main-slider {
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.core-main-slider .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.core-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.core-main-slider .swiper-slide-active .core-main-image {
    transform: scale(1.06);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.core-content-area {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
}


/* =========================================
   RIGHT THUMBNAILS
========================================= */

.core-thumbnail-wrapper {
    width: 100%;
    min-height: 182px;
    overflow: hidden;
}

.core-thumbnail-slider {
    width: 100%;
    overflow: hidden;
}

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

.core-thumbnail-slider .swiper-slide {
    position: relative;
    height: 182px;
    cursor: pointer;
    overflow: hidden;
    opacity: 1;
    transition:
        width 0.7s ease,
        margin 0.7s ease,
        opacity 0.5s ease,
        transform 0.5s ease;
}

.core-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.core-thumbnail-slider .swiper-slide:hover .core-thumbnail-image {
    transform: scale(1.07);
}


/* Active image is hidden on the right side */

.core-thumbnail-slider .swiper-slide.active-thumbnail {
    opacity: 0;
    pointer-events: none;
}


/* Soft overlay */

.core-thumbnail-slider .swiper-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 2px solid transparent;
    background: rgba(0, 0, 0, 0.08);
    transition:
        background 0.4s ease,
        border-color 0.4s ease;
}

.core-thumbnail-slider .swiper-slide:hover::after {
    border-color: #bc8c48;
    background: transparent;
}


/* =========================================
   DYNAMIC CONTENT
========================================= */

.core-details-slider {
    width: 100%;
    /* min-height: 180px; */
    margin-top: 50px;
    overflow: hidden;
}

.core-details-slider .swiper-slide {
    opacity: 0 !important;
}

.core-details-slider .swiper-slide-active {
    opacity: 1 !important;
}

.core-details {
    display: grid;
    grid-template-columns: 70px minmax(250px, 340px) minmax(300px, 1fr);
    gap: 28px;
    align-items: center;
}


/* Icon */

.core-icon-box {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(188, 140, 72, 0.45);
    border-radius: 50%;
    color: #bc8c48;
    font-size: 25px;
}

.core-icon-box svg {
    width: 25px;
    height: 25px;
}


/* Dynamic title */

.core-item-title {
    margin: 0;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.04;
}


/* Dynamic description */

.core-item-description {
    margin: 0;
    color: #111111;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}


/* =========================================
   NAVIGATION
========================================= */

.core-navigation {
    display: flex;
    gap: 12px;
    margin-top: 42px;
    padding-left: 42px;
}

.core-nav-button {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #bc8c48;
    border-radius: 50%;
    background: #bc8c48;
    color: #ffffff;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.core-nav-button:hover {
    background: transparent;
    color: #bc8c48;
    transform: translateY(-3px);
}

.core-nav-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* =========================================
   PROGRESS
========================================= */

.core-progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 35px;
    background: rgba(188, 140, 72, 0.2);
    overflow: hidden;
}

.core-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    background: #bc8c48;
}

.core-progress-fill.is-running {
    animation: coreProgress 4.5s linear forwards;
}

@keyframes coreProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================
   CONTENT ANIMATION
========================================= */

.core-details-slider .swiper-slide-active .core-icon-box,
.core-details-slider .swiper-slide-active .core-item-title,
.core-details-slider .swiper-slide-active .core-item-description {
    animation: coreFadeUp 0.8s ease forwards;
}

.core-details-slider .swiper-slide-active .core-item-title {
    animation-delay: 0.08s;
}

.core-details-slider .swiper-slide-active .core-item-description {
    animation-delay: 0.16s;
}

@keyframes coreFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {
    .core-values-section {
    padding: 90px 0;
}
.core-values-title {
    font-size: 40px;
}
.core-values-label {
    margin: 0 0 10px;
    font-size: 16px;
}

    .core-values-grid {
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 40px;
    }

    .core-main-slider {
        height: 430px;
    }

    .core-thumbnail-wrapper,
    .core-thumbnail-slider .swiper-slide {
        min-height: 150px;
        height: 150px;
    }

    .core-details {
        grid-template-columns: 60px minmax(200px, 270px) minmax(250px, 1fr);
        gap: 20px;
    }

    .core-item-title {
        font-size: 34px;
    }

    .core-item-description {
        font-size: 14px;
        line-height: 1.8;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .core-values-section {
        padding: 80px 0;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* .core-main-slider {
        height: 560px;
    } */

    .core-content-area {
        display: block;
    }

    .core-thumbnail-wrapper,
    .core-thumbnail-slider .swiper-slide {
        min-height: 180px;
        height: 180px;
    }

    .core-details-slider {
        margin-top: 40px;
    }

    .core-details {
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 10px;
    }

    .core-item-description {
        grid-column: 2;
    }

    .core-navigation {
        padding-left: 87px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .core-values-section {
        padding: 70px 0;
    }



    .core-values-label {
        margin-bottom: 14px;
        font-size: 13px;
        letter-spacing: 3px;
    }

    .core-values-title {
        font-size: 34px;
    }

    .core-main-slider {
        height: 350px;
    }

    .core-thumbnail-wrapper,
    .core-thumbnail-slider .swiper-slide {
        min-height: 125px;
        height: 125px;
    }

    .core-details-slider {
        /* min-height: 310px; */
        margin-top: 32px;
    }

    .core-details {
        display: block;
        text-align: center;
    }

    .core-icon-box {
        margin: 0 auto 20px;
    }

    .core-item-title {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .core-item-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .core-navigation {
        justify-content: center;
        margin-top: 30px;
        padding-left: 0;
    }

    .core-progress {
        margin-top: 28px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .core-values-section {
        padding: 70px 0;
    }
    .core-values-title {
        font-size: 34px;
    }

    .core-item-title {
        font-size: 24px;
    }
}



/* contect page  */
/* contcat secion  */

.contact-section {
    width: 100%;
    padding: 120px 0px;
    background: #f5f5f5;
}

.contact-row {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */

.contact-content {
    max-width: 630px;
}

.contact-title {
    margin-bottom: 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 600;
    color: #c49655;
}

.contact-description {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.75;
    /* color: #292929; */
    letter-spacing: 0.1px;
}

.contact-divider {
    width: 100%;
    height: 1px;
    margin: 42px 0;
    background: #dddddd;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 22px;
    min-width: 22px;
    padding-top: 2px;
    font-size: 18px;
    color: #d29a4d;
    text-align: center;
}

.contact-item-content {
    font-size: 16px;
    line-height: 1.9;
    color: #656565;
}

.contact-label {
    font-weight: 600;
    color: #454545;
}

.contact-link {
    color: #656565;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c49655;
}

/* RIGHT MAP */

.contact-map-wrap {
    position: relative;
    width: 100%;
    height: 585px;
    overflow: hidden;
    border-radius: 3px;
    background: #eeeeee;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-button {
    position: absolute;
    left: 50%;
    bottom: 35px;
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 247px;
    padding: 17px 27px;
    border-radius: 50px;
    background: #c7954c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.map-button:hover {
    background: #af7e39;
    transform: translateX(-50%) translateY(-3px);
}

.map-button i {
    font-size: 14px;
}

/* TABLET */

@media (max-width: 1199px) {
     .contact-section {
        padding: 90px 0px;
    }

    .contact-title {
        font-size: 34px;
    }
    .colo-fote {
    font-size: 14px;
    }
    .contact-description {
    font-size: 14px;
    }
    .contact-item-content {
    font-size: 14px;
}

    .contact-divider {
        margin: 20px 0;
    }


    /* .contact-map-wrap {
                height: 530px;
            } */
}

/* MOBILE */

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0px;
    }
    .colo-fote {
    font-size: 14px;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-divider {
        margin: 20px 0;
    }


}

@media (max-width: 575px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .contact-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-divider {
        margin: 20px 0;
    }


    .contact-details {
        gap: 19px;
    }

    .contact-item {
        gap: 13px;
    }

    .contact-item-content {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-icon {
        font-size: 16px;
    }

    /* .contact-map-wrap {
                height: 420px;
            } */

    .map-button {
        display: none;
        bottom: 24px;
        min-width: auto;
        width: calc(100% - 40px);
        padding: 15px 20px;
        font-size: 13px;
    }

    .contact-map-wrap {
        height: 300px;
    }
}



/* contact form  */

.enquiry-section {
    width: 100%;
    padding: 120px 0;
    background: #fff;
}

.enquiry-row {
    width: 100%;
    margin: 0 auto;
}

/* Heading */

.enquiry-heading {
    margin-bottom: 52px;
    text-align: center;
}

.enquiry-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.enquiry-heading p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    /* color: #444444; */
}

/* Main layout */

.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 60px;
    align-items: center;
}

/* Image */

.enquiry-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #eeeeee;
}

.enquiry-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Form */

.enquiry-form-wrap {
    width: 100%;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    height: 49px;
    padding: 8px 0 13px;
    border: 0;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 400;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
    font-family: 'Montserrat' !important;
}

.form-control::placeholder {
    color: #2f2f2f;
    opacity: 1;
}

.form-control:focus {
    border-bottom-color: #bd8c49;
}

textarea.form-control {
    height: 51px;
    min-height: 51px;
    max-height: 140px;
    resize: vertical;
}

/* Select */

.select-group {
    position: relative;
}

.select-group::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: #222222;
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
    pointer-events: none;
}

.select-group select {
    padding-right: 30px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-group select:invalid {
    color: #2f2f2f;
}

.form-control option {
    color: #2f2f2f;
    background: #ffffff;
}

/* Submit button */

.form-button-wrap {
    padding-top: 24px;
}

.submit-button {
    min-width: 150px;
    padding: 10px 15px;
    border: 1px solid #bd8c49;
    border-radius: 50px;
    background: #bd8c49;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.submit-button:hover {
    background: transparent;
    color: #bd8c49;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(189, 140, 73, 0.18);
}

/* WhatsApp floating button */

.whatsapp-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 50;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 31px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

/* Large screen */

@media (min-width: 1500px) {
    .enquiry-container {
        max-width: 1390px;
    }
}

/* Laptop */

@media (max-width: 1199px) {
      .enquiry-section {
        padding: 90px 0;
    }
    .enquiry-layout {
        gap: 60px;
    }

    .enquiry-image {
        height: 580px;
    }

    .enquiry-heading h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .enquiry-heading p {
    font-size: 14px;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .enquiry-section {
        padding: 80px 0;
    }

    .enquiry-heading {
        margin-bottom: 42px;
    }

    .enquiry-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .enquiry-image {
        width: 100%;
        height: 100%;
    }

    .enquiry-form-wrap {
        max-width: 100%;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .enquiry-section {
        padding: 70px 0;
    }

    .enquiry-heading {
        margin-bottom: 34px;
    }

    .enquiry-heading h2 {
        margin-bottom: 10px;
        font-size: 34px;
    }

    .enquiry-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .enquiry-layout {
        gap: 40px;
    }

    .enquiry-image {
        height: 100%;
        border-radius: 5px;
    }

    .enquiry-form {
        gap: 22px;
    }

    .form-control {
        height: 46px;
        font-size: 14px;
    }

    textarea.form-control {
        height: 48px;
        min-height: 48px;
    }

    .form-button-wrap {
        padding-top: 14px;
    }

    .submit-button {
        min-width: 140px;
        padding: 14px 27px;
    }

    .whatsapp-button {
        left: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
        font-size: 27px;
    }
}


/* sustainability page  */

/* sust about  */


.sustainability-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}



/* Top line */

.sustainability-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    border-bottom: 1px solid #e7ddd0;
}

.sustainability-label,
.sustainability-brand {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #70685f;
        text-align: right;
}

.sustainability-label {
    position: relative;
    padding-left: 39px;
}

.sustainability-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 29px;
    height: 1px;
    transform: translateY(-50%);
    background: #bf8d4c;
}

/* Intro */

.sustainability-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    padding: 30px 0;
}

.sustainability-heading h2 {
    max-width: 600px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.sustainability-content {
    max-width: 600px;
    justify-self: end;
}

.sustainability-content p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 1.75;
    color: #756d64;
}

.approach-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 205px;
    padding: 12px 21px;
    border: 1px solid #d8ae76;
    border-radius: 50px;
    color: #9d672b;
    font-size: 12px;
    font-weight: 500;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.approach-button:hover {
    background: #b9823d;
    color: #ffffff;
    transform: translateY(-2px);
}

.approach-button i {
    font-size: 12px;
}

/* Image */

.sustainability-image-area {
    position: relative;
}

.sustainability-circle {
    position: absolute;
    top: -36px;
    right: -38px;
    width: 132px;
    height: 132px;
    border: 1px solid #eee4d8;
    border-radius: 50%;
    z-index: 0;
}

.sustainability-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 7px;
    border: 1px solid #dfcfbb;
    background: #ffffff;
}

.sustainability-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.image-caption {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #ffffff;
}

.sustainability-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0) 42%);
    pointer-events: none;
}

/* Statistics */

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #e7ddd0;
}

.stat-item {
    min-height: 58px;
    padding: 0 22px;
    border-right: 1px solid #e7ddd0;
}

.stat-item:first-child {
    padding-left: 20px;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-number {
    margin-bottom: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #b9823d;
}

.stat-label {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #675f56;
}

/* Responsive */

@media (max-width: 1199px) {
    .sustainability-container {
        max-width: 980px;
    }

    .sustainability-intro {
        gap: 60px;
    }

    .sustainability-heading h2 {
        font-size: 40px;
    }
    .sustainability-content p {
    font-size: 14px;
}
.stat-number {
    font-size: 35px;

}
    .sustainability-section {
    padding: 90px 0;
}
}

@media (max-width: 991px) {
    .sustainability-section {
        padding: 80px 0;
    }

    .sustainability-intro {
        grid-template-columns: 1fr;
        gap: 0px;
        padding: 20px 0;
    }
    .stat-number {
    font-size: 24px;
    }
    .stat-label {
    font-size: 12px;
    }
    .stat-item:first-child {
    padding: 0  10px ;
}

    .sustainability-content {
        max-width: 650px;
        justify-self: start;
    }
    .sustainability-label, .sustainability-brand {
    font-size: 12px;
    letter-spacing: 1px;
    }
}

@media (max-width: 767px) {
    .sustainability-brand {
        display: none;
    }

    .sustainability-intro {
        padding: 25px 0;
        gap: 0;
    }

    .sustainability-heading h2 {
        font-size: 34px;
    }

    /* .sustainability-image-frame {
        height: 340px;
    } */

    .sustainability-stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        padding-top: 22px;
        border-top: 1px solid #e7ddd0;
    }
}

@media (max-width: 575px) {
    .sustainability-section {
        padding: 70px 0;
    }

    .sustainability-label {
        padding-left: 31px;
        font-size: 14px;
        letter-spacing: 3px;
    }

    .sustainability-label::before {
        width: 22px;
    }

    .sustainability-heading h2 {
        font-size: 34px;
        margin-bottom: 0;
    }

    .sustainability-content p {
        font-size: 14px;
    }

    .approach-button {
        min-width: 190px;
        padding: 11px 18px;
    }

    .sustainability-image-frame {
        height: 100%;
        padding: 5px;
    }

    .sustainability-circle {
        right: -55px;
        width: 110px;
        height: 110px;
    }

    .image-caption {
        left: 12px;
        bottom: 11px;
        font-size: 8px;
        letter-spacing: 2px;
    }

    .sustainability-stats {
        margin-top: 27px;
        padding-top: 23px;
    }

    .stat-item {
        padding: 0 13px;
    }

    .stat-item:first-child {
        padding-left: 5px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}


/* piller sust  */

.pillars-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #f5f5f5;
}

.pillars-row {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 425px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

/* ==============================
           LEFT STICKY PART
        ============================== */

.pillars-left {
    position: relative;
}

.pillars-sticky {
    position: sticky;
    top: 80px;
}


.pillars-eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.pillars-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.pillars-intro {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
    /* color: #000; */
}

.pillar-progress {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
}

.pillar-progress-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    color: #b77e39;
}

.pillar-progress-line {
    position: relative;
    width: 50px;
    height: 1px;
    background: #e4d6c4;
    overflow: hidden;
}

.pillar-progress-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 35%;
    background: #b77e39;
}

/* ==============================
           RIGHT SIDE
        ============================== */

.pillars-list {
    width: 100%;
    border-top: 1px solid #e5dbcf;
}

.pillar-item {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 50px;
    gap: 14px;
    min-height: 100%;
    padding: 20px 0 20px;
    border-bottom: 1px solid #e5dbcf;
}

.pillar-number {
    padding-top: 2px;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    color: #b77e39;
}

.pillar-content h3 {
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #bc8c48;
}

.pillar-content p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
    /* color: #80786f; */
}

.pillar-icon {
    width: 45px;
    height: 45px;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dec7aa;
    border-radius: 50%;
    color: #b77e39;
    font-size: 15px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    background: #b77e39;
    color: #ffffff;
    transform: translateY(-2px);
}

.pillar-item.active .pillar-icon {
    background: #b77e39;
    border-color: #b77e39;
    color: #ffffff;
}

/* ==============================
           RESPONSIVE
        ============================== */

        @media (max-width: 1199px) {
            .pillars-section {
                padding: 90px 0;
            }
            .pillars-title {
                font-size: 40px;
            }
            .pillars-row {
                grid-template-columns: 350px minmax(0, 1fr);
                gap: 25px;
            }
        }

@media (max-width: 991px) {
    .pillars-section {
        padding: 80px 0;
    }

    .pillars-row {
        grid-template-columns: auto;
        gap: 25px;
    }
    .pillar-content h3 {
    font-size: 24px;
    }

    .pillars-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .pillars-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillars-sticky {
        position: relative;
        top: auto;
    }

    .pillars-left {
        padding-bottom: 25px;
        border-bottom: 1px solid #e5dbcf;
    }

    .pillars-intro {
        /* max-width: 550px; */
        font-size: 14px;
    }
        .pillar-content p {
        font-size: 14px;
    }
    .pillar-content h3 {
    font-size: 24px;
}
}

@media (max-width: 575px) {
    .pillars-section {
        padding: 70px 0;
    }

    .pillars-eyebrow {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .pillars-title {
        font-size: 34px;
        line-height: 1.05;
    }

    .pillars-intro {
        font-size: 14px;
    }

    .pillar-item {
        grid-template-columns: 25px minmax(0, 1fr) 34px;
        gap: 10px;
        padding: 24px 0;
    }

    .pillar-content h3 {
        font-size: 24px;
    }

    .pillar-content p {
        font-size: 14px;
    }

    .pillar-icon {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}


/* sust policies  */
       
     /* =====================================
           ESG SECTION
        ===================================== */

        .dwarakamai-esg-section {
            position: relative;
            width: 100%;
            padding: 120px 0;
            overflow: hidden;
            background-color:#fff;
        }

        /* =====================================
           HEADER
        ===================================== */

        .dwarakamai-esg-header {
            display: grid;
            grid-template-columns: minmax(420px, 1fr) auto;
            gap: 70px;
            align-items: end;
            margin-bottom: 47px;
        }

        .dwarakamai-esg-eyebrow {
            display: block;
            margin-bottom: 18px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
        }

        .dwarakamai-esg-title {
           font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
        }

        .dwarakamai-esg-description {
            max-width:650px;
               font-size: 16px;
    line-height: 1.7;
    /* color: #000; */
        }

        /* =====================================
           FILTER BUTTONS
        ===================================== */

        .dwarakamai-esg-filters {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            padding-bottom: 1px;
        }

        .dwarakamai-filter-button {
            min-height: 32px;
            padding: 6px 17px;
            border: 1px solid var(--esg-border);
            border-radius: 30px;
            outline: none;
            background-color: transparent;
            color: #63584e;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            cursor: pointer;
            transition:
                background-color 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
        }

        .dwarakamai-filter-button:hover,
        .dwarakamai-filter-button.active {
            border-color: var(--esg-gold);
            background-color: var(--esg-gold);
            color: var(--esg-white);
        }

        /* =====================================
           POLICY GRID
        ===================================== */

        .dwarakamai-policy-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 63px;
            border-top: 1px solid var(--esg-border);
        }

        .dwarakamai-policy-column {
            display: flex;
            flex-direction: column;
        }

        /* =====================================
           POLICY ITEM
        ===================================== */

        .dwarakamai-policy-item {
            display: grid;
            grid-template-columns: 38px minmax(0, 1fr) auto;
            /* grid-template-columns: 38px minmax(0, 1fr) auto 13px; */
            gap: 13px;
            align-items: center;
            min-height: 77px;
            padding: 12px 2px 12px 0;
            border-bottom: 1px solid var(--esg-border);
            color: var(--esg-dark);
            text-decoration: none;
            transition:
                background-color 0.3s ease,
                padding 0.3s ease,
                opacity 0.3s ease;
        }

        .dwarakamai-policy-item:hover {
            padding-left: 8px;
            background-color: rgba(255, 255, 255, 0.45);
        }

        /* =====================================
           ICON
        ===================================== */

        .dwarakamai-policy-icon {
            display: flex;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 50%;
            background-color: var(--esg-white);
            color: var(--esg-gold);
            font-size: 16px;
            transition:
                color 0.3s ease,
                background-color 0.3s ease,
                transform 0.3s ease;
        }

        .dwarakamai-policy-item:hover .dwarakamai-policy-icon {
            background-color: var(--esg-gold);
            color: var(--esg-white);
            transform: rotate(5deg);
        }

        .dwarakamai-policy-item.highlighted .dwarakamai-policy-icon {
            background-color: var(--esg-gold);
            color: var(--esg-white);
        }

        /* =====================================
           POLICY TEXT
        ===================================== */

        .dwarakamai-policy-name {
            color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
        }

        .dwarakamai-policy-category {
               color: #5e5248;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: right;
        }

        .dwarakamai-policy-arrow {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            color: var(--esg-gold);
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .dwarakamai-policy-item:hover .dwarakamai-policy-arrow {
            transform: translate(3px, -3px);
        }

        /* =====================================
           HIDDEN FILTER ITEMS
        ===================================== */

        .dwarakamai-policy-item.policy-hidden {
            display: none;
        }

        /* =====================================
           FOOTNOTE
        ===================================== */

        .dwarakamai-esg-footnote {
           display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 36px;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
        }

        .dwarakamai-esg-footnote i {
            color: var(--esg-gold);
            font-size: 11px;
        }

        /* =====================================
           TABLET
        ===================================== */

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

            .dwarakamai-esg-section {
                min-height: auto;
                padding: 80px 0;
            }
            .dwarakamai-esg-title {
    font-size: 34px;
            }

            .dwarakamai-esg-header {
                grid-template-columns: 1fr;
                gap: 28px;
                align-items: start;
                margin-bottom: 40px;
            }

            .dwarakamai-esg-filters {
                justify-content: flex-start;
                flex-wrap: wrap;
            }

            .dwarakamai-policy-grid {
                column-gap: 35px;
            }

            .dwarakamai-policy-item {
                grid-template-columns: 38px minmax(0, 1fr) auto;
                gap: 10px;
            }

            .dwarakamai-policy-name {
                font-size: 14px;
            }

            .dwarakamai-policy-category {
                      font-size: 12px;
        letter-spacing: 0.5px;
            }
        }

        /* =====================================
           MOBILE
        ===================================== */

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

            .dwarakamai-esg-section {
                padding: 70px 0;
            }

            .dwarakamai-esg-header {
                gap: 27px;
                margin-bottom: 33px;
            }

            .dwarakamai-esg-eyebrow {
                margin-bottom: 16px;
                font-size: 14px;
                letter-spacing: 1px;
            }

            .dwarakamai-esg-title {
                margin-bottom: 15px;
                font-size: 34px;
            }

            .dwarakamai-esg-description {
                max-width: 100%;
                font-size: 14px;
                line-height: 1.75;
            }

            .dwarakamai-esg-filters {
                gap: 7px;
            }

            .dwarakamai-filter-button {
                min-height: 31px;
                padding: 6px 13px;
                font-size: 12px;
                letter-spacing: 0.8px;
            }

            .dwarakamai-policy-grid {
                grid-template-columns: 1fr;
                column-gap: 0;
            }

            .dwarakamai-policy-column {
                display: contents;
            }

            .dwarakamai-policy-item {
                grid-template-columns: 38px minmax(0, 1fr) 13px;
                gap: 11px;
                min-height: 73px;
            }

            .dwarakamai-policy-category {
                display: none;
            }

            .dwarakamai-policy-name {
                font-size: 14px;
            }

            .dwarakamai-policy-arrow {
                justify-self: end;
            }

            .dwarakamai-esg-footnote {
                align-items: flex-start;
                margin-top: 20px;
                font-size: 14px;
            }
        }

        /* =====================================
           SMALL MOBILE
        ===================================== */

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

            .dwarakamai-esg-title {
                font-size: 31px;
            }

            .dwarakamai-esg-filters {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                width: 100%;
            }

            .dwarakamai-filter-button {
                width: 100%;
            }

            .dwarakamai-policy-item {
                grid-template-columns: 35px minmax(0, 1fr) 12px;
                gap: 10px;
            }

            .dwarakamai-policy-icon {
                width: 35px;
                height: 35px;
            }
        }


/* terms and conditions  privacy disclimer  pages  */


/* ===============================
           TERMS SECTION
        =============================== */

.blog_detail_section {
    position: relative;
    width: 100%;
}

.bgg-colors11 {
    background-color: #f5f5f5;
}

.padd-ress {
    padding: 120px 0;
}



.blog_inner_pannel {
    width: 100%;
}

.panne-11 {
    max-width: 100%;
}


/* ===============================
           CONTENT SPACING
        =============================== */

.info {
    margin-bottom: 24px;
}

.blog_info {
    margin-bottom: 25px;
}


/* ===============================
           MAIN HEADING
        =============================== */

.projj-headds-11 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}


/* ===============================
           SECTION HEADINGS
        =============================== */

.colo-terms {
    margin-bottom: 8px;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog_info h2.colo-terms {
    font-size: 24px;
    margin-bottom: 10px;
}


/* ===============================
           PARAGRAPH
        =============================== */

.colo-paryte {
    margin: 0;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.35px;
}

.colo-paryte strong {
    font-weight: 600;
}


/* ===============================
           CONTACT DETAILS
        =============================== */

.contact-details {
    margin-top: 10px;
    padding: 22px 25px;
    /* background: rgba(255, 255, 255, 0.28); */
    border-left: 4px solid #bc8c48;
    border-radius: 4px;
}

.contact-details a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #bc8c48;
}


/* ===============================
           RESPONSIVE
        =============================== */

@media screen and (max-width: 1199px) {
    .auto-container {
        max-width: 1100px;
    }

    .projj-headds-11 {
        font-size: 40px;
    }
        .colo-paryte {
    font-size: 14px;
}
}

@media screen and (max-width: 991px) {
    .padd-ress {
        padding: 70px 0 80px;
    }

    .auto-container {
        padding: 0 25px;
    }

    .projj-headds-11 {
        font-size: 34px;
    }

    .colo-terms {
        font-size: 24px;
    }

    .blog_info h2.colo-terms {
        font-size: 24px;
    }
    .colo-paryte {
    font-size: 14px;
}
}

@media screen and (max-width: 767px) {
    .padd-ress {
        padding: 55px 0 65px;
    }

    .auto-container {
        padding: 0 20px;
    }

    .info {
        margin-bottom: 28px;
    }

    .projj-headds-11 {
        margin-bottom: 15px;
        font-size: 34px;
        line-height: 1.25;
    }

    .colo-terms {
        font-size: 24px;
        line-height: 1.4;
    }

    .blog_info h2.colo-terms {
        font-size: 24px;
    }

    .colo-paryte {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 0.15px;
    }

    .contact-details {
        padding: 18px 4px;
        border-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .padd-ress {
        padding: 45px 0 55px;
    }

    .auto-container {
        padding: 0 16px;
    }

    .projj-headds-11 {
        font-size: 34px;
    }

    .colo-terms {
        font-size: 24px;
    }

    .blog_info h2.colo-terms {
        font-size: 24px;
    }

    .colo-paryte {
        font-size: 14px;
    }
}


/* emi page  */

/* emi calclater  */

.emi-calculator-section {
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
    background: #fff;
}



.emi-header {
    margin-bottom: 34px;
}

.emi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.emi-subtitle {
    /* color: #66645f; */
    font-size: 16px;
    line-height: 1.6;
}

.emi-subtitle strong {
    color: #bc8c48;
    font-weight: 600;
}

.emi-heading-line {
    position: relative;
    width: 80px;
    height: 1px;
    margin-top: 18px;
    background: #bd8a27;
}

.emi-heading-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background: #bd8a27;
    transform: translate(-1px, -50%) rotate(45deg);
}

.emi-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 30px;
    align-items: stretch;
}

.emi-card {
    border: 1px solid rgba(188, 140, 72, 0.2);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(40, 31, 20, 0.07);
}

.emi-input-card {
    padding: 30px;
}

.emi-card-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: #bc8c48;
}

.emi-card-title-icon,
.emi-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f4eee7;
    color: #bc8c48;
}

.emi-card-title-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
}

.emi-field {
    padding: 24px 0;
    border-bottom: 1px solid #e9e4dc;
}

.emi-field:last-of-type {
    border-bottom: 0;
}

.emi-field-top {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 180px;
    gap: 14px;
    align-items: center;
    margin-bottom: 15px;
}

.emi-field-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
}

.emi-field-label {
    font-size: 16px;
    font-weight: 600;
}

.emi-value-box {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 14px;
    border: 1px solid #d0a148;
    border-radius: 8px;
    background: #ffffff;
    color: #bc8c48;
    font-size: 19px;
    font-weight: 600;
}

.emi-value-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #bc8c48;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
}

.emi-value-box input[type="number"]::-webkit-inner-spin-button,
.emi-value-box input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.emi-range-wrap {
    padding-left: 60px;
}

.emi-range {
    width: 100%;
    height: 5px;
    display: block;
    appearance: none;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,
            #b88016 0%,
            #b88016 var(--range-progress, 50%),
            #dedbd6 var(--range-progress, 50%),
            #dedbd6 100%);
}

.emi-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    appearance: none;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #bd8720;
    box-shadow: 0 2px 8px rgba(128, 88, 15, 0.28);
}

.emi-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #bd8720;
    box-shadow: 0 2px 8px rgba(128, 88, 15, 0.28);
}

.emi-range-values {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 11px;
    color: #77746f;
    font-size: 11px;
    line-height: 1.2;
}

.emi-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.emi-button {
    min-width: 180px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.emi-button:hover {
    transform: translateY(-2px);
}

.emi-button-primary {
    border: 1px solid #bc8c48;
    background: #bc8c48;
    color: #ffffff;
}

.emi-button-primary:hover {
    background: #a97838;
}

.emi-button-secondary {
    border: 1px solid #bc8c48;
    background: #ffffff;
    color: #a87014;
}

.emi-button-secondary:hover {
    background: #faf4eb;
}

.emi-result-card {
    overflow: hidden;
}

.emi-result-header {
    padding: 30px 24px;
    background: #bc8c48;
    color: #ffffff;
    text-align: center;
}

.emi-result-label {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.emi-result-amount {
    /* font-family: "Cormorant Garamond", serif; */
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
}

.emi-result-period {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.emi-summary-content {
    padding: 26px;
}

.emi-summary-title {
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    color: #bc8c48;
    font-size: 26px;
    font-weight: 600;
}

.emi-summary-row {
    min-height: 54px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #e8e5df;
    font-size: 14px;
}

.emi-summary-row i {
    color: #bc8c48;
}

.emi-summary-value {
    font-weight: 600;
    text-align: right;
}

.emi-total-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    margin-top: 14px;
    padding: 15px 17px;
    border-radius: 9px;
    background: #f5f1eb;
    color: #9d6e2e;
}

.emi-total-label {
    font-size: 15px;
    font-weight: 700;
}

.emi-total-label small {
    display: block;
    margin-top: 3px;
    color: #55514c;
    font-size: 12px;
    font-weight: 400;
}

.emi-total-value {
    font-size: 21px;
    font-weight: 700;
    white-space: nowrap;
}

.emi-chart-box {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e1ded8;
    border-radius: 12px;
}

.emi-chart-title {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.emi-chart-content {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.emi-donut {
    position: relative;
    width: 145px;
    height: 145px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(#c9901f 0 var(--interest-angle, 50%),
            #174d40 var(--interest-angle, 50%) 100%);
}

.emi-donut::after {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: #ffffff;
}

.emi-chart-legend {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.emi-legend-item {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.emi-legend-color {
    width: 9px;
    height: 9px;
    margin-top: 4px;
    border-radius: 2px;
}

.emi-legend-color.interest {
    background: #c9901f;
}

.emi-legend-color.principal {
    background: #174d40;
}

.emi-legend-title {
    font-size: 13px;
    font-weight: 700;
}

.emi-legend-value {
    margin-top: 4px;
    color: #4d504e;
    font-size: 12px;
    line-height: 1.45;
}

/* responsive  */

/* =========================================================
   EMI CALCULATOR RESPONSIVE CSS
========================================================= */

/* Large Desktop: 1400px to 1599px */
@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    .emi-calculator-section {
        padding: 110px 0;
    }

    .emi-main-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
        gap: 28px;
    }

    .emi-input-card {
        padding: 28px;
    }

    .emi-summary-content {
        padding: 25px;
    }
}


/* Desktop: 1200px to 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .emi-calculator-section {
        padding: 100px 0;
    }

    .emi-title {
        font-size: 46px;
    }

    .emi-main-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
        gap: 24px;
    }

    .emi-input-card {
        padding: 26px;
    }

    .emi-field-top {
        grid-template-columns: 44px minmax(0, 1fr) 165px;
        gap: 12px;
    }

    .emi-field-icon {
        width: 44px;
        height: 44px;
    }

    .emi-range-wrap {
        padding-left: 56px;
    }

    .emi-result-amount {
        font-size: 46px;
    }

    .emi-summary-content {
        padding: 24px;
    }

    .emi-chart-content {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 18px;
    }

    .emi-donut {
        width: 130px;
        height: 130px;
    }

    .emi-donut::after {
        inset: 27px;
    }
}


/* Small Desktop / Landscape Tablet: 992px to 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .emi-calculator-section {
        padding: 90px 0;
    }

    .emi-header {
        margin-bottom: 28px;
    }

    .emi-title {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .emi-subtitle {
        font-size: 16px;
    }

    .emi-main-grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 22px;
    }

    .emi-input-card {
        padding: 24px 22px;
    }

    .emi-card-title {
        font-size: 26px;
    }

    .emi-card-title-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .emi-field {
        padding: 21px 0;
    }

    .emi-field-top {
        grid-template-columns: 42px minmax(0, 1fr) 145px;
        gap: 10px;
    }

    .emi-field-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .emi-field-label {
        font-size: 14px;
    }

    .emi-value-box {
        min-height: 46px;
        padding: 7px 10px;
        font-size: 16px;
    }

    .emi-value-box input {
        font-size: 16px;
    }

    .emi-range-wrap {
        padding-left: 52px;
    }

    .emi-range-values {
        font-size: 10px;
    }

    .emi-actions {
        gap: 10px;
    }

    .emi-button {
        min-width: 150px;
        min-height: 48px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .emi-result-header {
        padding: 26px 20px;
    }

    .emi-result-label {
        font-size: 16px;
    }

    .emi-result-amount {
        font-size: 42px;
    }

    .emi-summary-content {
        padding: 21px;
    }

    .emi-summary-title {
        font-size: 24px;
    }

    .emi-summary-row {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 8px;
    }

    .emi-summary-value {
        grid-column: 2;
        text-align: left;
        padding-bottom: 10px;
    }

    .emi-total-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .emi-total-value {
        font-size: 19px;
    }

    .emi-chart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emi-donut {
        width: 135px;
        height: 135px;
    }

    .emi-donut::after {
        inset: 28px;
    }

    .emi-chart-legend {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}


/* Tablet: 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .emi-calculator-section {
        padding: 80px 0;
    }

    .emi-header {
        margin-bottom: 28px;
        text-align: center;
    }

    .emi-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .emi-subtitle {
        max-width: 600px;
        margin: 0 auto;
        font-size: 16px;
    }

    .emi-heading-line {
        margin: 17px auto 0;
    }

    .emi-main-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .emi-input-card {
        padding: 28px;
    }

    .emi-result-card {
        max-width: 100%;
    }

    .emi-field-top {
        grid-template-columns: 46px minmax(0, 1fr) 175px;
    }

    .emi-range-wrap {
        padding-left: 60px;
    }

    .emi-actions {
        margin-top: 12px;
    }

    .emi-result-header {
        padding: 28px 24px;
    }

    .emi-result-amount {
        font-size: 46px;
    }

    .emi-summary-content {
        padding: 28px;
    }

    .emi-chart-content {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 35px;
    }

    .emi-donut {
        width: 150px;
        height: 150px;
    }

    .emi-chart-legend {
        gap: 20px;
    }
}


/* Large Mobile: 577px to 767px */
@media only screen and (min-width: 577px) and (max-width: 767px) {

    .emi-calculator-section {
        padding: 80px 0;
    }

    .emi-calculator-section .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .emi-header {
        margin-bottom: 25px;
        text-align: center;
    }

    .emi-title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .emi-subtitle {
        max-width: 520px;
        margin: 0 auto;
        font-size: 15px;
    }

    .emi-heading-line {
        margin: 15px auto 0;
    }

    .emi-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .emi-card {
        border-radius: 15px;
    }

    .emi-input-card {
        padding: 24px 22px;
    }

    .emi-card-title {
        font-size: 25px;
    }

    .emi-card-title-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .emi-field {
        padding: 22px 0;
    }

    .emi-field-top {
        grid-template-columns: 42px minmax(0, 1fr) 155px;
        gap: 10px;
    }

    .emi-field-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .emi-field-label {
        font-size: 14px;
    }

    .emi-value-box {
        min-height: 46px;
        padding: 7px 10px;
        font-size: 16px;
    }

    .emi-value-box input {
        font-size: 16px;
    }

    .emi-range-wrap {
        padding-left: 52px;
    }

    .emi-range-values {
        gap: 4px;
        font-size: 9px;
    }

    .emi-actions {
        gap: 12px;
    }

    .emi-button {
        min-width: 0;
        flex: 1;
        min-height: 49px;
        padding: 11px 14px;
        font-size: 14px;
    }

    .emi-result-header {
        padding: 26px 20px;
    }

    .emi-result-label {
        font-size: 16px;
    }

    .emi-result-amount {
        font-size: 43px;
    }

    .emi-summary-content {
        padding: 24px 22px;
    }

    .emi-summary-title {
        font-size: 24px;
    }

    .emi-chart-content {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 20px;
    }

    .emi-donut {
        width: 130px;
        height: 130px;
    }

    .emi-donut::after {
        inset: 27px;
    }

    .emi-chart-legend {
        gap: 16px;
    }
}


/* Small Mobile: Maximum 576px */
@media only screen and (max-width: 576px) {

    .emi-calculator-section {
        padding: 70px 0;
    }

    .emi-calculator-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .emi-header {
        margin-bottom: 23px;
        text-align: center;
    }

    .emi-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .emi-subtitle {
        max-width: 350px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.6;
    }

    .emi-subtitle strong {
        display: inline;
    }

    .emi-heading-line {
        width: 65px;
        margin: 14px auto 0;
    }

    .emi-main-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .emi-card {
        width: 100%;
        min-width: 0;
        border-radius: 13px;
        box-shadow: 0 10px 30px rgba(40, 31, 20, 0.07);
    }

    .emi-input-card {
        padding: 20px 16px;
    }

    .emi-card-title {
        gap: 10px;
        margin-bottom: 3px;
        font-size: 24px;
        line-height: 1.2;
    }

    .emi-card-title-icon {
        width: 39px;
        height: 39px;
        font-size: 16px;
    }

    .emi-field {
        padding: 21px 0;
    }

    .emi-field-top {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 8px 10px;
        margin-bottom: 18px;
    }

    .emi-field-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .emi-field-label {
        font-size: 14px;
        line-height: 1.3;
    }

    .emi-value-box {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 46px;
        padding: 7px 12px;
        font-size: 16px;
    }

    .emi-value-box input {
        font-size: 16px;
    }

    .emi-range-wrap {
        width: 100%;
        padding-left: 0;
    }

    .emi-range {
        height: 5px;
    }

    .emi-range::-webkit-slider-thumb {
        width: 19px;
        height: 19px;
    }

    .emi-range-values {
        position: relative;
        gap: 0;
        margin-top: 10px;
        font-size: 9px;
        line-height: 1.2;
    }

    .emi-range-values span {
        max-width: 48px;
        text-align: center;
    }

    .emi-range-values span:first-child {
        text-align: left;
    }

    .emi-range-values span:last-child {
        text-align: right;
    }

    .emi-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 10px;
    }

    .emi-button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 11px 15px;
        font-size: 14px;
    }

    .emi-result-header {
        padding: 24px 15px;
    }

    .emi-result-label {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .emi-result-amount {
        font-size: clamp(35px, 10vw, 43px);
        line-height: 1.1;
        word-break: break-word;
    }

    .emi-result-period {
        margin-top: 6px;
        font-size: 14px;
    }

    .emi-summary-content {
        padding: 21px 16px;
    }

    .emi-summary-title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .emi-summary-row {
        min-height: 68px;
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 7px 9px;
        padding: 10px 0;
        font-size: 13px;
    }

    .emi-summary-value {
        grid-column: 2;
        text-align: left;
        font-size: 14px;
    }

    .emi-total-row {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 13px;
        padding: 14px;
    }

    .emi-total-label {
        font-size: 14px;
    }

    .emi-total-label small {
        font-size: 11px;
    }

    .emi-total-value {
        font-size: 19px;
        white-space: normal;
        word-break: break-word;
    }

    .emi-chart-box {
        margin-top: 16px;
        padding: 16px 12px;
    }

    .emi-chart-title {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .emi-chart-content {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .emi-donut {
        width: 135px;
        height: 135px;
    }

    .emi-donut::after {
        inset: 28px;
    }

    .emi-chart-legend {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 10px;
    }

    .emi-legend-item {
        grid-template-columns: 9px minmax(0, 1fr);
        gap: 7px;
    }

    .emi-legend-title {
        font-size: 11px;
        line-height: 1.35;
    }

    .emi-legend-value {
        margin-top: 3px;
        font-size: 11px;
        word-break: break-word;
    }
}


/* Extra Small Mobile: Maximum 390px */
@media only screen and (max-width: 390px) {

    .emi-calculator-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .emi-title {
        font-size: 34px;
    }

    .emi-input-card {
        padding: 18px 13px;
    }

    .emi-card-title {
        font-size: 24px;
    }

    .emi-range-values {
        font-size: 8px;
    }

    .emi-result-amount {
        font-size: 34px;
    }

    .emi-summary-content {
        padding: 19px 13px;
    }

    .emi-chart-legend {
        grid-template-columns: 1fr;
    }

    .emi-legend-title {
        font-size: 12px;
    }

    .emi-legend-value {
        font-size: 11px;
    }
}

/* benefite emi  */

/* =========================================
   EMI BENEFITS SECTION
========================================= */

.emi-benefits-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #f5f5f5;
}



/* =========================================
   SECTION HEADER
========================================= */

.emi-benefits-header {
    max-width: 850px;
    margin: 0 auto 55px;
}

.emi-small-title {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    color: #b58a26;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.emi-small-title::before,
.emi-small-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background: #c8a34c;
}

.emi-small-title::before {
    right: calc(100% + 18px);
}

.emi-small-title::after {
    left: calc(100% + 18px);
}

.emi-benefits-header .projj-headds {
       font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.emi-benefits-header p {
    max-width: 680px;
    margin: 0 auto;
    /* color: #3f4842; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* =========================================
   CARDS GRID
========================================= */

.emi-benefits-row {
    margin-left: -14px;
    margin-right: -14px;
    row-gap: 28px;
}

.emi-benefits-row>div {
    padding-left: 14px;
    padding-right: 14px;
}

/* =========================================
   BENEFIT CARD
========================================= */

.emi-benefit-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 260px;
    height: 100%;
    padding: 38px 34px;
    overflow: hidden;
    border: 1px solid rgba(17, 73, 55, 0.12);
    border-radius: 22px;
    background: #f5f5f5;
    box-shadow:
        0 15px 40px rgba(23, 62, 48, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.emi-benefit-card:hover {
    transform: translateY(-9px);
    border-color: rgba(190, 146, 38, 0.4);
    box-shadow:
        0 25px 55px rgba(23, 62, 48, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* =========================================
   ICON
========================================= */

.emi-icon-wrap {
    position: relative;
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
    margin-right: 28px;
    border: 1px dashed rgba(188, 145, 43, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emi-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-top: 4px solid #bc8c48;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #bc8c48;
    border-left: 4px solid transparent;
    border-radius: 50%;
    transform: rotate(30deg);
}

.emi-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #eeeae8;
    box-shadow:
        0 10px 25px rgba(6, 61, 44, 0.2),
        inset 0 0 0 5px rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease;
}

.emi-benefit-card:hover .emi-icon {
    transform: rotateY(180deg);
}

.emi-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(59%) sepia(28%) saturate(1094%) hue-rotate(357deg) brightness(91%) contrast(85%);
}

/* =========================================
   CARD CONTENT
========================================= */

.emi-card-content {
    position: relative;
    z-index: 3;
    flex: 1;
}

.emi-benefit-card h5 {
       font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.emi-title-line {
    display: block;
    width: 45px;
    height: 2px;
    margin: 14px 0 15px;
    background: #d0a139;
    transition: width 0.4s ease;
}

.emi-benefit-card:hover .emi-title-line {
    width: 75px;
}

.emi-benefit-card p {
    margin: 0;
    /* color: #424c46; */
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

@media only screen and (max-width: 1399px) {
  .emi-benefit-card {
              padding: 25px 25px;
        display: block;
    }
      .emi-icon-wrap {
        flex: 0 0 85px;
        width: 85px;
        height: 85px;
        margin-right: 20px;
    }

    .emi-icon {
        width: 60px;
        height:60px;
    }

    .emi-icon img {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

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

    .emi-benefit-card {
              padding: 25px 25px;
        display: block;
    }

    .emi-icon-wrap {
        flex: 0 0 85px;
        width: 85px;
        height: 85px;
        margin-right: 20px;
    }

    .emi-icon {
        width: 60px;
        height:60px;
    }

    .emi-icon img {
        width: 35px;
        height: 35px;
    }

    .emi-benefit-card h5 {
        font-size: 23px;
    }
    .emi-benefits-header .projj-headds {
    font-size: 40px;
}
.emi-benefits-section {
    padding: 90px 0;
}
}

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

    .emi-benefits-section {
        padding: 80px 0;
    }

    .emi-benefits-header .projj-headds {
        font-size: 42px;
    }

    .emi-benefit-card {
        min-height: 245px;
        display: block;
    }
}

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

    .emi-benefits-section {
        padding: 70px 0;
    }

    .emi-benefits-header {
        margin-bottom: 38px;
        padding: 0 15px;
    }

    .emi-small-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .emi-small-title::before,
    .emi-small-title::after {
        width: 24px;
    }

    .emi-small-title::before {
        right: calc(100% + 10px);
    }

    .emi-small-title::after {
        left: calc(100% + 10px);
    }

    .emi-benefits-header .projj-headds {
        font-size: 34px;
    }

    .emi-benefits-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .emi-benefit-card {
        min-height: auto;
        padding: 20px;
    }
}

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

    .emi-benefit-card {
        display: block;
        text-align: center;
    }

    .emi-icon-wrap {
        
         width: 85px;
        height: 85px;
        margin: 0 auto 20px;
    }

    .emi-title-line {
        margin: 13px auto 15px;
    }

    .emi-benefit-card h5 {
        font-size: 21px;
    }

    .emi-benefit-card p {
        font-size: 14px;
    }
}


/* faqs emi section  */

/* =========================================
           FAQ SECTION
        ========================================= */

.faq-section {
    width: 100%;
    padding: 120px 0;
    background-color: #fff;
}



.faq-section__content {
    width: 100%;
}


/* =========================================
           FAQ TITLE
        ========================================= */

.faq-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 10px;
}

.faq-section__title {
      font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.faq-section__dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffd34f;
}


/* =========================================
           ACCORDION
        ========================================= */

.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #d7d0cc;
    border-radius: 7px;
    background-color: transparent;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.16);
}


/* =========================================
           QUESTION BUTTON
        ========================================= */

.faq-question {
    position: relative;
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 16px 21px 16px 24px;
    border: 0;
    outline: none;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    display: block;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    /* text-transform: uppercase; */
}


/* =========================================
           ARROW ICON
        ========================================= */

.faq-icon {
    position: relative;
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7d0cc;
    border-radius: 50%;
    background-color: transparent;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 1.5px;
    border-radius: 3px;
    background-color: #4b3937;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.faq-icon::before {
    left: 10px;
    transform: rotate(45deg);
}

.faq-icon::after {
    right: 10px;
    transform: rotate(-45deg);
}

.faq-item.active .faq-icon {
    border-color: rgb(188, 140, 72);
    background-color: rgb(188, 140, 72);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: #ffffff;
}

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

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


/* =========================================
           FAQ ANSWER
        ========================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    visibility: visible;
}

.faq-answer-inner {
    padding: 0 70px 19px 24px;
}

.faq-answer p {
    margin: 0;
    max-width: 1350px;
    /* color: #666; */
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.1px;
}


/* =========================================
           HOVER
        ========================================= */

@media (hover: hover) {
    .faq-item:not(.active):hover {
        border-color: #bcaea8;
    }

    .faq-item:not(.active):hover .faq-icon {
        border-color: #8f7971;
    }
}


/* =========================================
           RESPONSIVE
        ========================================= */

@media screen and (max-width: 1199px) {
    .faq-container {
        max-width: 1120px;
    }
    .faq-section {
    padding: 90px 0;
}

    .faq-section__title {
        font-size: 40px;
    }
}

@media screen and (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 25px;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-answer-inner {
        padding-right: 55px;
    }
}

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

    .faq-container {
        padding: 0 18px;
    }

    .faq-section__title-wrap {
        gap: 13px;
        margin-bottom: 17px;
    }

    .faq-section__title {
        font-size: 34px;
        line-height: 1.3;
    }

    .faq-section__dot {
        width: 8px;
        height: 8px;
    }

    .faq-item {
        margin-bottom: 11px;
    }

    .faq-question {
        gap: 15px;
        min-height: 62px;
        padding: 14px 14px 14px 17px;
    }

    .faq-question-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .faq-icon {
             width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .faq-answer-inner {
        padding: 0 17px 17px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-container {
        padding: 0 14px;
    }

    .faq-section__title {
        font-size: 34px;
                margin-bottom: 15px;
    }

    .faq-question {
        padding: 13px 12px 13px 15px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
    }

    .faq-icon::before {
        left: 8px;
    }

    .faq-icon::after {
        right: 8px;
    }
}



/* nri page  */

 /* NRI Corner */

        .nri-investment-section {
         width: 100%;
    /* min-height: 100%; */
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
        }

        .nri-investment-row {
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
            gap: 110px;
            align-items: center;
        }

        .nri-title {
         margin-bottom: 32px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
        }

        .nri-description {
            max-width: 100%;
            font-size: 16px;
            line-height: 1.88;
            font-weight: 400;
            /* color: #292929; */
        }

        .nri-stats {
               width: 100%;
    max-width: 100%;
    min-height: 125px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #fff;
    border: 1px solid #bc8c48;
        }

        .stat-item {
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px;
            text-align: center;
        }

        .stat-item:first-child::after {
            content: "";
            width: 1px;
            height: 120px;
            background: rgba(255, 255, 255, 0.35);
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .stat-number {
            margin-bottom: 10px;
            font-size: 45px;
            line-height: 1;
            font-weight: 500;
            color: #bc8c48;
        }

        .stat-label {
            font-size: 16px;
            line-height: 1.4;
            font-weight: 400;
            color: #000;
        }

        .nri-image-column {
            display: flex;
            justify-content: center;
        }

        .nri-image-frame {
            width: 400px;
            max-width: 100%;
            aspect-ratio: 0.81 / 1;
            padding: 5px;
            border: 1px solid #b78632;
            background: transparent;
            overflow: hidden;
        }

        .nri-image-frame img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }

        @media (max-width: 1199px) {
            .nri-investment-section {
                padding: 90px 0;
            }

            .nri-investment-row {
                grid-template-columns: 1.1fr 0.9fr;
                gap: 45px;
            }

            .nri-stats {
                margin-top: 15px;
            }
            .stat-label {
    font-size: 14px;
}

            .nri-title {
    margin-bottom: 10px;
    font-size: 40px;
            }
        }

        @media (max-width: 900px) {
            .nri-investment-section {
                min-height: auto;
                padding: 80px 0px;
            }
            .nri-title {
    margin-bottom: 20px;
    font-size: 34px;

            }

            .nri-investment-row {
                grid-template-columns: 1fr;
                gap: 55px;
            }

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

            .nri-description {
                max-width: 100%;
                    font-size: 14px;
            }
            .stat-label {
    font-size: 14px;
            }

            .nri-stats {
                width: 100%;
                margin-top: 20px;
            }

            .nri-image-column {
                justify-content: center;
            }

           
        }

        @media (max-width: 576px) {
            .nri-investment-section {
                padding: 70px 0px;
            }

            .nri-investment-row {
                gap: 40px;
            }

            .nri-title {
                font-size: 34px;
                    margin-bottom: 15px;
            }

            .nri-description {
                font-size: 14px;
                line-height: 1.75;
            }

            .nri-stats {
                min-height: auto;
                margin-top: 35px;
                grid-template-columns: 1fr;
            }

            .stat-item {
                min-height: 80px;
            }

            .stat-item:first-child::after {
                width: calc(100% - 40px);
                height: 1px;
                top: auto;
                right: 20px;
                bottom: 0;
                transform: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 15px;
            }

            .nri-image-frame {
                width: 100%;
            }
        }




        /* Investment Section */

.investment-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:#f5f5f5;
}

.investment-row {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 70px;
    align-items: end;
}

/* Left Side */

.investment-left {
    min-width: 0;
}

.investment-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 13px;
}

.investment-label span:last-child {
       color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-line {
    width: 45px;
    height: 1px;
    display: block;
    background: #b89250;
}

.investment-title {
  font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.investment-title span {
    display: block;
    color: #bc8c48;
}

/* Investment Image */

.investment-image {
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    background: #eeeeee;
}


.investment-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}





/* Right Side */


.investment-item {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 0 0 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(174, 123, 36, 0.35);
}

.investment-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}


.investment-info {
    position: relative;
    padding-left: 28px;
}

.investment-info::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #ae7b24;
}

.investment-info h3 {
   font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.investment-info p {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

/* Laptop */
@media screen and (max-width: 1399px) {
.investment-item {
    padding: 0 0 25px;
    margin-bottom: 25px;
}
.investment-info h3 {
    margin-bottom: 10px;
}
.investment-title {
    font-size: 42px;
}
}

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

    .investment-row {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
    }
    .investment-section {
    padding: 90px 0;
}
.investment-title {
    font-size: 40px;
}
.investment-info h3 {
    margin-bottom: 8px;
}
.investment-info p {
    font-size: 14px;
}
.investment-item {
    padding: 0px 0 20px;
    margin-bottom: 20px;
}

}

/* Tablet */

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

    .investment-section {
        padding: 70px 20px;
    }

    .investment-row {
        grid-template-columns: 1fr;
        gap: 55px;
        align-items: start;
    }

    .investment-title {
        margin-bottom: 20px;
            font-size: 34px;

    }
    .investment-item {
    padding: 0 0 25px;
    margin-bottom: 25px;
    }



    .investment-right {
        padding-bottom: 0;
    }


}

/* Mobile */

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

    .investment-section {
        padding: 70px 0;
    }

    .investment-row {
        gap: 42px;
    }

    .investment-label {
        gap: 13px;
    }

    .investment-label span:first-child {
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .label-line {
        width: 48px;
    }

    .investment-title {
        margin-bottom: 25px;
        font-size: 34px;
        line-height: 1;
    }

    .investment-item {
           margin-bottom: 15px;
        padding-bottom: 15px;
    }



    .investment-info {
        padding-left: 17px;
    }

    .investment-info h3 {
        margin-bottom: 9px;
    }

    .investment-info p {
        font-size: 14px;
        line-height: 1.6;
    }

}

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

    .investment-title {
        font-size: 34px;
    }

  
    .investment-info {
        padding-top: 15px;
        padding-left: 0;
    }

    .investment-info::before {
        display: none;
        top: 0;
        right: 0;
        bottom: auto;
        width: 55px;
        height: 1px;
    }
}


/* blog page  */


        /* ================================
           Blog Section
        ================================ */

        .dwarakamai-blog-section {
            position: relative;
            overflow: hidden;
            padding: 120px 0;
            background: #ffffff;
        }



        /* ================================
           Blog Header
        ================================ */

        .dwarakamai-blog-header {
               display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 15px;
    padding-bottom: 15px;
        }

     

        .dwarakamai-blog-heading h2 {
         margin-bottom: 32px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
        }

        .dwarakamai-blog-heading p {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.7;
        }

        /* ================================
           Static Search Design
        ================================ */

        .dwarakamai-blog-tools {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            flex-shrink: 0;
        }

        .blog-search-box {
            display: flex;
            align-items: center;
            width: 230px;
            height: 48px;
            padding: 0 18px;
            border-radius: 50px;
            background: #f6f5f3;
        }

        .blog-search-box svg {
            width: 17px;
            height: 17px;
            margin-right: 10px;
            fill: #8c8883;
            flex-shrink: 0;
        }

        .blog-search-box input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            color: #37332f;
            font-family: "Inter", sans-serif;
            font-size: 13px;
        }

        .blog-search-box input::placeholder {
            color: #94918d;
        }

        .blog-category-box {
            position: relative;
            width: 170px;
            height: 48px;
        }

        .blog-category-box::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 19px;
            width: 7px;
            height: 7px;
            border-right: 1px solid #78736c;
            border-bottom: 1px solid #78736c;
            transform: translateY(-70%) rotate(45deg);
            pointer-events: none;
        }

        .blog-category-box select {
            width: 100%;
            height: 100%;
            padding: 0 42px 0 18px;
            border: 1px solid #d8d4cd;
            border-radius: 50px;
            outline: none;
            appearance: none;
            background: #ffffff;
            color: #5e5a55;
            font-family: "Inter", sans-serif;
            font-size: 13px;
            cursor: pointer;
        }

        /* ================================
           Blog Grid
        ================================ */

        .dwarakamai-blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            column-gap: 35px;
            row-gap: 50px;
        }

        .dwarakamai-blog-card {
            min-width: 0;
        }

        /* ================================
           Blog Image
        ================================ */

        .blog-image-link {
            display: block;
        }

        .blog-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 3px;
            /* background: #ece8e1; */
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .dwarakamai-blog-card:hover .blog-image img {
            transform: scale(1.055);
        }

        .dwarakamai-blog-card:hover .blog-image::after {
            opacity: 1;
        }

        .blog-category-label {
            position: absolute;
            z-index: 2;
            top: 18px;
            left: 18px;
            padding: 8px 14px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.93);
            color: #9f712e;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3px;
            backdrop-filter: blur(5px);
        }

        /* ================================
           Blog Content
        ================================ */

        .blog-card-content {
            padding-top: 21px;
        }



        .blog-card-content h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.17;
        }

        .blog-card-content h3 a {
            color: #39342f;
            background-image: linear-gradient(#bc8c48, #bc8c48);
            background-repeat: no-repeat;
            background-position: 100% 100%;
            background-size: 0 1px;
            transition:
                color 0.35s ease,
                background-size 0.45s ease;
        }

        .dwarakamai-blog-card:hover .blog-card-content h3 a {
            color: #a77835;
            background-position: 0 100%;
            background-size: 100% 1px;
        }

        /* ================================
           Decorative Circles
        ================================ */

        .blog-decoration {
            position: absolute;
            z-index: 1;
            display: block;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #efe2c3;
            opacity: 0.85;
            pointer-events: none;
        }

        .blog-decoration-one {
            top: 43%;
            right: -12px;
        }

        .blog-decoration-two {
            right: 1%;
            bottom: 7%;
        }

        /* ================================
           Tablet Responsive
        ================================ */

        @media screen and (max-width: 1199px) {
            .dwarakamai-blog-section {
                padding: 90px 0;
            }
            .dwarakamai-blog-heading h2 {
    margin-bottom: 20px;
    font-size: 40px;
            }
            .blog-card-content h3 {
    font-size: 20px;
}

            .dwarakamai-blog-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 28px;
            }

            .dwarakamai-blog-tools {
                width: 100%;
                justify-content: flex-start;
            }

         

            
        }

        @media screen and (max-width: 991px) {
             .dwarakamai-blog-section {
                padding: 80px 0;
            }
 .dwarakamai-blog-heading h2 {
                font-size: 34px;
                        margin-bottom: 15px;
            }
             .dwarakamai-blog-heading p {
                font-size: 14px;
            }
            .dwarakamai-blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 45px 25px;
            }

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

        /* ================================
           Mobile Responsive
        ================================ */

        @media screen and (max-width: 767px) {
            .dwarakamai-blog-section {
                padding: 80px 0;
            }

            .dwarakamai-blog-header {
        margin-bottom: 30px;
        padding-bottom: 0;
            }

            .dwarakamai-blog-heading h2 {
                font-size: 34px;
                        margin-bottom: 15px;
            }

            .dwarakamai-blog-heading p {
                font-size: 14px;
            }

            .dwarakamai-blog-tools {
                flex-direction: column;
                align-items: stretch;
                display: none;
            }

            .blog-search-box,
            .blog-category-box {
                width: 100%;
            }

            .dwarakamai-blog-grid {
                grid-template-columns: 1fr;
                row-gap: 42px;
            }

            .blog-image {
                height: auto;
                aspect-ratio: 4 / 3;
            }

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

            .blog-decoration {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .dwarakamai-blog-section {
                padding: 70px 0;
            }

            .dwarakamai-blog-heading h2 {
                font-size: 34px;
                        margin-bottom: 15px;
            }

            .blog-image {
                aspect-ratio: 1 / 0.78;
            }

            .blog-card-content {
                padding-top: 15px;
            }

            .blog-card-content h3 {
                font-size: 18px;
            }

        }


        /* blog details page  */

        .journal-section {
            position: relative;
            overflow: hidden;
            padding:120px 0;
            background: #fff;
        }

        .journal-row {
           width: 100%;
            margin: 0 auto;
        }

        /* =====================================
           MAIN LAYOUT
        ===================================== */

        .journal-layout {
            display: grid;
            grid-template-columns: minmax(0, 2fr) 0.85fr;
            gap: 75px;
            align-items: start;
        }

        /* =====================================
           ARTICLE LEFT
        ===================================== */

        .article-label {
            margin-bottom: 14px;
            color: #000;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .article-title {
            margin-bottom: 32px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
        }

        .article-author {
               display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 25px;
    color: #333;
    font-size: 14px;
        }

        .article-author .read-time {
            color: #bc8c48;
        }

        .article-hero {
            margin-bottom: 28px;
            overflow: hidden;
            border-radius: 3px;
        }

        .article-hero img {
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .article-text {
            color: #66615b;
            font-size: 13px;
            line-height: 1.8;
        }

        .article-text p {
               margin-bottom: 18px;
    font-size: 16px;
    font-weight: 400;
        }

        .article-text h3 {
                margin-bottom: 15px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;

        }

        .article-image {
            max-width: 610px;
            margin: 25px 0 18px;
            overflow: hidden;
            border-radius: 3px;
        }

        .article-image img {
            width: 100%;
            height: auto;
        }

        .article-image-large {
            max-width: 670px;
        }

        .article-quote {
              margin: 22px 0;
    padding: 5px 0 5px 20px;
    border-left: 3px solid #bc8c48;
    color: #000000;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.55;
    font-weight: 500;
        }

     

        /* =====================================
           ARTICLE BOTTOM INFO
        ===================================== */

        .article-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 35px;
            padding: 20px 0;
            border-top: 1px solid #ddd7ce;
            border-bottom: 1px solid #ddd7ce;
        }

        .article-bottom-author {
            color: #8a837c;
            font-size: 11px;
        }

        .article-bottom-author span {
            color: #bc8c48;
        }

        .article-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .article-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 34px;
            padding: 0 17px;
            border: 1px solid #bc8c48;
            border-radius: 30px;
            color: #bc8c48;
            background: #fff;
            font-size: 10px;
            transition: .3s ease;
        }

        .article-action-btn.active,
        .article-action-btn:hover {
            background: #bc8c48;
            color: #fff;
        }


        /* add on li  */
        .article-list {
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.article-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.article-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #bc8c48;
}

.article-list li strong {
   color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 700;
}

        /* =====================================
           SIDEBAR
        ===================================== */

        .journal-sidebar {
            position: sticky;
            top: 30px;
        }

        .sidebar-title {
               margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd8d1;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
        }

        /* Editor Pick */

        .editor-pick {
            margin-bottom: 45px;
        }

        .editor-pick-image {
            overflow: hidden;
            margin-bottom: 15px;
            border-radius: 2px;
        }

        .editor-pick-image img {
            height: 235px;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .editor-pick:hover img {
            transform: scale(1.04);
        }

        .editor-category {
            margin-bottom: 7px;
            color: #8f8982;
            font-size: 9px;
            text-transform: uppercase;
        }

        .editor-pick h3 {
            color: #bc8c48;
            font-family: "Cormorant Garamond", serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.1;
        }

        /* More Insights */

        .insight-list {
            margin-bottom: 40px;
        }

        .insight-item {
            display: grid;
            grid-template-columns: 95px 1fr;
            gap: 13px;
            padding: 12px 0;
            border-bottom: 1px solid #e0dcd6;
        }

        .insight-image {
            height: 70px;
            overflow: hidden;
            border-radius: 2px;
        }

        .insight-image img {
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .insight-item:hover img {
            transform: scale(1.06);
        }

        .insight-category {
                margin-bottom: 5px;
    color: #333;
    font-size: 16px;
        }

        .insight-content h4 {
            margin-bottom: 5px;
               color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.08;
        }

        .insight-date {
            color: #9d968f;
            font-size: 8px;
        }

        /* Tags */

        .tag-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
           padding: 7px 13px;
    border: 1px solid #bc8c48;
    border-radius: 30px;
    color: #333;
    background: #fff;
    font-size: 12px;
    transition: .3s ease;
        }

        .tag:hover {
            border-color: #bc8c48;
            color: #bc8c48;
        }

        /* =====================================
           MORE JOURNAL
        ===================================== */

        .more-journal {
            margin-top: 80px;
        }

        .more-journal-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 25px;
            margin-bottom: 35px;
        }

        .more-journal-heading h2 {
            margin-bottom: 20px;
    color: #bc8c48;
    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.7px;
        }

        .more-journal-heading p {
              font-size: 16px;
    line-height: 1.7;
        }

        .view-all {
           display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    height: 45px;
    border: 1px solid #bc8c48;
    border-radius: 30px;
    color: #bc8c48;
    font-size: 16px;
    transition: .3s;
        }

        .view-all:hover {
            background: #bc8c48;
            color: #fff;
        }

        .more-journal-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 38px;
        }

        .more-card-image {
            /* height: 320px; */
            overflow: hidden;
            margin-bottom: 20px;
            border-radius: 3px;
        }

        .more-card-image img {
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .more-journal-card:hover img {
            transform: scale(1.05);
        }

        .more-card-meta {
            margin-bottom: 10px;
            color: #8c857e;
            font-size: 9px;
        }

        .more-card-meta span {
            color: #bc8c48;
        }

        .more-journal-card h3 {
            /* color: #6c5742; */
            font-family: "Cormorant Garamond", serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.1;
            transition: color .3s;
        }

        .more-journal-card:hover h3 {
            color: #bc8c48;
        }

        /* =====================================
           DECORATIVE CIRCLES
        ===================================== */

        .journal-circle {
            position: absolute;
            right: -9px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #eee0bc;
            opacity: .8;
        }

        .circle-one {
            top: 17%;
        }

        .circle-two {
            top: 33%;
        }

        .circle-three {
            top: 52%;
        }

        .circle-four {
            top: 70%;
        }

        /* =====================================
           RESPONSIVE
        ===================================== */

        @media (max-width: 1199px) {
            .journal-layout {
                grid-template-columns: minmax(0, 1.8fr) 0.9fr;
                gap: 20px;
            }
    .journal-section {
                padding: 90px 0;
            }
            .article-title {
                font-size: 40px;
            }

            .editor-pick-image img {
                height: 200px;
            }

            .more-card-image {
                height: 270px;
            }
        }

        @media (max-width: 991px) {
            .journal-section {
                padding: 80px 0;
            }

            .journal-layout {
                grid-template-columns: 1fr;
            }
             .article-title {
                font-size:34px;
            }

            .journal-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .more-journal {
    margin-top: 80px;
    display: none;
}

            /* .sidebar-tags {
                grid-column: 1 / -1;
            } */

            .more-card-image {
                height: 240px;
            }
        }

        @media (max-width: 767px) {
            .journal-section {
                padding: 80px 0;
            }

            .article-title {
                font-size: 34px;
            }

            .article-hero img {
                aspect-ratio: 4 / 3;
            }

            .article-text {
                font-size: 14px;
            }

            .article-image,
            .article-image-large {
                max-width: 100%;
            }

            .journal-sidebar {
                display: block;
                margin-top: 20px;
            }

            .editor-pick,
            .insight-list {
                margin-bottom: 35px;
            }

            .editor-pick-image img {
                height: auto;
                aspect-ratio: 16 / 9;
            }

            .more-journal {
                margin-top: 60px;
                display: none;
            }

            .more-journal-header {
                align-items: flex-start;
                flex-direction: column;
            }

            .more-journal-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .more-card-image {
                height: auto;
                aspect-ratio: 4 / 3;
            }

            .article-bottom {
                align-items: flex-start;
                flex-direction: column;
            }

            .journal-circle {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .journal-section {
               padding: 70px 0;
            }

            .article-title {
                      font-size: 25px;
        margin-bottom: 15px;
            }

            .article-author {
                font-size: 9px;
                display: none;
            }
            .article-text p {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}

            .article-text {
                line-height: 1.7;
            }

            .article-quote {
                font-size: 16px;
            }

            .more-journal-heading h2 {
                font-size: 32px;
            }

            .insight-item {
                grid-template-columns: 90px 1fr;
            }
        }


         /* Completed Projects page  */

    /* =========================================
   COMPLETED PROJECTS SECTION
========================================= */

.com-projects-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.com-projects-section * {
    box-sizing: border-box;
}

.projj-row {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   HEADING
========================================= */

.com-projects-section .title-box {
    margin-bottom: 50px;
}

.com-projects-section .centered {
    text-align: center;
}

.project-subtitle {
    display: block;
    margin-bottom: 10px;
    /* font-family: "Inter", sans-serif; */
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.projj-headds {
        font-family: 'Cormorant Garamond', serif;
    font-size: 45px;
    line-height: 1.1;
    color: #bc8c48;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.7px;
}


/* =========================================
   PROJECT GRID
========================================= */

.completed-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================
   PROJECT CARD
========================================= */

.com-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(188, 140, 72, 0.18);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.com-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(188, 140, 72, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}


/* =========================================
   PROJECT IMAGE
========================================= */

.com-project-image-box {
    position: relative;
    width: 100%;
  
    overflow: hidden;
    background: #ddd;
}

.com-project-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.com-project-card:hover .com-project-img {
    transform: scale(1.06);
}


/* Optional dark overlay */

.com-project-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.12),
        transparent 45%
    );
    pointer-events: none;
}


/* =========================================
   PROJECT CONTENT
========================================= */

.com-project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 25px 27px;
}

.com-project-title {
    margin: 0 0 13px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #2c2926;
    transition: color 0.3s ease;
}

.com-project-card:hover .com-project-title {
    color: #bc8c48;
}


/* =========================================
   LOCATION
========================================= */

.com-project-location {
     display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
}

.com-project-location img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}


/* =========================================
   PROJECT DETAILS
========================================= */

.com-project-details {
    position: relative;
    margin: auto 0 0;
    padding-top: 17px;
    border-top: 1px solid #ece7e1;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #77706a;
}

.com-project-details span {
    display: inline-block;
    margin: 0 5px;
    color: #bc8c48;
}


@media (max-width: 1199px) {

    .com-projects-section {
        padding: 90px 0;
    }

 

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

    .projj-headds {
        font-size: 40px;
    }



    .com-project-title {
        font-size: 24px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .com-projects-section {
        padding: 80px 0;
    }

 

    .completed-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .projj-headds {
        font-size: 34px;
    }



    .com-project-title {
        font-size: 24px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .com-projects-section {
        padding: 80px 0;
    }



    .com-projects-section .title-box {
        margin-bottom: 35px;
    }


    .projj-headds {
        font-size: 34px;
    }

    .completed-projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }



    .com-project-content {
        padding: 22px 20px 24px;
    }

    .com-project-title {
        font-size: 24px;
        margin-bottom: 11px;
    }

    .com-project-location {
        font-size: 14px;
    }

    .com-project-details {
        font-size: 12px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .com-projects-section {
        padding: 70px 0;
    }


    .projj-headds {
        font-size: 34px;
    }


    .com-project-content {
        padding: 20px 18px 22px;
    }

    .com-project-title {
        font-size: 24px;
    }

    .com-project-location {
        align-items: flex-start;
        font-size: 14px;
        }

    .com-project-details {
        font-size: 12px;
        line-height: 1.8;
    }
}


  /* Title & Button Row */

.project-title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

/* Remove default margin */

.com-project-title{
    margin:0;
}

/* Small Contact Button */

.project-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    background:#bc8c48;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    border-radius:4px;
    transition:.3s ease;
    white-space:nowrap;
}

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

/* Mobile */

@media(max-width:767px){

.project-title-row{
    flex-direction:column;
    align-items:flex-start;
}

.project-contact-btn{
    margin-top:8px;
}

}