/* =========================================================
   DRISTI MUKHOR
   GLOBAL DESIGN SYSTEM
========================================================= */

:root {

    /* =========================
       BRAND COLORS
    ========================= */

    --dm-primary: #123B6D;
    --dm-primary-dark: #0D2C52;
    --dm-primary-light: #E8F0F8;

    --dm-turquoise: #0797B2;
    --dm-turquoise-dark: #067D94;
    --dm-turquoise-light: #E5F7FA;

    --dm-gold: #C89B3C;
    --dm-gold-dark: #A9822F;
    --dm-gold-light: #F7EEDC;


    /* =========================
       BACKGROUND COLORS
    ========================= */

    --dm-ivory: #FFF8E7;
    --dm-white: #FFFFFF;
    --dm-light: #F8F9FA;


    /* =========================
       TEXT COLORS
    ========================= */

    --dm-text: #333333;
    --dm-text-secondary: #666666;
    --dm-text-muted: #777777;
    --dm-text-light: #999999;

    --dm-text-white: #FFFFFF;
    --dm-text-white-muted: rgba(255, 255, 255, 0.72);


    /* =========================
       BORDER COLORS
    ========================= */

    --dm-border: #E5E5E5;
    --dm-border-light: #EEEEEE;

    --dm-border-primary: rgba(18, 59, 109, 0.10);
    --dm-border-white: rgba(255, 255, 255, 0.20);


    /* =========================
       SHADOWS
    ========================= */

    --dm-shadow-sm: 0 5px 20px rgba(18, 59, 109, 0.06);
    --dm-shadow-md: 0 10px 30px rgba(18, 59, 109, 0.10);
    --dm-shadow-lg: 0 15px 40px rgba(18, 59, 109, 0.14);


    /* =========================
       BORDER RADIUS
    ========================= */

    --dm-radius-sm: 4px;
    --dm-radius-md: 6px;
    --dm-radius-lg: 10px;
    --dm-radius-xl: 16px;
    --dm-radius-round: 50%;


    /* =========================
       TRANSITIONS
    ========================= */

    --dm-transition-fast: 0.2s ease;
    --dm-transition: 0.3s ease;
    --dm-transition-slow: 0.5s ease;


    /* =========================
       TYPOGRAPHY
    ========================= */

    --dm-font-family: Arial, sans-serif;
}


/* =========================================================
   GLOBAL RESET & BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--dm-font-family);

    background-color: var(--dm-ivory);
    color: var(--dm-text);

    line-height: 1.6;
}

a {
    transition: var(--dm-transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.dm-btn-primary,
.dm-btn-outline,
.dm-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 22px;

    border-radius: var(--dm-radius-md);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--dm-transition);
}

.dm-btn-primary {
    background: var(--dm-primary);
    color: var(--dm-white);
}

.dm-btn-primary:hover {
    background: var(--dm-turquoise);
    color: var(--dm-white);
    transform: translateY(-2px);
}

.dm-btn-outline {
    border: 1px solid var(--dm-border-white);
    color: var(--dm-white);
}

.dm-btn-outline:hover {
    background: var(--dm-white);
    color: var(--dm-primary);
}

.dm-btn-gold {
    background: var(--dm-gold);
    color: var(--dm-white);
}

.dm-btn-gold:hover {
    background: var(--dm-gold-dark);
    color: var(--dm-white);
    transform: translateY(-2px);
}






/* =========================================================
   DRISTI MUKHOR
   MODERN TRAVEL NAVBAR
========================================================= */
/* =========================================================
   DRISTI MUKHOR
   EDITORIAL TRAVEL NAVBAR
========================================================= */

.dm-navbar {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    background: transparent;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* =========================================================
   SCROLLED NAVBAR
========================================================= */

.dm-navbar.scrolled {

    position: fixed;

    padding: 10px 0;

    background: rgba(255, 248, 231, 0.94);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 8px 30px rgba(18, 59, 109, 0.08);
}


/* =========================================================
   NAVBAR INNER
========================================================= */

.dm-navbar-inner {

    min-height: 66px;

    display: flex;

    align-items: center;

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.dm-navbar-logo {

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    background: transparent !important;

    padding: 0 !important;

    border: 0 !important;

    box-shadow: none !important;
}


.dm-navbar-logo img {

    display: block;

    width: auto;

    height: 58px;

    max-width: 205px;

    object-fit: contain;

    transition:
        height 0.35s ease,
        transform 0.35s ease;
}


.dm-navbar-logo:hover img {

    transform: translateY(-1px);
}


.dm-navbar.scrolled .dm-navbar-logo img {

    height: 48px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.dm-navbar-menu {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-left: auto;

    margin-right: 28px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.dm-navbar-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding: 12px 14px;

    color: var(--dm-primary);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    letter-spacing: 0.1px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Gold underline */

.dm-navbar-link::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 4px;

    height: 2px;

    background: var(--dm-gold);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


.dm-navbar-link:hover {

    color: var(--dm-turquoise);

    transform: translateY(-1px);
}


.dm-navbar-link:hover::after,
.dm-navbar-link.active::after {

    transform: scaleX(1);
}


.dm-navbar-link.active {

    color: var(--dm-primary);
}


/* =========================================================
   EXPLORE JOURNAL BUTTON
========================================================= */

.dm-navbar-action {

    flex-shrink: 0;
}


.dm-navbar-explore {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 19px;

    background: var(--dm-gold);

    color: var(--dm-white);

    border: 1px solid var(--dm-gold);

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.1px;

    box-shadow:
        0 8px 20px rgba(200, 155, 60, 0.18);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.dm-navbar-explore i {

    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.dm-navbar-explore:hover {

    background: var(--dm-primary);

    border-color: var(--dm-primary);

    color: var(--dm-white);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(18, 59, 109, 0.16);
}


.dm-navbar-explore:hover i {

    transform: translate(3px, -3px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.dm-navbar-toggle {

    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 9px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 5px;
}


.dm-navbar-toggle span {

    display: block;

    width: 25px;
    height: 2px;

    background: var(--dm-primary);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   MOBILE TOGGLE ACTIVE
========================================================= */

.dm-navbar-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.dm-navbar-toggle.active span:nth-child(2) {

    opacity: 0;
}


.dm-navbar-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE FULLSCREEN MENU
========================================================= */

.dm-mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 2000;

    visibility: hidden;

    opacity: 0;

    background: var(--dm-ivory);

    transform: translateY(-20px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}


.dm-mobile-menu.active {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}


.dm-mobile-menu-inner {

    min-height: 100vh;

    padding: 25px;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   MOBILE TOP
========================================================= */

.dm-mobile-menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom:
        1px solid rgba(18, 59, 109, 0.12);
}


.dm-mobile-menu-top span {

    color: var(--dm-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================================
   MOBILE CLOSE
========================================================= */

.dm-mobile-close {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(18, 59, 109, 0.15);

    border-radius: 50%;

    background: transparent;

    color: var(--dm-primary);

    cursor: pointer;

    transition: 0.3s ease;
}


.dm-mobile-close:hover {

    background: var(--dm-gold);

    border-color: var(--dm-gold);

    color: var(--dm-white);
}


/* =========================================================
   MOBILE LINKS
========================================================= */

.dm-mobile-links {

    display: flex;

    flex-direction: column;

    margin-top: 25px;
}


.dm-mobile-links a {

    display: grid;

    grid-template-columns:
        45px 1fr 30px;

    align-items: center;

    gap: 10px;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(18, 59, 109, 0.10);

    text-decoration: none;

    color: var(--dm-primary);

    transition: 0.3s ease;
}


.dm-mobile-links a > span {

    color: var(--dm-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.dm-mobile-links strong {

    font-size: 29px;

    font-weight: 500;

    letter-spacing: -0.5px;
}


.dm-mobile-links a i {

    color: var(--dm-turquoise);

    font-size: 17px;

    transition:
        transform 0.3s ease;
}


.dm-mobile-links a:hover {

    color: var(--dm-turquoise);

    padding-left: 8px;
}


.dm-mobile-links a:hover i {

    transform:
        translate(3px, -3px);
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

.dm-mobile-footer {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-top: auto;

    padding-top: 30px;
}


.dm-mobile-footer small {

    display: block;

    color: rgba(18, 59, 109, 0.55);

    font-size: 9px;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


/* =========================================================
   MOBILE SOCIALS
========================================================= */

.dm-mobile-socials {

    display: flex;

    gap: 8px;
}


.dm-mobile-socials a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(18, 59, 109, 0.15);

    border-radius: 50%;

    color: var(--dm-primary);

    text-decoration: none;

    transition: 0.3s ease;
}


.dm-mobile-socials a:hover {

    background: var(--dm-turquoise);

    border-color: var(--dm-turquoise);

    color: var(--dm-white);
}


/* =========================================================
   MOBILE PLANE DECORATION
========================================================= */

.dm-mobile-plane {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(200, 155, 60, 0.35);

    border-radius: 50%;

    color: var(--dm-gold);

    font-size: 25px;

    transform: rotate(-15deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .dm-navbar-menu,
    .dm-navbar-action {

        display: none;
    }


    .dm-navbar-toggle {

        display: flex;
    }


    .dm-navbar {

        padding: 15px 0;
    }


    .dm-navbar-logo img {

        height: 50px;
    }


    .dm-navbar.scrolled .dm-navbar-logo img {

        height: 45px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .dm-navbar-logo img {

        height: 45px;

        max-width: 175px;
    }


    .dm-mobile-menu-inner {

        padding: 22px 20px;
    }


    .dm-mobile-links strong {

        font-size: 25px;
    }
}






/* =========================================================
   DRISTI MUKHOR
   HERO SECTION
   ========================================================= */


/* =========================================================
   HERO BASE
========================================================= */

.dm-hero {

    position: relative;

    width: 100%;

    min-height: 720px;

    padding: 135px 0 80px;

    background:
        var(--dm-ivory, #FFF8E7);

    color:
        var(--dm-primary, #123B6D);

    overflow: hidden;

}


/* =========================================================
   SUBTLE BACKGROUND DECORATION
========================================================= */

.dm-hero::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -330px;
    right: -180px;

    border:
        1px solid
        rgba(7, 151, 178, 0.08);

    border-radius: 50%;

    pointer-events: none;

}


.dm-hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -300px;
    bottom: -330px;

    border:
        1px solid
        rgba(200, 155, 60, 0.10);

    border-radius: 50%;

    pointer-events: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.dm-hero .container {

    position: relative;

    z-index: 5;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.dm-hero-content {

    position: relative;

    z-index: 10;

    max-width: 650px;

    padding-right: 45px;

}


/* =========================================================
   EYEBROW
========================================================= */

.dm-hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 27px;

    color:
        var(--dm-gold, #C89B3C);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    line-height: 1.4;

}


.dm-hero-line {

    display: block;

    width: 42px;

    height: 1px;

    flex-shrink: 0;

    background:
        var(--dm-gold, #C89B3C);

}


/* =========================================================
   HERO TITLE
========================================================= */

.dm-hero-title {

    margin: 0;

    max-width: 650px;

    color:
        var(--dm-primary, #123B6D);

    font-size:
        clamp(
            50px,
            5.4vw,
            78px
        );

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -3px;

}


.dm-hero-title span {

    color:
        var(--dm-turquoise, #0797B2);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-hero-description {

    max-width: 555px;

    margin:
        28px
        0
        0;

    color:
        rgba(
            18,
            59,
            109,
            0.68
        );

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;

}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.dm-hero-actions {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 36px;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.dm-hero-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding:
        0
        25px;

    background:
        var(--dm-gold, #C89B3C);

    border:
        1px solid
        var(--dm-gold, #C89B3C);

    border-radius: 6px;

    color:
        #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 12px 28px
        rgba(
            200,
            155,
            60,
            0.18
        );

    transition:
        all 0.3s ease;

}


.dm-hero-primary i {

    font-size: 15px;

    transition:
        transform 0.3s ease;

}


.dm-hero-primary:hover {

    background:
        var(--dm-primary, #123B6D);

    border-color:
        var(--dm-primary, #123B6D);

    color:
        #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 32px
        rgba(
            18,
            59,
            109,
            0.18
        );

}


.dm-hero-primary:hover i {

    transform:
        translate(
            3px,
            -3px
        );

}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.dm-hero-secondary {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--dm-primary, #123B6D);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.dm-hero-secondary i {

    font-size: 15px;

}


.dm-hero-secondary:hover {

    color:
        var(--dm-turquoise, #0797B2);

    gap: 14px;

}


/* =========================================================
   HERO META
========================================================= */

.dm-hero-meta {

    display: flex;

    align-items: center;

    margin-top: 55px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(
            18,
            59,
            109,
            0.11
        );

}


.dm-hero-meta > div {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-right: 28px;

    margin-right: 28px;

    border-right:
        1px solid
        rgba(
            18,
            59,
            109,
            0.12
        );

}


.dm-hero-meta > div:last-child {

    padding-right: 0;

    margin-right: 0;

    border-right: none;

}


.dm-hero-meta strong {

    color:
        var(--dm-gold, #C89B3C);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


.dm-hero-meta span {

    color:
        rgba(
            18,
            59,
            109,
            0.52
        );

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    white-space: nowrap;

}


/* =========================================================
   HERO VISUAL
   RIGHT SIDE — ORIGINAL STYLE PRESERVED
========================================================= */

.dm-hero-visual {

    position: relative;

    width: 100%;

    height: 620px;

    padding-left: 30px;

    isolation: isolate;

}


/* =========================================================
   IMAGE FRAME
========================================================= */

.dm-hero-image-frame {

    position: absolute;

    top: 35px;

    right: 30px;

    width: 76%;

    height: 540px;

    overflow: hidden;

    border-radius:
        140px
        8px
        140px
        8px;

    z-index: 2;

    box-shadow:
        0 30px 70px
        rgba(
            18,
            59,
            109,
            0.16
        );

}


/* =========================================================
   IMAGE
========================================================= */

.dm-hero-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    animation:
        dmHeroImageReveal
        1.4s
        ease
        forwards;

    transition:
        transform
        1.2s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );

}


.dm-hero-visual:hover
.dm-hero-image {

    transform:
        scale(1.04);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.dm-hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(
                18,
                59,
                109,
                0.02
            ) 45%,
            rgba(
                18,
                59,
                109,
                0.38
            ) 100%
        );

    pointer-events: none;

}


/* =========================================================
   IMAGE REVEAL ANIMATION
========================================================= */

@keyframes dmHeroImageReveal {

    0% {

        opacity: 0;

        transform:
            scale(1.08)
            translateY(20px);

    }

    100% {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }

}


/* =========================================================
   FLIGHT ROUTE
========================================================= */

.dm-flight-route {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 4;

    overflow: visible;

    pointer-events: none;

}


.dm-flight-route path {

    fill: none;

    stroke:
        var(--dm-gold, #C89B3C);

    stroke-width: 1.4;

    stroke-dasharray:
        6 8;

    opacity: 0.75;

    animation:
        dmRouteFlow
        8s
        linear
        infinite;

}


@keyframes dmRouteFlow {

    from {

        stroke-dashoffset: 0;

    }

    to {

        stroke-dashoffset: -140;

    }

}


/* =========================================================
   FLYING PLANE
========================================================= */

.dm-flying-plane {
    position: absolute;
    top: 45px;
    right: 5px;
    z-index: 7;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dm-gold, #C89B3C);
    font-size: 18px;
    transform: rotate(35deg);
    animation: dmPlaneFloat
        4s
        ease-in-out
        infinite;

}


@keyframes dmPlaneFloat {

    0%,
    100% {

        transform:
            translate(0, 0)
            rotate(35deg);

    }

    50% {

        transform:
            translate(-8px, 5px)
            rotate(35deg);

    }

}


/* =========================================================
   LOCATION PIN
========================================================= */

.dm-hero-location-pin {

    position: absolute;

    right: 19%;

    top: 44%;

    z-index: 6;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--dm-white, #FFFFFF);

    background:
        var(--dm-turquoise, #0797B2);

    border:
        3px solid
        rgba(
            255,
            248,
            231,
            0.85
        );

    border-radius: 50%;

    font-size: 12px;

    box-shadow:
        0 8px 20px
        rgba(
            7,
            151,
            178,
            0.3
        );

    animation:
        dmPinPulse
        2.5s
        ease-in-out
        infinite;

}


@keyframes dmPinPulse {

    0%,
    100% {

        box-shadow:
            0 0 0 0
            rgba(
                7,
                151,
                178,
                0.35
            );

    }

    50% {

        box-shadow:
            0 0 0 10px
            rgba(
                7,
                151,
                178,
                0.05
            );

    }

}


/* =========================================================
   DESTINATION CARD
========================================================= */

.dm-hero-location {

    position: absolute;

    left: 5px;

    bottom: 35px;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 285px;

    padding:
        16px
        18px;

    background:
        rgba(
            255,
            248,
            231,
            0.96
        );

    border-left:
        3px solid
        var(--dm-gold, #C89B3C);

    box-shadow:
        0 18px 40px
        rgba(
            18,
            59,
            109,
            0.18
        );

    backdrop-filter:
        blur(10px);

}


.dm-hero-location-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(
            7,
            151,
            178,
            0.10
        );

    color:
        var(--dm-turquoise, #0797B2);

    font-size: 16px;

}


.dm-hero-location div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.dm-hero-location span {

    color:
        var(--dm-gold, #C89B3C);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.dm-hero-location strong {

    color:
        var(--dm-primary, #123B6D);

    font-size: 14px;

    font-weight: 700;

}


.dm-hero-location > i {

    margin-left: auto;

    color:
        var(--dm-primary, #123B6D);

    font-size: 15px;

}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.dm-hero-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.dm-hero-circle-one {

    width: 160px;

    height: 160px;

    right: -45px;

    bottom: 15px;

    border:
        1px solid
        rgba(
            200,
            155,
            60,
            0.45
        );

    z-index: 1;

}


.dm-hero-circle-two {

    width: 90px;

    height: 90px;

    left: -15px;

    top: 10px;

    border:
        1px solid
        rgba(
            7,
            151,
            178,
            0.35
        );

    z-index: 1;

}


/* =========================================================
   GOLD STAR
========================================================= */

.dm-hero-star {

    position: absolute;

    left: 5px;

    top: 150px;

    z-index: 6;

    color:
        var(--dm-gold, #C89B3C);

    font-size: 22px;

    animation:
        dmStarFloat
        3s
        ease-in-out
        infinite;

}


@keyframes dmStarFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-7px)
            rotate(15deg);

    }

}


/* =========================================================
   EDITORIAL NUMBER
========================================================= */

.dm-hero-number {

    position: absolute;

    right: -5px;

    top: 190px;

    z-index: 8;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    writing-mode:
        vertical-rl;

}


.dm-hero-number span:first-child {

    color:
        var(--dm-gold, #C89B3C);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.dm-hero-number span:last-child {

    color:
        #718091;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.dm-hero-number div {

    width: 1px;

    height: 45px;

    background:
        var(--dm-gold, #C89B3C);

}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.dm-hero-scroll {

    position: absolute;

    left: 35px;

    bottom: 25px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 14px;

    color:
        rgba(
            18,
            59,
            109,
            0.50
        );

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.dm-scroll-line {

    position: relative;

    width: 55px;

    height: 1px;

    background:
        rgba(
            18,
            59,
            109,
            0.18
        );

}


.dm-scroll-line span {

    position: absolute;

    left: 0;

    top: 0;

    width: 20px;

    height: 1px;

    background:
        var(--dm-gold, #C89B3C);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-hero {

        min-height: auto;

        padding:
            125px
            0
            75px;

    }


    .dm-hero-content {

        max-width: 720px;

        padding-right: 0;

        margin-bottom: 45px;

    }


    .dm-hero-title {

        font-size:
            clamp(
                48px,
                8vw,
                68px
            );

    }


    .dm-hero-description {

        max-width: 600px;

    }


    .dm-hero-meta {

        margin-top: 42px;

    }


    /* RIGHT SIDE ORIGINAL RESPONSIVE */

    .dm-hero-visual {

        height: 560px;

        padding-left: 0;

    }


    .dm-hero-image-frame {

        right: 30px;

        width: 82%;

        height: 500px;

    }


    .dm-hero-location {

        left: 10px;

        bottom: 25px;

    }


    .dm-hero-number {

        right: 0;

    }


    .dm-hero-scroll {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-hero {

        padding:
            110px
            0
            60px;

    }


    .dm-hero-content {

        text-align: center;

        margin-bottom: 30px;

    }


    .dm-hero-eyebrow {

        justify-content: center;

        font-size: 9px;

        letter-spacing: 2px;

    }


    .dm-hero-line {

        width: 28px;

    }


    .dm-hero-title {

        font-size:
            clamp(
                42px,
                11vw,
                58px
            );

        line-height: 1.04;

        letter-spacing: -2px;

    }


    .dm-hero-description {

        margin-left: auto;

        margin-right: auto;

        font-size: 15px;

        line-height: 1.75;

    }


    .dm-hero-actions {

        justify-content: center;

        flex-wrap: wrap;

        gap: 17px;

        margin-top: 30px;

    }


    .dm-hero-meta {

        justify-content: center;

        flex-wrap: wrap;

        gap: 18px;

        margin-top: 40px;

    }


    .dm-hero-meta > div {

        padding-right: 18px;

        margin-right: 0;

    }


    /* RIGHT SIDE ORIGINAL RESPONSIVE */

    .dm-hero-visual {

        height: 480px;

        margin-top: 20px;

    }


    .dm-hero-image-frame {

        top: 25px;

        right: 15px;

        width: 88%;

        height: 425px;

        border-radius:
            100px
            6px
            100px
            6px;

    }


    .dm-hero-location {

        left: 0;

        bottom: 20px;

        min-width: 235px;

        padding: 13px;

    }


    .dm-hero-location-icon {

        width: 34px;

        height: 34px;

    }


    .dm-hero-number {

        display: none;

    }


    .dm-hero-star {

        left: 0;

        top: 110px;

    }


    .dm-hero-circle-two {

        width: 60px;

        height: 60px;

    }


    .dm-flying-plane {

        right: 5px;

        top: 50px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-hero {

        padding:
            100px
            0
            50px;

    }


    .dm-hero-title {

        font-size: 40px;

        letter-spacing: -1.5px;

    }


    .dm-hero-description {

        font-size: 14px;

    }


    .dm-hero-actions {

        flex-direction: column;

        align-items: center;

    }


    .dm-hero-meta {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        text-align: left;

        width: 100%;

    }


    .dm-hero-meta > div {

        border-right: none;

        padding: 0;

    }


    .dm-hero-meta > div:last-child {

        grid-column:
            1 / -1;

    }


    /* RIGHT SIDE ORIGINAL RESPONSIVE */

    .dm-hero-visual {

        height: 420px;

    }


    .dm-hero-image-frame {

        height: 365px;

        border-radius:
            75px
            5px
            75px
            5px;

    }


    .dm-hero-location {

        min-width: 210px;

    }


    .dm-hero-location strong {

        font-size: 12px;

    }


    .dm-flight-route {

        opacity: 0.7;

    }

}








/* ========================================================================================================================================================= */


/* =========================================================
   DRISTI MUKHOR
   ABOUT / INTRO SECTION
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.dm-about-intro {

    position: relative;

    padding:
        120px 0
        110px;

    background:
        var(--dm-white);

    overflow: hidden;

}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.dm-about-intro .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   MAIN INTRO GRID
========================================================= */

.dm-about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 90px;

    align-items: center;

}


/* =========================================================
   LEFT — EDITORIAL HEADING
========================================================= */

.dm-about-heading {

    position: relative;

    min-width: 0;

}


/* =========================================================
   EYEBROW
========================================================= */

.dm-about-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color:
        var(--dm-gold);

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 3px;

}


.dm-about-line {

    display: block;

    width: 42px;

    height: 1px;

    flex-shrink: 0;

    background:
        var(--dm-gold);

}


/* =========================================================
   MAIN HEADING
========================================================= */

.dm-about-heading h2 {

    max-width: 600px;

    margin: 0;

    color:
        var(--dm-primary);

    font-size: 64px;

    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -2.8px;

}


.dm-about-heading h2 span {

    display: block;

    color:
        var(--dm-turquoise);

}


/* =========================================================
   EDITORIAL NUMBER
========================================================= */

.dm-about-number {

    margin-top: 45px;

    color:
        rgba(
            18,
            59,
            109,
            0.12
        );

    font-size: 72px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -5px;

}


/* =========================================================
   RIGHT — CONTENT
========================================================= */

.dm-about-content {

    max-width: 560px;

    min-width: 0;

}


/* =========================================================
   LEAD TEXT
========================================================= */

.dm-about-lead {

    margin:
        0 0 24px;

    color:
        var(--dm-primary);

    font-size: 22px;

    line-height: 1.5;

    font-weight: 600;

}


/* =========================================================
   BODY TEXT
========================================================= */

.dm-about-content > p:not(.dm-about-lead) {

    margin:
        0 0 16px;

    color:
        var(--dm-text-secondary);

    font-size: 15px;

    line-height: 1.9;

}


.dm-about-content > p:last-of-type {

    margin-bottom: 0;

}


/* =========================================================
   ABOUT LINK
========================================================= */

.dm-about-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding-bottom: 8px;

    border-bottom:
        1px solid
        var(--dm-gold);

    color:
        var(--dm-primary);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 800;

    text-decoration: none;

    transition:
        color var(--dm-transition),
        border-color var(--dm-transition);

}


.dm-about-link i {

    color:
        var(--dm-gold);

    font-size: 14px;

    transition:
        transform var(--dm-transition);

}


.dm-about-link:hover {

    color:
        var(--dm-turquoise);

    border-color:
        var(--dm-turquoise);

}


.dm-about-link:hover i {

    transform:
        translate(
            4px,
            -4px
        );

}


/* =========================================================
   TRAVEL PILLARS
========================================================= */

.dm-about-pillars {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 95px;

    border-top:
        1px solid
        var(--dm-border-primary);

}


/* =========================================================
   INDIVIDUAL PILLAR
========================================================= */

.dm-about-pillar {

    display: grid;

    grid-template-columns:
        35px minmax(0, 1fr);

    gap: 18px;

    min-width: 0;

    padding:
        34px 30px 10px 0;

    border-right:
        1px solid
        var(--dm-border-primary);

}


.dm-about-pillar:not(:first-child) {

    padding-left: 30px;

}


.dm-about-pillar:last-child {

    border-right: none;

}


/* =========================================================
   PILLAR NUMBER
========================================================= */

.dm-pillar-number {

    color:
        var(--dm-gold);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   PILLAR CONTENT
========================================================= */

.dm-pillar-content {

    min-width: 0;

}


.dm-pillar-content i {

    display: block;

    margin-bottom: 15px;

    color:
        var(--dm-turquoise);

    font-size: 25px;

}


/* =========================================================
   PILLAR HEADING
========================================================= */

.dm-about-pillar h3 {

    margin:
        0 0 8px;

    color:
        var(--dm-primary);

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

}


/* =========================================================
   PILLAR DESCRIPTION
========================================================= */

.dm-about-pillar p {

    max-width: 260px;

    margin: 0;

    color:
        var(--dm-text-muted);

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.dm-about-decor-circle {

    position: absolute;

    border-radius:
        var(--dm-radius-round);

    pointer-events: none;

    z-index: 1;

}


.dm-about-decor-circle-one {

    width: 430px;

    height: 430px;

    right: -210px;

    top: 50%;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(
            7,
            151,
            178,
            0.07
        );

}


.dm-about-decor-circle-two {

    width: 270px;

    height: 270px;

    right: -115px;

    top: 50%;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(
            200,
            155,
            60,
            0.10
        );

}


/* =========================================================
   LARGE LAPTOP
   1200px — 1399px
========================================================= */

@media (max-width: 1399px) {

    .dm-about-grid {

        gap: 70px;

    }


    .dm-about-heading h2 {

        font-size: 60px;

        letter-spacing: -2.5px;

    }


    .dm-about-lead {

        font-size: 21px;

    }

}


/* =========================================================
   LAPTOP
   992px — 1199px
========================================================= */

@media (max-width: 1199px) {

    .dm-about-intro {

        padding:
            105px 0
            95px;

    }


    .dm-about-grid {

        gap: 55px;

    }


    .dm-about-heading h2 {

        font-size: 54px;

        line-height: 1.06;

        letter-spacing: -2.1px;

    }


    .dm-about-lead {

        font-size: 20px;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        font-size: 14.5px;

        line-height: 1.85;

    }


    .dm-about-pillars {

        margin-top: 80px;

    }


    .dm-about-pillar {

        padding-right: 20px;

    }


    .dm-about-pillar:not(:first-child) {

        padding-left: 20px;

    }

}


/* =========================================================
   TABLET
   768px — 991px
========================================================= */

@media (max-width: 991px) {

    .dm-about-intro {

        padding:
            90px 0;

    }


    .dm-about-grid {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .dm-about-heading h2 {

        max-width: 700px;

        font-size: 52px;

        line-height: 1.06;

        letter-spacing: -2px;

    }


    .dm-about-number {

        position: absolute;

        right: 0;

        bottom: -10px;

        margin: 0;

        font-size: 65px;

    }


    .dm-about-content {

        max-width: 720px;

    }


    .dm-about-lead {

        max-width: 650px;

        font-size: 20px;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        max-width: 720px;

        font-size: 15px;

        line-height: 1.85;

    }


    .dm-about-pillars {

        margin-top: 70px;

    }


    .dm-about-pillar {

        grid-template-columns:
            28px minmax(0, 1fr);

        gap: 14px;

        padding-right: 18px;

    }


    .dm-about-pillar:not(:first-child) {

        padding-left: 18px;

    }


    .dm-about-pillar h3 {

        font-size: 17px;

    }


    .dm-about-pillar p {

        font-size: 12px;

    }

}


/* =========================================================
   MOBILE
   576px — 767px
========================================================= */

@media (max-width: 767px) {

    .dm-about-intro {

        padding:
            75px 0
            70px;

    }


    .dm-about-grid {

        gap: 35px;

    }


    .dm-about-eyebrow {

        gap: 10px;

        margin-bottom: 20px;

        font-size: 8px;

        letter-spacing: 2px;

    }


    .dm-about-line {

        width: 32px;

    }


    .dm-about-heading h2 {

        max-width: 100%;

        font-size: 42px;

        line-height: 1.07;

        letter-spacing: -1.7px;

    }


    .dm-about-number {

        display: none;

    }


    .dm-about-lead {

        margin-bottom: 20px;

        font-size: 19px;

        line-height: 1.5;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        font-size: 14px;

        line-height: 1.8;

    }


    .dm-about-link {

        margin-top: 26px;

        font-size: 11px;

    }


    .dm-about-pillars {

        grid-template-columns:
            1fr;

        margin-top: 60px;

    }


    .dm-about-pillar,
    .dm-about-pillar:not(:first-child) {

        grid-template-columns:
            32px minmax(0, 1fr);

        gap: 15px;

        padding:
            25px 0;

        border-right: none;

        border-bottom:
            1px solid
            var(--dm-border-primary);

    }


    .dm-about-pillar:last-child {

        border-bottom: none;

    }


    .dm-about-pillar h3 {

        margin-bottom: 7px;

        font-size: 17px;

    }


    .dm-about-pillar p {

        max-width: 100%;

        font-size: 13px;

        line-height: 1.7;

    }


    .dm-pillar-number {

        font-size: 9px;

    }


    .dm-pillar-content i {

        margin-bottom: 12px;

        font-size: 23px;

    }


    .dm-about-decor-circle-one {

        width: 300px;

        height: 300px;

        right: -190px;

    }


    .dm-about-decor-circle-two {

        width: 190px;

        height: 190px;

        right: -120px;

    }

}


/* =========================================================
   SMALL MOBILE
   481px — 575px
========================================================= */

@media (max-width: 575px) {

    .dm-about-intro {

        padding:
            70px 0
            65px;

    }


    .dm-about-heading h2 {

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -1.4px;

    }


    .dm-about-lead {

        font-size: 18px;

        line-height: 1.55;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        font-size: 13.5px;

        line-height: 1.8;

    }


    .dm-about-pillars {

        margin-top: 55px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
   360px — 480px
========================================================= */

@media (max-width: 480px) {

    .dm-about-intro {

        padding:
            65px 0
            60px;

    }


    .dm-about-eyebrow {

        font-size: 8px;

        letter-spacing: 1.7px;

    }


    .dm-about-heading h2 {

        font-size: 35px;

        line-height: 1.09;

        letter-spacing: -1.1px;

    }


    .dm-about-lead {

        font-size: 17px;

        line-height: 1.55;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        font-size: 13px;

        line-height: 1.8;

    }


    .dm-about-link {

        font-size: 11px;

    }


    .dm-about-pillar h3 {

        font-size: 16px;

    }


    .dm-about-pillar p {

        font-size: 12px;

        line-height: 1.7;

    }


    .dm-about-decor-circle-one {

        width: 240px;

        height: 240px;

        right: -165px;

    }


    .dm-about-decor-circle-two {

        width: 150px;

        height: 150px;

        right: -105px;

    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   359px and below
========================================================= */

@media (max-width: 359px) {

    .dm-about-intro {

        padding:
            60px 0
            55px;

    }


    .dm-about-heading h2 {

        font-size: 32px;

        letter-spacing: -0.9px;

    }


    .dm-about-lead {

        font-size: 16px;

    }


    .dm-about-content > p:not(.dm-about-lead) {

        font-size: 12.5px;

    }


    .dm-about-pillar h3 {

        font-size: 15px;

    }


    .dm-about-pillar p {

        font-size: 11.5px;

    }

}



/* ============================================================================================= */


/* =========================================================
   EXPLORE INDIA
========================================================= */

.dm-explore-section {

    position: relative;

    padding: 120px 0;

    background: var(--dm-ivory);

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.dm-explore-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 55px;

}


.dm-explore-heading {

    max-width: 650px;

}


.dm-section-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--dm-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.dm-section-line {

    width: 38px;

    height: 1px;

    background: var(--dm-gold);

}


.dm-explore-heading h2 {

    margin: 0;

    color: var(--dm-primary);

    font-size: 55px;

    line-height: 1.06;

    font-weight: 700;

    letter-spacing: -2px;

}


.dm-explore-heading h2 span {

    display: block;

    color: var(--dm-turquoise);

}


/* =========================================================
   INTRO
========================================================= */

.dm-explore-intro {

    max-width: 360px;

    padding-bottom: 4px;

}


.dm-explore-intro p {

    margin: 0 0 18px;

    color: var(--dm-text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


.dm-explore-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--dm-primary);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid var(--dm-gold);

    padding-bottom: 5px;

    transition: var(--dm-transition);

}


.dm-explore-link i {

    color: var(--dm-gold);

    transition: var(--dm-transition);

}


.dm-explore-link:hover {

    color: var(--dm-turquoise);

}


.dm-explore-link:hover i {

    transform: translate(3px, -3px);

}


/* =========================================================
   GRID
========================================================= */

.dm-explore-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr
        .85fr;

    grid-template-rows:
        280px
        280px;

    gap: 18px;

}


/* =========================================================
   CARD
========================================================= */

.dm-explore-card {

    position: relative;

    display: block;

    overflow: hidden;

    min-height: 280px;

    text-decoration: none;

    background: var(--dm-primary);

    border-radius: var(--dm-radius-lg);

}


.dm-explore-card-large {

    grid-row: span 2;

}


.dm-explore-card-wide {

    grid-column: span 2;

}


/* =========================================================
   IMAGE
========================================================= */

.dm-explore-image {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.dm-explore-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1s
        cubic-bezier(.2,.7,.2,1);

}


.dm-explore-card:hover
.dm-explore-image img {

    transform: scale(1.07);

}


/* =========================================================
   OVERLAY
========================================================= */

.dm-explore-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18,59,109,0.04) 25%,
            rgba(18,59,109,0.78) 100%
        );

    z-index: 1;

    transition: var(--dm-transition-slow);

}


.dm-explore-card:hover
.dm-explore-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(18,59,109,0.08) 20%,
            rgba(18,59,109,0.88) 100%
        );

}


/* =========================================================
   CARD CONTENT
========================================================= */

.dm-explore-card-content {

    position: absolute;

    left: 24px;

    right: 24px;

    bottom: 22px;

    z-index: 3;

    display: grid;

    grid-template-columns:
        35px
        1fr
        38px;

    align-items: end;

    gap: 12px;

}


.dm-explore-number {

    align-self: start;

    padding-top: 3px;

    color:
        rgba(255,255,255,0.65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

}


.dm-explore-category {

    display: block;

    margin-bottom: 7px;

    color: var(--dm-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.dm-explore-card h3 {

    margin: 0;

    color: var(--dm-white);

    font-size: 24px;

    line-height: 1.15;

    font-weight: 700;

}


.dm-explore-card p {

    max-width: 300px;

    margin: 8px 0 0;

    color:
        rgba(255,255,255,0.78);

    font-size: 11px;

    line-height: 1.5;

}


.dm-explore-arrow {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--dm-primary);

    background: var(--dm-white);

    border-radius: 50%;

    transition: var(--dm-transition);

}


.dm-explore-card:hover
.dm-explore-arrow {

    color: var(--dm-white);

    background: var(--dm-gold);

    transform:
        translate(3px,-3px);

}


/* =========================================================
   LARGE CARD
========================================================= */

.dm-explore-card-large
.dm-explore-card-content {

    bottom: 28px;

}


.dm-explore-card-large h3 {

    font-size: 30px;

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-explore-section {

        padding: 105px 0;

    }


    .dm-explore-heading h2 {

        font-size: 48px;

    }


    .dm-explore-grid {

        grid-template-rows:
            260px
            260px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-explore-section {

        padding: 90px 0;

    }


    .dm-explore-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        margin-bottom: 40px;

    }


    .dm-explore-heading h2 {

        font-size: 45px;

    }


    .dm-explore-intro {

        max-width: 550px;

    }


    .dm-explore-grid {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            360px
            260px
            260px;

    }


    .dm-explore-card-large {

        grid-column: span 2;

        grid-row: span 1;

    }


    .dm-explore-card-wide {

        grid-column: span 2;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-explore-section {

        padding: 75px 0;

    }


    .dm-explore-header {

        margin-bottom: 32px;

    }


    .dm-section-eyebrow {

        margin-bottom: 18px;

        font-size: 8px;

        letter-spacing: 2px;

    }


    .dm-section-line {

        width: 30px;

    }


    .dm-explore-heading h2 {

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -1.3px;

    }


    .dm-explore-intro p {

        font-size: 13px;

        line-height: 1.75;

    }


    .dm-explore-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 14px;

    }


    .dm-explore-card,
    .dm-explore-card-large,
    .dm-explore-card-wide {

        grid-column: auto;

        grid-row: auto;

        min-height: 360px;

    }


    .dm-explore-card-content {

        left: 18px;

        right: 18px;

        bottom: 18px;

    }


    .dm-explore-card h3,
    .dm-explore-card-large h3 {

        font-size: 23px;

    }


    .dm-explore-card p {

        font-size: 11px;

    }


    .dm-explore-arrow {

        width: 34px;

        height: 34px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-explore-section {

        padding: 65px 0;

    }


    .dm-explore-heading h2 {

        font-size: 34px;

    }


    .dm-explore-card,
    .dm-explore-card-large,
    .dm-explore-card-wide {

        min-height: 320px;

    }


    .dm-explore-card-content {

        grid-template-columns:
            28px
            1fr
            34px;

        gap: 9px;

    }


    .dm-explore-category {

        font-size: 7px;

        letter-spacing: 1.5px;

    }


    .dm-explore-card h3,
    .dm-explore-card-large h3 {

        font-size: 21px;

    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 359px) {

    .dm-explore-heading h2 {

        font-size: 31px;

    }


    .dm-explore-card,
    .dm-explore-card-large,
    .dm-explore-card-wide {

        min-height: 290px;

    }

}
/* ==================================================================================================================================== */




/* =========================================================
   ABOUT SECTION
========================================================= */

.dm-about-section {

    position: relative;

    padding: 110px 0;

    background: var(--dm-white);

    overflow: hidden;

}


/* =========================================================
   CONTENT
========================================================= */

.dm-about-content {

    max-width: 560px;

    padding-right: 70px;

}


/* =========================================================
   TITLE
========================================================= */

.dm-about-title {

    margin: 0 0 27px;

    color: var(--dm-primary);

    font-size: 52px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;

}


.dm-about-title span {

    color: var(--dm-turquoise);

}


/* =========================================================
   TEXT
========================================================= */

.dm-about-text {

    max-width: 500px;

    margin: 0 0 16px;

    color: var(--dm-text-secondary);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   BUTTON
========================================================= */

.dm-about-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 17px;

    padding-bottom: 7px;

    color: var(--dm-primary);

    border-bottom:
        1px solid
        var(--dm-gold);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: var(--dm-transition);

}


.dm-about-button i {

    color: var(--dm-gold);

    transition: var(--dm-transition);

}


.dm-about-button:hover {

    color: var(--dm-turquoise);

}


.dm-about-button:hover i {

    transform:
        translate(3px,-3px);

}


/* =========================================================
   VISUAL
========================================================= */

.dm-about-visual {

    position: relative;

    min-height: 570px;

    width: 100%;

}


/* =========================================================
   IMAGE
========================================================= */

.dm-about-image-wrap {

    position: absolute;

    top: 0;

    right: 50px;

    width: 72%;

    height: 530px;

    overflow: hidden;

    border-radius:
        120px
        8px
        120px
        8px;

    box-shadow:
        0 25px 60px
        rgba(
            18,
            59,
            109,
            .13
        );

    z-index: 2;

}


.dm-about-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.1s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );

}


.dm-about-visual:hover
.dm-about-image {

    transform: scale(1.045);

}


/* =========================================================
   ROUTE
========================================================= */

.dm-about-route {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 4;

    pointer-events: none;

}


.dm-about-route path {

    fill: none;

    stroke:
        var(--dm-gold);

    stroke-width: 1.3;

    stroke-dasharray:
        6 8;

    opacity: .7;

    animation:
        dmAboutRoute 8s
        linear infinite;

}


@keyframes dmAboutRoute {

    from {

        stroke-dashoffset: 0;

    }

    to {

        stroke-dashoffset: -150;

    }

}


/* =========================================================
   FLOATING CARD
========================================================= */

.dm-about-card {

    position: absolute;

    left: 0;

    bottom: 30px;

    z-index: 7;

    width: 260px;

    padding: 20px 22px;

    background:
        rgba(
            255,
            248,
            231,
            .96
        );

    border-left:
        3px solid
        var(--dm-gold);

    box-shadow:
        0 18px 40px
        rgba(
            18,
            59,
            109,
            .14
        );

    backdrop-filter:
        blur(10px);

}


.dm-about-card span {

    display: block;

    margin-bottom: 9px;

    color: var(--dm-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.dm-about-card strong {

    display: block;

    color: var(--dm-primary);

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;

}


/* =========================================================
   NUMBER
========================================================= */

.dm-about-number {

    position: absolute;

    top: 130px;

    right: 0;

    z-index: 8;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    writing-mode: vertical-rl;

}


.dm-about-number span:first-child {

    color: var(--dm-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.dm-about-number span:last-child {

    color: var(--dm-text-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.dm-about-number div {

    width: 1px;

    height: 45px;

    background:
        var(--dm-gold);

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-about-section {

        padding: 100px 0;

    }


    .dm-about-content {

        padding-right: 45px;

    }


    .dm-about-title {

        font-size: 47px;

    }


    .dm-about-image-wrap {

        right: 35px;

        height: 500px;

    }


    .dm-about-visual {

        min-height: 540px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-about-section {

        padding: 85px 0;

    }


    .dm-about-content {

        max-width: 700px;

        padding-right: 0;

        margin-bottom: 60px;

    }


    .dm-about-title {

        font-size: 45px;

    }


    .dm-about-visual {

        min-height: 550px;

    }


    .dm-about-image-wrap {

        width: 78%;

        height: 510px;

        right: 30px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-about-section {

        padding: 70px 0;

    }


    .dm-about-content {

        margin-bottom: 50px;

    }


    .dm-about-title {

        margin-bottom: 22px;

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -1.3px;

    }


    .dm-about-text {

        font-size: 13px;

        line-height: 1.8;

    }


    .dm-about-button {

        font-size: 11px;

    }


    .dm-about-visual {

        min-height: 470px;

    }


    .dm-about-image-wrap {

        right: 15px;

        width: 88%;

        height: 440px;

        border-radius:
            85px
            6px
            85px
            6px;

    }


    .dm-about-card {

        left: 0;

        bottom: 18px;

        width: 225px;

        padding: 16px 18px;

    }


    .dm-about-card strong {

        font-size: 14px;

    }


    .dm-about-number {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-about-section {

        padding: 60px 0;

    }


    .dm-about-title {

        font-size: 34px;

    }


    .dm-about-text {

        font-size: 12.5px;

    }


    .dm-about-visual {

        min-height: 410px;

    }


    .dm-about-image-wrap {

        height: 380px;

        border-radius:
            70px
            5px
            70px
            5px;

    }


    .dm-about-card {

        width: 205px;

        padding: 14px 16px;

    }


    .dm-about-card span {

        font-size: 7px;

    }


    .dm-about-card strong {

        font-size: 13px;

    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 359px) {

    .dm-about-title {

        font-size: 31px;

    }


    .dm-about-visual {

        min-height: 380px;

    }


    .dm-about-image-wrap {

        height: 350px;

    }

}
/* ============================================================================================================================================================= */




/* =========================================================
   JOURNAL SECTION
========================================================= */

.dm-journal-section {

    position: relative;

    padding: 120px 0 130px;

    background:
        var(--dm-white);

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.dm-journal-header {

    margin-bottom: 65px;
}


/* =========================================================
   EYEBROW
========================================================= */

.dm-journal-eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

    color:
        var(--dm-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.dm-journal-line {

    width: 42px;

    height: 1px;

    background:
        var(--dm-gold);

    display: block;
}


/* =========================================================
   HEADING ROW
========================================================= */

.dm-journal-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;
}


.dm-journal-heading {

    max-width: 720px;
}


.dm-journal-heading h2 {

    margin: 0;

    color:
        var(--dm-primary);

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -2.5px;
}


.dm-journal-heading h2 span {

    display: block;

    color:
        var(--dm-turquoise);

    font-weight: 600;
}


/* =========================================================
   INTRO
========================================================= */

.dm-journal-intro {

    max-width: 320px;

    padding-bottom: 4px;
}


.dm-journal-intro p {

    margin: 0 0 24px;

    color:
        var(--dm-text-secondary);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   VIEW ALL
========================================================= */

.dm-journal-view-all {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--dm-primary);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    border-bottom:
        1px solid
        var(--dm-primary);

    padding-bottom: 7px;

    transition:
        var(--dm-transition);
}


.dm-journal-view-all i {

    font-size: 14px;

    transition:
        var(--dm-transition);
}


.dm-journal-view-all:hover {

    color:
        var(--dm-turquoise);

    border-color:
        var(--dm-turquoise);
}


.dm-journal-view-all:hover i {

    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   JOURNAL GRID
========================================================= */

.dm-journal-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr;

    gap: 28px;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.dm-journal-featured {

    min-width: 0;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.dm-journal-image {

    position: relative;

    display: block;

    width: 100%;

    height: 430px;

    overflow: hidden;

    text-decoration: none;

    background:
        var(--dm-primary-light);
}


.dm-journal-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform
        1s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.dm-journal-image:hover img {

    transform:
        scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.dm-journal-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18,59,109,0.02) 35%,
            rgba(18,59,109,0.60) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CATEGORY
========================================================= */

.dm-journal-category {

    position: absolute;

    left: 22px;

    top: 22px;

    padding:
        8px
        12px;

    background:
        var(--dm-gold);

    color:
        var(--dm-white);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   IMAGE ARROW
========================================================= */

.dm-journal-arrow {

    position: absolute;

    right: 22px;

    bottom: 22px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.92
        );

    color:
        var(--dm-primary);

    font-size: 16px;

    transition:
        var(--dm-transition);
}


.dm-journal-image:hover
.dm-journal-arrow {

    background:
        var(--dm-gold);

    color:
        var(--dm-white);

    transform:
        rotate(45deg);
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.dm-journal-featured-content {

    padding-top: 25px;
}


/* =========================================================
   META
========================================================= */

.dm-journal-meta {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    color:
        var(--dm-text-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.dm-journal-meta span:first-child {

    color:
        var(--dm-gold);
}


/* =========================================================
   TITLES
========================================================= */

.dm-journal-featured-content h3 {

    margin: 0 0 14px;

    max-width: 650px;

    color:
        var(--dm-primary);

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.dm-journal-card-content h3 {

    margin: 0 0 12px;

    color:
        var(--dm-primary);

    font-size: 21px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.3px;

    transition:
        var(--dm-transition);
}


.dm-journal-card:hover
.dm-journal-card-content h3 {

    color:
        var(--dm-turquoise);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-journal-featured-content p {

    max-width: 620px;

    margin: 0 0 18px;

    color:
        var(--dm-text-secondary);

    font-size: 14px;

    line-height: 1.75;
}


.dm-journal-card-content p {

    margin: 0 0 18px;

    color:
        var(--dm-text-secondary);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   READ STORY
========================================================= */

.dm-journal-read {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--dm-primary);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        var(--dm-transition);
}


.dm-journal-read i {

    transition:
        var(--dm-transition);
}


.dm-journal-read:hover {

    color:
        var(--dm-turquoise);
}


.dm-journal-read:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   SMALL JOURNAL CARDS
========================================================= */

.dm-journal-card {

    min-width: 0;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.dm-journal-card-image {

    position: relative;

    display: block;

    height: 260px;

    overflow: hidden;

    text-decoration: none;

    background:
        var(--dm-primary-light);
}


.dm-journal-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform
        0.9s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.dm-journal-card:hover
.dm-journal-card-image img {

    transform:
        scale(1.06);
}


/* =========================================================
   CARD CATEGORY
========================================================= */

.dm-journal-card-category {

    position: absolute;

    left: 16px;

    top: 16px;

    padding:
        7px
        10px;

    background:
        rgba(
            255,
            248,
            231,
            0.95
        );

    color:
        var(--dm-primary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


/* =========================================================
   CARD ARROW
========================================================= */

.dm-journal-card-arrow {

    position: absolute;

    right: 16px;

    bottom: 16px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.92
        );

    color:
        var(--dm-primary);

    transition:
        var(--dm-transition);
}


.dm-journal-card:hover
.dm-journal-card-arrow {

    background:
        var(--dm-gold);

    color:
        var(--dm-white);

    transform:
        rotate(45deg);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.dm-journal-card-content {

    padding-top: 22px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.dm-journal-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 65px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--dm-border);
}


.dm-journal-bottom > span {

    color:
        var(--dm-text-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.dm-journal-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color:
        var(--dm-primary);

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition:
        var(--dm-transition);
}


.dm-journal-bottom a i {

    color:
        var(--dm-gold);

    transition:
        var(--dm-transition);
}


.dm-journal-bottom a:hover {

    color:
        var(--dm-turquoise);
}


.dm-journal-bottom a:hover i {

    transform:
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .dm-journal-section {

        padding:
            105px
            0
            115px;
    }


    .dm-journal-heading h2 {

        font-size:
            clamp(
                40px,
                5vw,
                62px
            );
    }


    .dm-journal-grid {

        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 22px;
    }


    .dm-journal-image {

        height: 390px;
    }


    .dm-journal-card-image {

        height: 235px;
    }


    .dm-journal-featured-content h3 {

        font-size: 27px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-journal-section {

        padding:
            90px
            0
            100px;
    }


    .dm-journal-header {

        margin-bottom: 50px;
    }


    .dm-journal-heading-row {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 25px;
    }


    .dm-journal-heading h2 {

        font-size:
            clamp(
                40px,
                7vw,
                58px
            );

        letter-spacing:
            -1.8px;
    }


    .dm-journal-intro {

        max-width:
            500px;
    }


    .dm-journal-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 35px 24px;
    }


    .dm-journal-featured {

        grid-column:
            1 / -1;
    }


    .dm-journal-image {

        height: 450px;
    }


    .dm-journal-card-image {

        height: 300px;
    }


    .dm-journal-featured-content h3 {

        font-size:
            29px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-journal-section {

        padding:
            75px
            0
            80px;
    }


    .dm-journal-header {

        margin-bottom:
            40px;
    }


    .dm-journal-eyebrow {

        font-size:
            9px;

        letter-spacing:
            2.2px;
    }


    .dm-journal-line {

        width:
            30px;
    }


    .dm-journal-heading h2 {

        font-size:
            clamp(
                36px,
                10vw,
                48px
            );

        line-height:
            1.05;

        letter-spacing:
            -1.5px;
    }


    .dm-journal-intro p {

        font-size:
            14px;

        line-height:
            1.75;
    }


    .dm-journal-grid {

        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .dm-journal-image {

        height:
            380px;
    }


    .dm-journal-card-image {

        height:
            300px;
    }


    .dm-journal-featured-content {

        padding-top:
            20px;
    }


    .dm-journal-featured-content h3 {

        font-size:
            25px;

        line-height:
            1.25;
    }


    .dm-journal-featured-content p {

        font-size:
            13px;
    }


    .dm-journal-card-content {

        padding-top:
            18px;
    }


    .dm-journal-card-content h3 {

        font-size:
            20px;
    }


    .dm-journal-bottom {

        margin-top:
            50px;

        gap:
            20px;

        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-journal-section {

        padding:
            65px
            0
            70px;
    }


    .dm-journal-heading h2 {

        font-size:
            34px;
    }


    .dm-journal-image {

        height:
            330px;
    }


    .dm-journal-card-image {

        height:
            250px;
    }


    .dm-journal-category {

        left:
            15px;

        top:
            15px;
    }


    .dm-journal-arrow {

        right:
            15px;

        bottom:
            15px;

        width:
            40px;

        height:
            40px;
    }


    .dm-journal-card-arrow {

        right:
            15px;

        bottom:
            15px;
    }


    .dm-journal-featured-content h3 {

        font-size:
            23px;
    }


    .dm-journal-meta {

        font-size:
            8px;

        letter-spacing:
            1.2px;
    }


    .dm-journal-bottom > span {

        font-size:
            8px;
    }

}











/* =========================================================
   FOOTER
========================================================= */

.dm-footer {

    position: relative;

    background:
        var(--dm-primary);

    color:
        var(--dm-white);

    overflow: hidden;

}


/* =========================================================
   MAIN FOOTER
========================================================= */

.dm-footer-main {

    padding:
        90px
        0
        80px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

}


/* =========================================================
   BRAND
========================================================= */

.dm-footer-brand {

    max-width:
        390px;

}


.dm-footer-logo {

    display:
        inline-flex;

    align-items:
        center;

    margin-bottom:
        25px;

}


.dm-footer-logo img {

    width:
        150px;

    height:
        auto;

    display:
        block;

}


.dm-footer-description {

    max-width:
        360px;

    margin:
        0
        0
        25px;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size:
        13px;

    line-height:
        1.8;

}


/* =========================================================
   SOCIALS
========================================================= */

.dm-footer-socials {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

}


.dm-footer-socials a {

    width:
        36px;

    height:
        36px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.18
        );

    border-radius:
        50%;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size:
        13px;

    text-decoration:
        none;

    transition:
        var(--dm-transition);

}


.dm-footer-socials a:hover {

    color:
        var(--dm-white);

    background:
        var(--dm-turquoise);

    border-color:
        var(--dm-turquoise);

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.dm-footer-column {

    display:
        flex;

    flex-direction:
        column;

}


.dm-footer-title {

    display:
        block;

    margin-bottom:
        23px;

    color:
        var(--dm-gold);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

}


/* =========================================================
   LINKS
========================================================= */

.dm-footer-column ul {

    list-style:
        none;

    padding:
        0;

    margin:
        0;

}


.dm-footer-column li {

    margin-bottom:
        12px;

}


.dm-footer-column li a {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size:
        13px;

    text-decoration:
        none;

    transition:
        var(--dm-transition);

}


.dm-footer-column li a:hover {

    color:
        var(--dm-white);

    padding-left:
        4px;

}


/* =========================================================
   CONTACT
========================================================= */

.dm-footer-contact p {

    max-width:
        250px;

    margin:
        0
        0
        18px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size:
        13px;

    line-height:
        1.7;

}


.dm-footer-contact-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--dm-white);

    font-size:
        13px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        var(--dm-transition);

}


.dm-footer-contact-link i {

    color:
        var(--dm-gold);

    transition:
        var(--dm-transition);

}


.dm-footer-contact-link:hover {

    color:
        var(--dm-turquoise);

}


.dm-footer-contact-link:hover i {

    transform:
        translate(
            3px,
            -3px
        );

}


/* =========================================================
   STATEMENT
========================================================= */

.dm-footer-statement {

    position:
        relative;

    padding:
        75px
        0
        80px;

    background:
        var(--dm-primary-dark);

}


.dm-footer-statement-inner {

    position:
        relative;

    min-height:
        220px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

}


.dm-footer-statement-small {

    margin-bottom:
        17px;

    color:
        var(--dm-gold);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        3px;

}


.dm-footer-statement h2 {

    max-width:
        750px;

    margin:
        0;

    color:
        var(--dm-white);

    font-size:
        clamp(
            48px,
            7vw,
            92px
        );

    line-height:
        .95;

    font-weight:
        700;

    letter-spacing:
        -4px;

}


.dm-footer-statement h2 span {

    display:
        block;

    color:
        var(--dm-turquoise);

    font-weight:
        500;

}


/* =========================================================
   PLANE
========================================================= */

.dm-footer-plane {

    position:
        absolute;

    right:
        8%;

    top:
        50%;

    width:
        100px;

    height:
        100px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            200,
            155,
            60,
            .35
        );

    border-radius:
        50%;

    color:
        var(--dm-gold);

    font-size:
        25px;

    transform:
        rotate(
            -15deg
        );

    animation:
        dmFooterPlaneFloat
        4s
        ease-in-out
        infinite;

}


@keyframes dmFooterPlaneFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-15deg);

    }

    50% {

        transform:
            translateY(-8px)
            rotate(-8deg);

    }

}


/* =========================================================
   BOTTOM
========================================================= */

.dm-footer-bottom {

    padding:
        20px
        0;

    background:
        var(--dm-primary-dark);

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

}


.dm-footer-bottom-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}


.dm-footer-bottom-inner > span {

    color:
        rgba(
            255,
            255,
            255,
            .45
        );

    font-size:
        9px;

    line-height:
        1.5;

}


.dm-footer-legal {

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

}


.dm-footer-legal a {

    color:
        rgba(
            255,
            255,
            255,
            .45
        );

    font-size:
        9px;

    text-decoration:
        none;

    transition:
        var(--dm-transition);

}


.dm-footer-legal a:hover {

    color:
        var(--dm-white);

}


.dm-footer-made {

    text-align:
        right;

}


.dm-footer-made strong {

    color:
        var(--dm-gold);

    font-weight:
        700;

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-footer-main {

        padding:
            80px
            0
            70px;

    }


    .dm-footer-statement h2 {

        font-size:
            clamp(
                45px,
                7vw,
                78px
            );

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-footer-main {

        padding:
            70px
            0;

    }


    .dm-footer-brand {

        max-width:
            500px;

    }


    .dm-footer-description {

        max-width:
            450px;

    }


    .dm-footer-statement {

        padding:
            65px
            0
            70px;

    }


    .dm-footer-statement-inner {

        min-height:
            190px;

    }


    .dm-footer-statement h2 {

        font-size:
            clamp(
                45px,
                8vw,
                68px
            );

        letter-spacing:
            -3px;

    }


    .dm-footer-plane {

        right:
            3%;

        width:
            80px;

        height:
            80px;

        font-size:
            20px;

    }


    .dm-footer-bottom-inner {

        flex-wrap:
            wrap;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-footer-main {

        padding:
            60px
            0
            45px;

    }


    .dm-footer-brand {

        max-width:
            100%;

    }


    .dm-footer-logo img {

        width:
            135px;

    }


    .dm-footer-description {

        font-size:
            12px;

        line-height:
            1.75;

    }


    .dm-footer-column {

        margin-top:
            10px;

    }


    .dm-footer-title {

        margin-bottom:
            17px;

        font-size:
            8px;

    }


    .dm-footer-column li {

        margin-bottom:
            10px;

    }


    .dm-footer-column li a {

        font-size:
            12px;

    }


    .dm-footer-contact p {

        font-size:
            12px;

    }


    .dm-footer-statement {

        padding:
            60px
            0;

    }


    .dm-footer-statement-inner {

        min-height:
            210px;

    }


    .dm-footer-statement h2 {

        max-width:
            85%;

        font-size:
            clamp(
                39px,
                11vw,
                52px
            );

        letter-spacing:
            -2px;

    }


    .dm-footer-plane {

        right:
            0;

        top:
            25px;

        width:
            65px;

        height:
            65px;

        font-size:
            16px;

    }


    .dm-footer-bottom {

        padding:
            18px
            0;

    }


    .dm-footer-bottom-inner {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            12px;

    }


    .dm-footer-legal {

        gap:
            14px;

    }


    .dm-footer-made {

        text-align:
            left;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-footer-main {

        padding:
            55px
            0
            40px;

    }


    .dm-footer-logo img {

        width:
            125px;

    }


    .dm-footer-statement {

        padding:
            55px
            0;

    }


    .dm-footer-statement h2 {

        font-size:
            36px;

        letter-spacing:
            -1.5px;

    }


    .dm-footer-plane {

        width:
            55px;

        height:
            55px;

        font-size:
            14px;

    }


    .dm-footer-legal {

        flex-wrap:
            wrap;

    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 359px) {

    .dm-footer-statement h2 {

        font-size:
            32px;

    }


    .dm-footer-description {

        font-size:
            11.5px;

    }

}




/* =========================================================
   SITE LOADER
========================================================= */

.dm-site-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--dm-ivory);

    opacity: 1;

    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;

}


.dm-site-loader.loaded {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


/* =========================================================
   LOADER CONTENT
========================================================= */

.dm-loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


/* =========================================================
   LOGO
========================================================= */

.dm-loader-logo {

    margin-bottom: 35px;

    opacity: 0;

    transform:
        translateY(12px);

    animation:
        dmLoaderLogo
        0.8s
        ease
        forwards;

}


.dm-loader-logo img {

    width: 150px;

    height: auto;

    display: block;

}


/* =========================================================
   CIRCULAR LOADER
========================================================= */

.dm-loader-circle {

    position: relative;

    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   ORBIT CIRCLE
========================================================= */

.dm-loader-orbit {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        1px dashed
        rgba(
            200,
            155,
            60,
            0.55
        );

    animation:
        dmLoaderOrbit
        6s
        linear
        infinite;

}


/* =========================================================
   SECOND SUBTLE CIRCLE
========================================================= */

.dm-loader-orbit::before {

    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            7,
            151,
            178,
            0.12
        );

}


/* =========================================================
   ROTATING AIRPLANE
========================================================= */

.dm-loader-plane {

    position: absolute;

    inset: -14px;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    animation:
        dmPlaneOrbit
        2.8s
        linear
        infinite;

}


/* =========================================================
   AIRPLANE ICON
========================================================= */

.dm-loader-plane i {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--dm-gold);

    background:
        var(--dm-ivory);

    border-radius:
        50%;

    font-size: 15px;

    transform:
        rotate(45deg);

    box-shadow:
        0 3px 12px
        rgba(
            18,
            59,
            109,
            0.08
        );

}


/* =========================================================
   CENTER
========================================================= */

.dm-loader-center {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background:
        var(--dm-turquoise);

    box-shadow:
        0 0 0 6px
        rgba(
            7,
            151,
            178,
            0.08
        );

    animation:
        dmLoaderPulse
        2s
        ease-in-out
        infinite;

}


/* =========================================================
   LOADING TEXT
========================================================= */

.dm-loader-text {

    margin-top: 30px;

    opacity: 0;

    animation:
        dmLoaderText
        0.8s
        ease
        0.3s
        forwards;

}


.dm-loader-text span {

    color:
        var(--dm-text-secondary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 3px;

}


/* =========================================================
   ANIMATION — ORBIT
========================================================= */

@keyframes dmPlaneOrbit {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   CIRCLE ROTATION
========================================================= */

@keyframes dmLoaderOrbit {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(-360deg);

    }

}


/* =========================================================
   CENTER PULSE
========================================================= */

@keyframes dmLoaderPulse {

    0%,
    100% {

        transform:
            scale(1);

        opacity:
            0.7;

    }

    50% {

        transform:
            scale(1.25);

        opacity:
            1;

    }

}


/* =========================================================
   LOGO ANIMATION
========================================================= */

@keyframes dmLoaderLogo {

    from {

        opacity: 0;

        transform:
            translateY(12px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TEXT ANIMATION
========================================================= */

@keyframes dmLoaderText {

    from {

        opacity: 0;

        transform:
            translateY(8px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-loader-logo img {

        width:
            140px;

    }

    .dm-loader-circle {

        width:
            100px;

        height:
            100px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-loader-logo {

        margin-bottom:
            28px;

    }


    .dm-loader-logo img {

        width:
            125px;

    }


    .dm-loader-circle {

        width:
            90px;

        height:
            90px;

    }


    .dm-loader-plane {

        inset:
            -13px;

    }


    .dm-loader-plane i {

        width:
            27px;

        height:
            27px;

        font-size:
            13px;

    }


    .dm-loader-text {

        margin-top:
            25px;

    }


    .dm-loader-text span {

        font-size:
            7px;

        letter-spacing:
            2.3px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-loader-logo img {

        width:
            115px;

    }


    .dm-loader-circle {

        width:
            82px;

        height:
            82px;

    }


    .dm-loader-text span {

        font-size:
            6.5px;

        letter-spacing:
            2px;

    }

}






/* ////////////////////////////////////////////////////////////// 
=======================blog page css============================= 
////////////////////////////////////////////////////////////////*/


/* =========================================================
   DRISTI MUKHOR
   JOURNAL / BLOG PAGE
========================================================= */

/* =========================================================
   BLOG / JOURNAL HERO
   SIMPLE EDITORIAL DESIGN
========================================================= */

.dm-blog-hero {

    position: relative;

    padding:
        115px
        0
        75px;

    background:
        var(--dm-ivory);

    overflow: hidden;

}


/* =========================================================
   HERO INNER
========================================================= */

.dm-blog-hero-inner {

    display: grid;

    grid-template-columns:
        1fr
        0.82fr;

    align-items: center;

    gap: 80px;

}


/* =========================================================
   CONTENT
========================================================= */

.dm-blog-hero-content {

    max-width:
        650px;

}


/* =========================================================
   EYEBROW
========================================================= */

.dm-blog-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom:
        20px;

}


.dm-blog-eyebrow span {

    width:
        32px;

    height:
        1px;

    background:
        var(--dm-gold);

}


.dm-blog-eyebrow strong {

    color:
        var(--dm-gold);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

}


/* =========================================================
   TITLE
========================================================= */

.dm-blog-title {

    margin:
        0;

    color:
        var(--dm-primary);

    font-size:
        clamp(
            44px,
            5vw,
            68px
        );

    line-height:
        1.02;

    letter-spacing:
        -2px;

    font-weight:
        700;

}


.dm-blog-title em {

    display:
        block;

    margin-top:
        3px;

    color:
        var(--dm-turquoise);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        0.92em;

    font-weight:
        400;

    letter-spacing:
        -1.5px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-blog-description {

    max-width:
        520px;

    margin:
        23px
        0
        28px;

    color:
        var(--dm-text-secondary);

    font-size:
        15px;

    line-height:
        1.75;

}


/* =========================================================
   CATEGORIES
========================================================= */

.dm-blog-categories {

    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        22px;

}


.dm-blog-categories span {

    position:
        relative;

    color:
        var(--dm-text-muted);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.5px;

}


.dm-blog-categories span:not(:last-child)::after {

    content:
        "·";

    position:
        absolute;

    right:
        -13px;

    color:
        var(--dm-gold);

}


/* =========================================================
   IMAGE AREA
========================================================= */

.dm-blog-hero-visual {

    position:
        relative;

    min-height:
        400px;

}


/* =========================================================
   IMAGE
========================================================= */

.dm-blog-image-wrap {

    position:
        relative;

    width:
        100%;

    height:
        390px;

    overflow:
        hidden;

    border-radius:
        90px
        5px
        90px
        5px;

    box-shadow:
        var(--dm-shadow-lg);

}


.dm-blog-image-wrap::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(
                18,
                59,
                109,
                0
            ) 55%,
            rgba(
                18,
                59,
                109,
                0.28
            )
        );

}


.dm-blog-image-wrap img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;

    transition:
        transform
        1s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );

}


.dm-blog-image-wrap:hover img {

    transform:
        scale(1.04);

}


/* =========================================================
   IMAGE LABEL
========================================================= */

.dm-blog-image-label {

    position:
        absolute;

    left:
        -20px;

    bottom:
        28px;

    z-index:
        4;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    min-width:
        145px;

    padding:
        13px
        16px;

    background:
        var(--dm-white);

    border-left:
        3px solid
        var(--dm-gold);

    box-shadow:
        var(--dm-shadow-md);

}


.dm-blog-image-label span {

    color:
        var(--dm-gold);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        1.7px;

}


.dm-blog-image-label strong {

    color:
        var(--dm-primary);

    font-size:
        11px;

    font-weight:
        700;

}


/* =========================================================
   ROUTE
========================================================= */

.dm-blog-route {

    position:
        absolute;

    width:
        270px;

    height:
        90px;

    right:
        -65px;

    top:
        -20px;

    z-index:
        3;

    overflow:
        visible;

    pointer-events:
        none;

}


.dm-blog-route path {

    fill:
        none;

    stroke:
        var(--dm-gold);

    stroke-width:
        1.2;

    stroke-dasharray:
        5 7;

    opacity:
        0.65;

    animation:
        dmBlogRouteMove
        7s
        linear
        infinite;

}


@keyframes dmBlogRouteMove {

    from {

        stroke-dashoffset:
            0;

    }

    to {

        stroke-dashoffset:
            -100;

    }

}


/* =========================================================
   PLANE
========================================================= */

.dm-blog-plane {

    position:
        absolute;

    right:
        -52px;

    top:
        -22px;

    z-index:
        5;

    color:
        var(--dm-gold);

    font-size:
        14px;

    transform:
        rotate(25deg);

    animation:
        dmBlogPlane
        3.5s
        ease-in-out
        infinite;

}


@keyframes dmBlogPlane {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(25deg);

    }

    50% {

        transform:
            translateY(-5px)
            rotate(25deg);

    }

}


/* =========================================================
   SMALL EDITORIAL DETAIL
========================================================= */

.dm-blog-hero-visual::after {

    content:
        "01";

    position:
        absolute;

    right:
        -30px;

    bottom:
        35px;

    color:
        rgba(
            18,
            59,
            109,
            0.16
        );

    font-size:
        70px;

    font-weight:
        700;

    line-height:
        1;

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .dm-blog-hero {

        padding:
            125px
            0
            85px;

    }


    .dm-blog-hero-inner {

        gap:
            110px;

    }


    .dm-blog-image-wrap {

        height:
            420px;

    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-blog-hero-inner {

        gap:
            55px;

    }


    .dm-blog-title {

        font-size:
            58px;

    }


    .dm-blog-image-wrap {

        height:
            360px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-blog-hero {

        padding:
            110px
            0
            70px;

    }


    .dm-blog-hero-inner {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .dm-blog-content {

        max-width:
            700px;

    }


    .dm-blog-title {

        font-size:
            56px;

    }


    .dm-blog-description {

        max-width:
            600px;

    }


    .dm-blog-hero-visual {

        width:
            75%;

        min-height:
            430px;

        margin-left:
            auto;

    }


    .dm-blog-image-wrap {

        height:
            410px;

    }


    .dm-blog-image-label {

        left:
            -15px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-blog-hero {

        padding:
            100px
            0
            60px;

    }


    .dm-blog-hero-inner {

        gap:
            35px;

    }


    .dm-blog-eyebrow {

        margin-bottom:
            16px;

    }


    .dm-blog-eyebrow strong {

        font-size:
            8px;

        letter-spacing:
            2px;

    }


    .dm-blog-title {

        font-size:
            clamp(
                38px,
                11vw,
                50px
            );

        letter-spacing:
            -1.3px;

    }


    .dm-blog-description {

        margin:
            18px
            0
            24px;

        font-size:
            13px;

        line-height:
            1.7;

    }


    .dm-blog-categories {

        gap:
            16px;

    }


    .dm-blog-categories span {

        font-size:
            7px;

    }


    .dm-blog-categories span:not(:last-child)::after {

        right:
            -10px;

    }


    .dm-blog-hero-visual {

        width:
            88%;

        min-height:
            360px;

        margin-left:
            auto;

    }


    .dm-blog-image-wrap {

        height:
            350px;

        border-radius:
            75px
            5px
            75px
            5px;

    }


    .dm-blog-image-label {

        left:
            -12px;

        bottom:
            20px;

        min-width:
            130px;

        padding:
            11px
            13px;

    }


    .dm-blog-route {

        width:
            220px;

        right:
            -65px;

    }


    .dm-blog-plane {

        right:
            -50px;

    }


    .dm-blog-hero-visual::after {

        right:
            -15px;

        bottom:
            25px;

        font-size:
            55px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-blog-hero {

        padding:
            95px
            0
            50px;

    }


    .dm-blog-title {

        font-size:
            37px;

    }


    .dm-blog-description {

        font-size:
            12.5px;

    }


    .dm-blog-hero-visual {

        width:
            92%;

        min-height:
            315px;

    }


    .dm-blog-image-wrap {

        height:
            305px;

        border-radius:
            65px
            4px
            65px
            4px;

    }


    .dm-blog-image-label {

        left:
            -8px;

        bottom:
            15px;

        min-width:
            120px;

    }


    .dm-blog-route {

        width:
            180px;

        right:
            -50px;

        opacity:
            0.5;

    }


    .dm-blog-plane {

        right:
            -42px;

        font-size:
            12px;

    }


    .dm-blog-hero-visual::after {

        display:
            none;

    }

}












/* =========================================================
   FEATURED STORY
========================================================= */
/* =========================================================
   FEATURED JOURNAL POST
========================================================= */

.dm-featured-post {

    position: relative;

    padding:
        90px
        0
        110px;

    background:
        var(--dm-white);

    overflow: hidden;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.dm-featured-heading {

    margin-bottom:
        38px;

}


.dm-featured-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom:
        15px;

}


.dm-featured-eyebrow span {

    width:
        28px;

    height:
        1px;

    background:
        var(--dm-gold);

}


.dm-featured-eyebrow strong {

    color:
        var(--dm-gold);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


/* =========================================================
   HEADING ROW
========================================================= */

.dm-featured-heading-row {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        30px;

}


.dm-featured-heading h2 {

    max-width:
        600px;

    margin:
        0;

    color:
        var(--dm-primary);

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height:
        1.08;

    font-weight:
        700;

    letter-spacing:
        -1.5px;

}


.dm-featured-heading h2 em {

    color:
        var(--dm-turquoise);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight:
        400;

}


/* =========================================================
   VIEW ALL
========================================================= */

.dm-featured-view-all {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding-bottom:
        7px;

    color:
        var(--dm-primary);

    border-bottom:
        1px solid
        var(--dm-primary);

    font-size:
        11px;

    font-weight:
        700;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        var(--dm-transition);

}


.dm-featured-view-all i {

    font-size:
        12px;

    transition:
        var(--dm-transition);

}


.dm-featured-view-all:hover {

    color:
        var(--dm-turquoise);

    border-color:
        var(--dm-turquoise);

}


.dm-featured-view-all:hover i {

    transform:
        translate(
            3px,
            -3px
        );

}


/* =========================================================
   FEATURED CARD
========================================================= */

.dm-featured-card {

    display:
        grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    min-height:
        480px;

    background:
        var(--dm-ivory);

    overflow:
        hidden;

    box-shadow:
        var(--dm-shadow-sm);

}


/* =========================================================
   IMAGE
========================================================= */

.dm-featured-image {

    position:
        relative;

    min-height:
        480px;

    overflow:
        hidden;

}


.dm-featured-image img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform
        1s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );

}


.dm-featured-card:hover
.dm-featured-image img {

    transform:
        scale(1.045);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.dm-featured-image::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(
                18,
                59,
                109,
                0
            ) 55%,
            rgba(
                18,
                59,
                109,
                0.38
            ) 100%
        );

    pointer-events:
        none;

}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.dm-featured-image-number {

    position:
        absolute;

    top:
        25px;

    left:
        25px;

    z-index:
        2;

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(
            255,
            248,
            231,
            0.92
        );

    color:
        var(--dm-primary);

    font-size:
        11px;

    font-weight:
        800;

}


/* =========================================================
   LOCATION
========================================================= */

.dm-featured-location {

    position:
        absolute;

    left:
        25px;

    bottom:
        23px;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--dm-white);

}


.dm-featured-location i {

    color:
        var(--dm-gold);

    font-size:
        14px;

}


.dm-featured-location span {

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.8px;

}


/* =========================================================
   CONTENT
========================================================= */

.dm-featured-content {

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        55px
        55px;

}


/* =========================================================
   META
========================================================= */

.dm-featured-meta {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    margin-bottom:
        20px;

}


.dm-featured-meta span {

    color:
        var(--dm-gold);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.5px;

}


.dm-featured-meta span + span {

    position:
        relative;

    color:
        var(--dm-text-muted);

}


.dm-featured-meta span + span::before {

    content:
        "";

    position:
        absolute;

    left:
        -10px;

    top:
        50%;

    width:
        3px;

    height:
        3px;

    background:
        var(--dm-gold);

    border-radius:
        50%;

}


/* =========================================================
   TITLE
========================================================= */

.dm-featured-content h3 {

    max-width:
        520px;

    margin:
        0
        0
        20px;

    color:
        var(--dm-primary);

    font-size:
        clamp(
            30px,
            3vw,
            43px
        );

    line-height:
        1.12;

    font-weight:
        700;

    letter-spacing:
        -1px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-featured-content p {

    max-width:
        500px;

    margin:
        0;

    color:
        var(--dm-text-secondary);

    font-size:
        13px;

    line-height:
        1.8;

}


/* =========================================================
   BOTTOM
========================================================= */

.dm-featured-bottom {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        25px;

    margin-top:
        38px;

    padding-top:
        22px;

    border-top:
        1px solid
        var(--dm-border-primary);

}


/* =========================================================
   DATE
========================================================= */

.dm-featured-date {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

}


.dm-featured-date span {

    color:
        var(--dm-text-light);

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        1.5px;

}


.dm-featured-date strong {

    color:
        var(--dm-primary);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.5px;

}


/* =========================================================
   READ BUTTON
========================================================= */

.dm-featured-read {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px
        18px;

    background:
        var(--dm-primary);

    color:
        var(--dm-white);

    font-size:
        10px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        var(--dm-transition);

}


.dm-featured-read i {

    transition:
        var(--dm-transition);

}


.dm-featured-read:hover {

    background:
        var(--dm-turquoise);

    color:
        var(--dm-white);

}


.dm-featured-read:hover i {

    transform:
        translate(
            3px,
            -3px
        );

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .dm-featured-post {

        padding:
            110px
            0
            130px;

    }


    .dm-featured-card {

        min-height:
            520px;

    }


    .dm-featured-image {

        min-height:
            520px;

    }


    .dm-featured-content {

        padding:
            70px;

    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-featured-content {

        padding:
            45px;

    }


    .dm-featured-card,
    .dm-featured-image {

        min-height:
            440px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-featured-post {

        padding:
            75px
            0
            90px;

    }


    .dm-featured-heading {

        margin-bottom:
            30px;

    }


    .dm-featured-card {

        grid-template-columns:
            1fr;

    }


    .dm-featured-image {

        min-height:
            430px;

    }


    .dm-featured-content {

        padding:
            40px;

    }


    .dm-featured-content h3 {

        max-width:
            650px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-featured-post {

        padding:
            60px
            0
            70px;

    }


    .dm-featured-heading-row {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            18px;

    }


    .dm-featured-heading h2 {

        font-size:
            34px;

        letter-spacing:
            -1px;

    }


    .dm-featured-view-all {

        font-size:
            10px;

    }


    .dm-featured-card {

        min-height:
            auto;

    }


    .dm-featured-image {

        min-height:
            320px;

    }


    .dm-featured-content {

        padding:
            32px
            25px;

    }


    .dm-featured-content h3 {

        font-size:
            29px;

        line-height:
            1.15;

    }


    .dm-featured-content p {

        font-size:
            12.5px;

        line-height:
            1.75;

    }


    .dm-featured-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

        margin-top:
            28px;

    }


    .dm-featured-read {

        width:
            100%;

        justify-content:
            center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-featured-heading h2 {

        font-size:
            30px;

    }


    .dm-featured-image {

        min-height:
            280px;

    }


    .dm-featured-image-number {

        top:
            18px;

        left:
            18px;

        width:
            36px;

        height:
            36px;

    }


    .dm-featured-location {

        left:
            18px;

        bottom:
            18px;

    }


    .dm-featured-content {

        padding:
            28px
            20px;

    }


    .dm-featured-meta {

        margin-bottom:
            15px;

    }


    .dm-featured-content h3 {

        font-size:
            26px;

    }

}

/* =========================================================
   Dristi Mukhor
   STORIES / JOURNAL SECTION
========================================================= */

.dm-stories {

    position: relative;

    width: 100%;

    padding: 105px 0 115px;

    background: var(--dm-light);

    overflow: hidden;
}


/* =========================================================
   STORIES HEADER
========================================================= */

.dm-stories-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 48px;
}


/* =========================================================
   EYEBROW
========================================================= */

.dm-stories-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;
}


.dm-stories-eyebrow span {

    display: block;

    width: 32px;

    height: 1px;

    flex-shrink: 0;

    background: var(--dm-gold);
}


.dm-stories-eyebrow strong {

    display: block;

    color: var(--dm-gold);

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN SECTION HEADING
========================================================= */

.dm-stories-header h2 {

    margin: 0;

    color: var(--dm-primary);

    font-size: 48px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.2px;
}


.dm-stories-header h2 em {

    color: var(--dm-turquoise);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 0.98em;

    font-weight: 400;

    font-style: italic;
}


/* =========================================================
   HEADER DESCRIPTION
========================================================= */

.dm-stories-header > p {

    max-width: 330px;

    margin: 0 0 5px;

    color: var(--dm-text-secondary);

    font-size: 15px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   STORY CARD
========================================================= */

.dm-story-card {

    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    background: var(--dm-white);

    border: 1px solid var(--dm-border-light);

    overflow: hidden;

    transition:
        transform var(--dm-transition),
        box-shadow var(--dm-transition),
        border-color var(--dm-transition);
}


.dm-story-card:hover {

    transform: translateY(-7px);

    border-color: var(--dm-border-primary);

    box-shadow: var(--dm-shadow-md);
}


/* =========================================================
   STORY IMAGE WRAPPER
========================================================= */

.dm-story-image {

    position: relative;

    display: block;

    width: 100%;

    height: 275px;

    overflow: hidden;

    text-decoration: none;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.dm-story-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.9s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}


.dm-story-card:hover
.dm-story-image img {

    transform: scale(1.055);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.dm-story-image::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(18, 59, 109, 0) 50%,
            rgba(18, 59, 109, 0.24) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CATEGORY LABEL
========================================================= */

.dm-story-category {

    position: absolute;

    top: 17px;

    left: 17px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    padding: 8px 11px;

    background: var(--dm-white);

    color: var(--dm-primary);

    font-size: 9px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    box-shadow:
        0 4px 15px
        rgba(18, 59, 109, 0.08);
}


/* =========================================================
   IMAGE ARROW
========================================================= */

.dm-story-arrow {

    position: absolute;

    right: 17px;

    bottom: 17px;

    z-index: 3;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dm-gold);

    color: var(--dm-white);

    font-size: 13px;

    transition:
        background var(--dm-transition),
        transform var(--dm-transition);
}


.dm-story-card:hover
.dm-story-arrow {

    background: var(--dm-turquoise);

    transform:
        translate(2px, -2px);
}


/* =========================================================
   STORY CONTENT
========================================================= */

.dm-story-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 26px 25px 29px;
}


/* =========================================================
   STORY META
========================================================= */

.dm-story-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 14px;
}


.dm-story-meta span {

    position: relative;

    color: var(--dm-text-light);

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.dm-story-meta span + span::before {

    content: "";

    position: absolute;

    left: -10px;

    top: 50%;

    width: 3px;

    height: 3px;

    border-radius: var(--dm-radius-round);

    background: var(--dm-gold);

    transform: translateY(-50%);
}


/* =========================================================
   STORY TITLE
========================================================= */

.dm-story-content h3 {

    min-height: 58px;

    margin: 0 0 13px;

    color: var(--dm-primary);

    font-size: 23px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.4px;
}


/* =========================================================
   STORY DESCRIPTION
========================================================= */

.dm-story-content p {

    margin: 0 0 23px;

    color: var(--dm-text-secondary);

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   READ STORY
========================================================= */

.dm-story-read {

    display: inline-flex;

    align-items: center;

    align-self: flex-start;

    gap: 9px;

    margin-top: auto;

    color: var(--dm-primary);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    transition:
        color var(--dm-transition);
}


.dm-story-read i {

    font-size: 13px;

    transition:
        transform var(--dm-transition);
}


.dm-story-read:hover {

    color: var(--dm-turquoise);
}


.dm-story-read:hover i {

    transform: translateX(4px);
}


/* =========================================================
   STORIES FOOTER
========================================================= */

.dm-stories-footer {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 58px;
}


/* =========================================================
   FOOTER LINES
========================================================= */

.dm-stories-footer-line {

    flex: 1;

    height: 1px;

    background: var(--dm-border);
}


/* =========================================================
   ALL STORIES LINK
========================================================= */

.dm-stories-all {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: var(--dm-primary);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color var(--dm-transition);
}


.dm-stories-all i {

    font-size: 13px;

    transition:
        transform var(--dm-transition);
}


.dm-stories-all:hover {

    color: var(--dm-turquoise);
}


.dm-stories-all:hover i {

    transform:
        translate(3px, -3px);
}


/* =========================================================
   LARGE DESKTOP
   1400px+
========================================================= */

@media (min-width: 1400px) {

    .dm-stories {

        padding:
            120px
            0
            130px;
    }


    .dm-stories-header {

        margin-bottom: 52px;
    }


    .dm-stories-header h2 {

        font-size: 52px;

        letter-spacing: -1.5px;
    }


    .dm-stories-header > p {

        max-width: 350px;

        font-size: 16px;
    }


    .dm-story-image {

        height: 300px;
    }


    .dm-story-content {

        padding:
            29px
            28px
            32px;
    }


    .dm-story-content h3 {

        font-size: 24px;
    }


    .dm-story-content p {

        font-size: 15px;
    }


    .dm-story-read {

        font-size: 13px;
    }

}


/* =========================================================
   LAPTOP
   1200px – 1399px
========================================================= */

@media (max-width: 1399px) {

    .dm-story-image {

        height: 265px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   992px – 1199px
========================================================= */

@media (max-width: 1199px) {

    .dm-stories {

        padding:
            90px
            0
            100px;
    }


    .dm-stories-header {

        gap: 35px;

        margin-bottom: 42px;
    }


    .dm-stories-header h2 {

        font-size: 44px;

        letter-spacing: -1px;
    }


    .dm-stories-header > p {

        max-width: 300px;

        font-size: 14px;
    }


    .dm-story-image {

        height: 245px;
    }


    .dm-story-content {

        padding:
            23px
            22px
            27px;
    }


    .dm-story-content h3 {

        min-height: 54px;

        font-size: 21px;
    }


    .dm-story-content p {

        font-size: 13.5px;
    }

}


/* =========================================================
   TABLET
   768px – 991px
========================================================= */

@media (max-width: 991px) {

    .dm-stories {

        padding:
            80px
            0
            90px;
    }


    .dm-stories-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 38px;
    }


    .dm-stories-header h2 {

        font-size: 40px;

        line-height: 1.15;
    }


    .dm-stories-header > p {

        max-width: 520px;

        margin: 0;

        font-size: 14px;

        line-height: 1.7;
    }


    .dm-story-image {

        height: 260px;
    }


    .dm-story-content {

        padding:
            24px
            22px
            27px;
    }


    .dm-story-content h3 {

        min-height: auto;

        font-size: 21px;

        line-height: 1.3;
    }


    .dm-story-content p {

        font-size: 14px;

        line-height: 1.7;
    }


    .dm-story-read {

        font-size: 12px;
    }


    .dm-stories-footer {

        margin-top: 48px;
    }

}


/* =========================================================
   MOBILE
   576px – 767px
========================================================= */

@media (max-width: 767px) {

    .dm-stories {

        padding:
            65px
            0
            75px;
    }


    .dm-stories-header {

        gap: 18px;

        margin-bottom: 32px;
    }


    .dm-stories-eyebrow {

        gap: 10px;

        margin-bottom: 13px;
    }


    .dm-stories-eyebrow span {

        width: 27px;
    }


    .dm-stories-eyebrow strong {

        font-size: 10px;

        letter-spacing: 1.7px;
    }


    .dm-stories-header h2 {

        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -0.7px;
    }


    .dm-stories-header > p {

        max-width: 100%;

        font-size: 14px;

        line-height: 1.7;
    }


    .dm-story-image {

        height: 270px;
    }


    .dm-story-category {

        top: 14px;

        left: 14px;

        padding:
            7px
            10px;

        font-size: 8px;
    }


    .dm-story-arrow {

        right: 14px;

        bottom: 14px;

        width: 35px;

        height: 35px;
    }


    .dm-story-content {

        padding:
            22px
            20px
            25px;
    }


    .dm-story-meta {

        gap: 17px;

        margin-bottom: 13px;
    }


    .dm-story-meta span {

        font-size: 9px;

        letter-spacing: 1px;
    }


    .dm-story-content h3 {

        min-height: auto;

        margin-bottom: 12px;

        font-size: 21px;

        line-height: 1.3;
    }


    .dm-story-content p {

        margin-bottom: 20px;

        font-size: 13.5px;

        line-height: 1.7;
    }


    .dm-story-read {

        font-size: 12px;
    }


    .dm-stories-footer {

        gap: 15px;

        margin-top: 42px;
    }


    .dm-stories-all {

        font-size: 11.5px;
    }

}


/* =========================================================
   SMALL MOBILE
   0px – 575px
========================================================= */

@media (max-width: 575px) {

    .dm-stories {

        padding:
            55px
            0
            65px;
    }


    .dm-stories-header {

        margin-bottom: 28px;
    }


    .dm-stories-header h2 {

        font-size: 31px;

        line-height: 1.18;
    }


    .dm-stories-header > p {

        font-size: 13.5px;

        line-height: 1.7;
    }


    .dm-story-image {

        height: 240px;
    }


    .dm-story-content {

        padding:
            21px
            19px
            24px;
    }


    .dm-story-meta span {

        font-size: 8.5px;

        letter-spacing: 0.9px;
    }


    .dm-story-content h3 {

        font-size: 20px;

        line-height: 1.3;
    }


    .dm-story-content p {

        font-size: 13.5px;

        line-height: 1.7;
    }


    .dm-story-read {

        font-size: 11.5px;
    }


    .dm-stories-footer {

        margin-top: 38px;
    }


    .dm-stories-all {

        font-size: 11px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   0px – 400px
========================================================= */

@media (max-width: 400px) {

    .dm-stories-header h2 {

        font-size: 29px;
    }


    .dm-stories-header > p {

        font-size: 13px;
    }


    .dm-story-image {

        height: 220px;
    }


    .dm-story-content h3 {

        font-size: 19px;
    }


    .dm-story-content p {

        font-size: 13px;
    }


    .dm-story-meta span {

        font-size: 8px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dm-story-card,
    .dm-story-image img,
    .dm-story-arrow,
    .dm-story-read i,
    .dm-stories-all i {

        transition: none;
    }

}




/* =========================================================
   JOURNAL CTA
========================================================= */

.dm-journal-cta {

    position: relative;

    width: 100%;

    padding: 30px 0 85px;

    background: var(--dm-light);

    overflow: hidden;
}


/* =========================================================
   CTA INNER
========================================================= */

.dm-journal-cta-inner {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    padding: 36px 42px;

    background: var(--dm-primary);

    overflow: hidden;

    box-shadow: var(--dm-shadow-md);
}


/* =========================================================
   GOLD SIDE ACCENT
========================================================= */

.dm-journal-cta-inner::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--dm-gold);
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.dm-journal-cta-inner::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -110px;

    border: 1px solid
        rgba(200, 155, 60, 0.28);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.dm-journal-cta-content {

    position: relative;

    z-index: 2;

    max-width: 650px;
}


/* =========================================================
   EYEBROW
========================================================= */

.dm-journal-cta-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 11px;
}


.dm-journal-cta-eyebrow span {

    width: 26px;
    height: 1px;

    flex-shrink: 0;

    background: var(--dm-gold);
}


.dm-journal-cta-eyebrow strong {

    color: var(--dm-gold);

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.dm-journal-cta-content h2 {

    margin: 0 0 9px;

    color: var(--dm-white);

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.dm-journal-cta-content h2 em {

    color: var(--dm-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 0.98em;

    font-weight: 400;

    font-style: italic;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-journal-cta-content p {

    max-width: 560px;

    margin: 0;

    color: var(--dm-text-white-muted);

    font-size: 14px;

    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   ACTION
========================================================= */

.dm-journal-cta-action {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}


/* =========================================================
   BUTTON
========================================================= */

.dm-journal-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 170px;

    padding: 12px 19px;

    background: var(--dm-gold);

    color: var(--dm-white);

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    transition:
        background var(--dm-transition),
        transform var(--dm-transition),
        box-shadow var(--dm-transition);
}


.dm-journal-cta-btn i {

    font-size: 12px;

    transition:
        transform var(--dm-transition);
}


.dm-journal-cta-btn:hover {

    background: var(--dm-turquoise);

    color: var(--dm-white);

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px
        rgba(7, 151, 178, 0.22);
}


.dm-journal-cta-btn:hover i {

    transform:
        translate(3px, -3px);
}


/* =========================================================
   SMALL NOTE
========================================================= */

.dm-journal-cta-note {

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;

    line-height: 1.3;

    font-weight: 400;
}


/* =========================================================
   DECORATIVE ROUTE
========================================================= */

.dm-cta-route {

    position: absolute;

    right: 220px;
    bottom: 18px;

    z-index: 1;

    display: flex;

    align-items: center;

    gap: 7px;

    opacity: 0.4;
}


.dm-cta-route span {

    display: block;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--dm-gold);
}


.dm-cta-route span:nth-child(2) {

    width: 32px;
    height: 1px;

    border-radius: 0;

    background: var(--dm-gold);
}


/* =========================================================
   LARGE DESKTOP
   1400px+
========================================================= */

@media (min-width: 1400px) {

    .dm-journal-cta {

        padding: 35px 0 95px;
    }


    .dm-journal-cta-inner {

        padding: 40px 48px;
    }


    .dm-journal-cta-content h2 {

        font-size: 32px;
    }


    .dm-journal-cta-content p {

        font-size: 15px;
    }

}


/* =========================================================
   LAPTOP
   1200px – 1399px
========================================================= */

@media (max-width: 1399px) {

    .dm-journal-cta-inner {

        padding: 34px 38px;
    }

}


@media (max-width: 1199px) {

    .dm-journal-cta-inner {

        gap: 35px;

        padding: 32px 35px;
    }


    .dm-journal-cta-content h2 {

        font-size: 28px;
    }


    .dm-journal-cta-content p {

        font-size: 14px;
    }

}


/* =========================================================
   TABLET
   768px – 991px
========================================================= */

@media (max-width: 991px) {

    .dm-journal-cta {

        padding: 25px 0 75px;
    }


    .dm-journal-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 24px;

        padding: 32px;
    }


    .dm-journal-cta-content {

        max-width: 600px;
    }


    .dm-journal-cta-content h2 {

        font-size: 27px;

        line-height: 1.2;
    }


    .dm-journal-cta-content p {

        font-size: 14px;
    }


    .dm-journal-cta-action {

        align-items: flex-start;
    }


    .dm-cta-route {

        display: none;
    }

}


/* =========================================================
   MOBILE
   576px – 767px
========================================================= */

@media (max-width: 767px) {

    .dm-journal-cta {

        padding: 20px 0 65px;
    }


    .dm-journal-cta-inner {

        gap: 22px;

        padding: 28px 24px;
    }


    .dm-journal-cta-eyebrow {

        margin-bottom: 10px;
    }


    .dm-journal-cta-eyebrow strong {

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .dm-journal-cta-content h2 {

        font-size: 25px;

        line-height: 1.2;

        letter-spacing: -0.3px;
    }


    .dm-journal-cta-content p {

        font-size: 13.5px;

        line-height: 1.65;
    }


    .dm-journal-cta-btn {

        min-width: 165px;

        padding: 11px 17px;

        font-size: 11.5px;
    }


    .dm-journal-cta-note {

        font-size: 9.5px;
    }

}


/* =========================================================
   SMALL MOBILE
   ≤ 575px
========================================================= */

@media (max-width: 575px) {

    .dm-journal-cta-inner {

        padding: 26px 21px;
    }


    .dm-journal-cta-content h2 {

        font-size: 24px;
    }


    .dm-journal-cta-content p {

        font-size: 13.5px;
    }


    .dm-journal-cta-action {

        width: 100%;
    }


    .dm-journal-cta-btn {

        width: 100%;

        min-width: 0;

        font-size: 11.5px;
    }

}


/* =========================================================
   EXTRA SMALL
   ≤ 400px
========================================================= */

@media (max-width: 400px) {

    .dm-journal-cta-content h2 {

        font-size: 22px;
    }


    .dm-journal-cta-content p {

        font-size: 13px;
    }


    .dm-journal-cta-btn {

        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dm-journal-cta-btn,
    .dm-journal-cta-btn i {

        transition: none;
    }

}







































/* /================================================= */










/* =========================================================
   BLOG DETAIL PAGE
========================================================= */

.dm-blog-detail {

    position: relative;

    width: 100%;

    padding: 120px 0 110px;

    background: var(--dm-light);

    overflow: hidden;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.dm-blog-detail-header {

    max-width: 900px;

    margin: 0 auto 48px;

    text-align: center;
}


/* =========================================================
   CATEGORY
========================================================= */

.dm-blog-detail-category {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-bottom: 18px;
}


.dm-blog-detail-category span {

    width: 28px;

    height: 1px;

    background: var(--dm-gold);
}


.dm-blog-detail-category strong {

    color: var(--dm-gold);

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE TITLE
========================================================= */

.dm-blog-detail-header h1 {

    margin: 0 auto 20px;

    color: var(--dm-primary);

    font-size: 50px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.4px;
}


/* =========================================================
   INTRO
========================================================= */

.dm-blog-detail-intro {



    margin: 0 auto;

    color: var(--dm-text-secondary);


    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   META
========================================================= */

.dm-blog-detail-meta {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 25px;
}


.dm-blog-detail-meta span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--dm-text-muted);

    font-size: 10px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.dm-blog-detail-meta i {

    color: var(--dm-gold);

    font-size: 12px;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.dm-blog-detail-feature {

    position: relative;

    width: 100%;

    max-width: 1120px;

    height: 560px;

    margin: 0 auto 80px;

    overflow: hidden;

    border-radius:
        90px
        8px
        90px
        8px;

    box-shadow: var(--dm-shadow-lg);
}


.dm-blog-detail-feature img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.dm-blog-detail-layout {

    position: relative;

    display: grid;

    grid-template-columns:
        190px
        minmax(0, 780px);

    justify-content: center;

    gap: 60px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.dm-blog-detail-sidebar {

    position: relative;
}


/* =========================================================
   TABLE OF CONTENTS
========================================================= */

.dm-blog-toc {

    position: sticky;

    top: 120px;

    display: flex;

    flex-direction: column;

    gap: 13px;

    padding-top: 5px;
}


.dm-blog-toc-label {

    margin-bottom: 8px;

    color: var(--dm-gold);

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.dm-blog-toc a {

    position: relative;

    padding-left: 12px;

    color: var(--dm-text-muted);

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none;

    transition:
        color var(--dm-transition),
        padding-left var(--dm-transition);
}


.dm-blog-toc a::before {

    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: var(--dm-gold);
}


.dm-blog-toc a:hover {

    padding-left: 16px;

    color: var(--dm-primary);
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.dm-blog-detail-content {

    width: 100%;

    min-width: 0;
}


/* =========================================================
   ARTICLE SECTION
========================================================= */

.dm-blog-article-section {

    padding-bottom: 60px;

    margin-bottom: 60px;

    border-bottom:
        1px solid
        var(--dm-border);
}


/* =========================================================
   SECTION NUMBER
========================================================= */

.dm-blog-section-number {

    margin-bottom: 10px;

    color: var(--dm-gold);

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.dm-blog-article-section h2 {

    margin: 0;

    color: var(--dm-primary);

    font-size: 30px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   SECTION LINE
========================================================= */

.dm-blog-section-line {

    width: 42px;

    height: 2px;

    margin: 16px 0 24px;

    background: var(--dm-gold);
}


/* =========================================================
   ARTICLE PARAGRAPHS
========================================================= */

.dm-blog-article-section p {

    margin: 0 0 20px;

    color: var(--dm-text);

    font-size: 16px;

    line-height: 1.85;

    font-weight: 400;
}


.dm-blog-article-section p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.dm-blog-highlight {

    margin-top: 32px;

    padding: 25px 27px;

    background: var(--dm-white);

    border-left:
        3px solid
        var(--dm-gold);

    box-shadow: var(--dm-shadow-sm);
}


/* =========================================================
   HIGHLIGHT TITLE
========================================================= */

.dm-blog-highlight-title {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}


.dm-blog-highlight-title i {

    color: var(--dm-turquoise);

    font-size: 17px;
}


.dm-blog-highlight-title strong {

    color: var(--dm-primary);

    font-size: 14px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================================
   HIGHLIGHT LIST
========================================================= */

.dm-blog-highlight ul {

    display: flex;

    flex-direction: column;

    gap: 0;

    margin: 0;

    padding: 0;

    list-style: none;
}


.dm-blog-highlight li {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 12px 0;

    border-top:
        1px solid
        var(--dm-border-light);

    color: var(--dm-text);

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;
}


.dm-blog-highlight li:first-child {

    border-top: 0;
}


.dm-blog-highlight li span {

    width: 28px;

    flex-shrink: 0;

    color: var(--dm-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   INLINE IMAGE
========================================================= */

.dm-blog-inline-image {

    margin:
        35px
        0;

    padding: 0;
}


.dm-blog-inline-image img {

    width: 100%;

    height: 420px;

    display: block;

    object-fit: cover;

    border-radius:
        35px
        5px
        35px
        5px;

    box-shadow: var(--dm-shadow-md);
}


.dm-blog-inline-image figcaption {

    margin-top: 10px;

    color: var(--dm-text-light);

    font-size: 11px;

    line-height: 1.5;

    font-style: italic;
}


/* =========================================================
   INFORMATION LIST
========================================================= */

.dm-blog-info-list {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}


.dm-blog-info-list > div {

    min-height: 125px;

    padding: 20px;

    background: var(--dm-white);

    border:
        1px solid
        var(--dm-border-light);

    transition:
        transform var(--dm-transition),
        box-shadow var(--dm-transition);
}


.dm-blog-info-list > div:hover {

    transform: translateY(-4px);

    box-shadow: var(--dm-shadow-sm);
}


.dm-blog-info-list strong {

    display: block;

    margin-bottom: 9px;

    color: var(--dm-primary);

    font-size: 14px;

    line-height: 1.4;

    font-weight: 700;
}


.dm-blog-info-list span {

    display: block;

    color: var(--dm-text-secondary);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   SHARE CTA
========================================================= */

.dm-blog-detail-share {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 15px;

    padding:
        25px
        28px;

    background: var(--dm-primary);

    border-left:
        3px solid
        var(--dm-gold);
}


.dm-blog-detail-share div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.dm-blog-detail-share span {

    color: var(--dm-gold);

    font-size: 9px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.dm-blog-detail-share strong {

    color: var(--dm-white);

    font-size: 17px;

    line-height: 1.4;

    font-weight: 600;
}


.dm-blog-detail-share a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding:
        11px
        17px;

    background: var(--dm-gold);

    color: var(--dm-white);

    font-size: 11px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    transition:
        background var(--dm-transition),
        transform var(--dm-transition);
}


.dm-blog-detail-share a:hover {

    background: var(--dm-turquoise);

    color: var(--dm-white);

    transform: translateY(-2px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .dm-blog-detail {

        padding-top: 140px;
    }


    .dm-blog-detail-header h1 {

        font-size: 54px;
    }


    

    .dm-blog-detail-feature {

        height: 600px;
    }


    .dm-blog-detail-layout {

        grid-template-columns:
            200px
            minmax(0, 800px);

        gap: 65px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .dm-blog-detail-header h1 {

        font-size: 46px;
    }


    .dm-blog-detail-feature {

        height: 500px;

        margin-bottom: 65px;
    }


    .dm-blog-detail-layout {

        grid-template-columns:
            165px
            minmax(0, 700px);

        gap: 40px;
    }


    .dm-blog-article-section h2 {

        font-size: 28px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-blog-detail {

        padding:
            100px
            0
            80px;
    }


    .dm-blog-detail-header {

        max-width: 760px;

        margin-bottom: 40px;
    }


    .dm-blog-detail-header h1 {

        font-size: 40px;

        letter-spacing: -0.9px;
    }


    .dm-blog-detail-intro {

        font-size: 16px;
    }


    .dm-blog-detail-feature {

        height: 430px;

        margin-bottom: 55px;

        border-radius:
            65px
            6px
            65px
            6px;
    }


    .dm-blog-detail-layout {

        display: block;
    }


    .dm-blog-detail-sidebar {

        display: none;
    }


    .dm-blog-detail-content {

        max-width: 720px;

        margin: 0 auto;
    }


    .dm-blog-article-section {

        padding-bottom: 50px;

        margin-bottom: 50px;
    }


    .dm-blog-article-section h2 {

        font-size: 27px;
    }


    .dm-blog-article-section p {

        font-size: 15px;

        line-height: 1.8;
    }


    .dm-blog-inline-image img {

        height: 360px;
    }


    .dm-blog-info-list {

        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-blog-detail {

        padding:
            100px
            0
            65px;
    }


    .dm-blog-detail-header {

        margin-bottom: 32px;
    }


    .dm-blog-detail-category {

        margin-bottom: 14px;
    }


    .dm-blog-detail-category strong {

        font-size: 9px;

        letter-spacing: 1.6px;
    }


    .dm-blog-detail-header h1 {

        font-size: 32px;

        line-height: 1.16;

        letter-spacing: -0.6px;
    }


    .dm-blog-detail-intro {

        font-size: 15px;

        line-height: 1.7;
    }


    .dm-blog-detail-meta {

        gap: 14px;

        margin-top: 20px;
    }


    .dm-blog-detail-meta span {

        font-size: 9px;
    }


    .dm-blog-detail-feature {

        height: 300px;

        margin-bottom: 45px;

        border-radius:
            45px
            5px
            45px
            5px;
    }


    .dm-blog-article-section {

        padding-bottom: 42px;

        margin-bottom: 42px;
    }


    .dm-blog-section-number {

        font-size: 10px;
    }


    .dm-blog-article-section h2 {

        font-size: 24px;

        line-height: 1.25;
    }


    .dm-blog-section-line {

        width: 35px;

        margin:
            13px
            0
            20px;
    }


    .dm-blog-article-section p {

        margin-bottom: 17px;

        font-size: 14px;

        line-height: 1.8;
    }


    .dm-blog-highlight {

        margin-top: 25px;

        padding:
            21px
            20px;
    }


    .dm-blog-highlight-title strong {

        font-size: 13px;
    }


    .dm-blog-highlight li {

        gap: 11px;

        padding: 11px 0;

        font-size: 13px;
    }


    .dm-blog-highlight li span {

        width: 24px;

        font-size: 9px;
    }


    .dm-blog-inline-image {

        margin:
            28px
            0;
    }


    .dm-blog-inline-image img {

        height: 260px;

        border-radius:
            25px
            4px
            25px
            4px;
    }


    .dm-blog-inline-image figcaption {

        font-size: 10px;
    }


    .dm-blog-info-list {

        grid-template-columns:
            1fr;

        gap: 10px;

        margin-top: 25px;
    }


    .dm-blog-info-list > div {

        min-height: auto;

        padding: 17px;
    }


    .dm-blog-info-list strong {

        font-size: 13px;
    }


    .dm-blog-info-list span {

        font-size: 12px;
    }


    .dm-blog-detail-share {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 18px;

        padding:
            22px
            20px;
    }


    .dm-blog-detail-share strong {

        font-size: 16px;
    }


    .dm-blog-detail-share a {

        width: 100%;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-blog-detail {

        padding:
            100px
            0
            55px;
    }


    .dm-blog-detail-header h1 {

        font-size: 29px;

        line-height: 1.18;
    }


    .dm-blog-detail-intro {

        font-size: 14px;
    }


    .dm-blog-detail-meta {

        gap: 10px;
    }


    .dm-blog-detail-meta span {

        font-size: 8px;
    }


    .dm-blog-detail-feature {

        height: 245px;

        border-radius:
            35px
            4px
            35px
            4px;
    }


    .dm-blog-article-section h2 {

        font-size: 22px;
    }


    .dm-blog-article-section p {

        font-size: 13.5px;

        line-height: 1.8;
    }


    .dm-blog-highlight {

        padding:
            19px
            17px;
    }


    .dm-blog-highlight li {

        font-size: 13px;
    }


    .dm-blog-inline-image img {

        height: 220px;
    }


    .dm-blog-detail-share strong {

        font-size: 15px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 400px) {

    .dm-blog-detail-header h1 {

        font-size: 27px;
    }


    .dm-blog-detail-intro {

        font-size: 13.5px;
    }


    .dm-blog-article-section h2 {

        font-size: 21px;
    }


    .dm-blog-article-section p {

        font-size: 13px;
    }


    .dm-blog-detail-feature {

        height: 210px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dm-blog-toc a,
    .dm-blog-info-list > div,
    .dm-blog-detail-share a {

        transition: none;
    }

}


/* =========================================================
   FACEBOOK COMMENTS
========================================================= */

.dm-blog-comments {
    margin-top: 80px;
    padding: 55px 50px;
    background: var(--dm-light);
    border-radius: 35px 5px 35px 5px;
    border: 1px solid var(--dm-border);
}


/* =========================================================
   COMMENTS HEADER
========================================================= */

.dm-blog-comments-header {
    max-width: 650px;
    margin-bottom: 35px;
}

.dm-blog-comments-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dm-blog-comments-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--dm-turquoise);
}

.dm-blog-comments-eyebrow strong {
    color: var(--dm-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.dm-blog-comments-header h2 {
    margin: 0 0 12px;
    color: var(--dm-primary);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

.dm-blog-comments-header p {
    margin: 0;
    color: var(--dm-text-secondary);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FACEBOOK INTRO BOX
========================================================= */

.dm-blog-comments-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    margin-bottom: 30px;
    background: var(--dm-white);
    border: 1px solid var(--dm-border);
    border-radius: 20px 4px 20px 4px;
}

.dm-blog-comments-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dm-primary-light);
    color: var(--dm-primary);

    border-radius: 50%;
    font-size: 21px;
}

.dm-blog-comments-content h3 {
    margin: 0 0 4px;
    color: var(--dm-primary);
    font-size: 17px;
    font-weight: 700;
}

.dm-blog-comments-content p {
    margin: 0;
    color: var(--dm-text-secondary);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FACEBOOK PLUGIN
========================================================= */

.dm-facebook-comments {
    width: 100%;
    min-height: 100px;
    background: var(--dm-white);
    padding: 25px;
    border-radius: 20px 4px 20px 4px;
    border: 1px solid var(--dm-border);
    overflow: hidden;
}

.dm-facebook-comments .fb-comments,
.dm-facebook-comments .fb-comments span,
.dm-facebook-comments iframe {
    max-width: 100% !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-blog-comments {
        margin-top: 55px;
        padding: 35px 20px;
        border-radius: 25px 4px 25px 4px;
    }

    .dm-blog-comments-header h2 {
        font-size: 26px;
    }

    .dm-blog-comments-header p {
        font-size: 14px;
    }

    .dm-blog-comments-box {
        padding: 16px;
    }

    .dm-blog-comments-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 18px;
    }

    .dm-blog-comments-content p {
        font-size: 12px;
    }

    .dm-facebook-comments {
        padding: 15px;
    }

}


/* =========================================================
   BLOG DETAIL MAIN WRAPPER
   IMPORTANT:
   Do NOT use overflow:hidden here.
   It prevents position: sticky from working.
========================================================= */

.dm-blog-detail {
    position: relative;
    overflow: visible !important;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.dm-blog-detail-layout {
    position: relative;

    display: grid;

    grid-template-columns:
        190px
        minmax(0, 780px);

    justify-content: center;

    align-items: start;

    gap: 60px;

    overflow: visible !important;
}


/* =========================================================
   SIDEBAR
   STICKY UNTIL ARTICLE CONTENT ENDS
========================================================= */

.dm-blog-detail-sidebar {
    position: sticky !important;

    top: 110px;

    align-self: start;

    height: fit-content;

    max-height: calc(100vh - 130px);

    overflow: visible !important;

    z-index: 20;
}


/* =========================================================
   TABLE OF CONTENTS
   NOT STICKY ITSELF
   The parent sidebar handles the sticky behavior.
========================================================= */

.dm-blog-toc {
    position: relative !important;

    top: auto !important;

    display: flex;

    flex-direction: column;

    gap: 0;

    width: 100%;

    padding: 28px 26px;

    background: var(--dm-white, #ffffff);

    border: 1px solid var(--dm-border, #e8edf2);

    border-radius: 24px 5px 24px 5px;

    box-shadow:
        var(
            --dm-shadow-sm,
            0 8px 30px rgba(0, 0, 0, 0.05)
        );

    overflow: visible !important;
}


/* =========================================================
   TOC LABEL
========================================================= */

.dm-blog-toc-label {

    margin-bottom: 18px;

    color:
        var(
            --dm-primary,
            #123b6d
        );

    font-size: 11px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   TOC LINKS
========================================================= */

.dm-blog-toc a {

    position: relative;

    display: block;

    padding:
        11px
        0
        11px
        17px;

    color:
        var(
            --dm-text,
            #444444
        );

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none;

    border-bottom:
        1px solid
        var(
            --dm-border,
            #e8edf2
        );

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


/* Remove border from last link */

.dm-blog-toc a:last-child {
    border-bottom: none;
}


/* =========================================================
   TOC DOT
========================================================= */

.dm-blog-toc a::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(
            --dm-turquoise,
            #0797b2
        );

    transform:
        translateY(-50%);

    opacity: 0.45;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   TOC HOVER
========================================================= */

.dm-blog-toc a:hover {

    color:
        var(
            --dm-primary,
            #123b6d
        );

    padding-left: 21px;
}


.dm-blog-toc a:hover::before {

    opacity: 1;

    transform:
        translateY(-50%)
        scale(1.3);
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.dm-blog-detail-content {

    width: 100%;

    min-width: 0;

    overflow: visible !important;
}


/* =========================================================
   ARTICLE SECTIONS
========================================================= */

.dm-blog-article-section {

    position: relative;

    overflow: visible;
}


/* =========================================================
   IMPORTANT:
   MAKE ALL RELEVANT ANCESTORS ALLOW STICKY
========================================================= */

.dm-blog-detail,
.dm-blog-detail-layout,
.dm-blog-detail-content,
.dm-blog-detail-sidebar {
    overflow-x: visible !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .dm-blog-detail-sidebar {

        position: sticky !important;

        top: 110px;

        align-self: start;

        height: fit-content;

        max-height:
            calc(100vh - 130px);
    }

}

/* =========================================================
   BLOG DETAIL LAYOUT
========================================================= */

.dm-blog-detail-layout {
    display: grid;
    align-items: start;
}


/* =========================================================
   LARGE DESKTOP
   1400px+
========================================================= */

@media (min-width: 1400px) {

    .dm-blog-detail-layout {

        grid-template-columns:
            280px
            minmax(0, 800px);

        gap: 50px;
    }


    .dm-blog-detail-sidebar {

        width: 280px;

        position: sticky;
        top: 110px;

        align-self: start;

        height: fit-content;
    }


    .dm-blog-toc {

        width: 100%;
    }

}


/* =========================================================
   DESKTOP
   1200px - 1399px
========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .dm-blog-detail-layout {

        grid-template-columns:
            250px
            minmax(0, 800px);

        gap: 45px;
    }


    .dm-blog-detail-sidebar {

        width: 250px;

        position: sticky;
        top: 110px;

        align-self: start;

        height: fit-content;
    }


    .dm-blog-toc {

        width: 100%;
    }

}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .dm-blog-detail-layout {

        grid-template-columns:
            230px
            minmax(0, 700px);

        gap: 40px;
    }


    .dm-blog-detail-sidebar {

        width: 230px;

        position: sticky;
        top: 100px;

        align-self: start;

        height: fit-content;
    }


    .dm-blog-toc {

        width: 100%;
    }


    .dm-blog-toc a {

        font-size: 13px;

        line-height: 1.5;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .dm-blog-detail-layout {

        display: block;

        overflow: visible !important;
    }


    .dm-blog-detail-sidebar {

        position: static !important;

        width: 100%;

        max-width: 100%;

        height: auto;

        margin-bottom: 40px;
    }


    .dm-blog-toc {

        position: relative !important;

        top: auto !important;

        width: 100%;
    }

}


/* =========================================================
   MOBILE
   0 - 767px
========================================================= */

@media (max-width: 767px) {

    .dm-blog-detail-layout {

        display: block;

        width: 100%;

        overflow: visible !important;
    }


    .dm-blog-detail-sidebar {

        position: static !important;

        width: 100%;

        max-width: 100%;

        height: auto;

        margin-bottom: 30px;
    }


    .dm-blog-toc {

        position: relative !important;

        top: auto !important;

        width: 100%;

        padding: 22px 20px;

        border-radius:
            20px
            4px
            20px
            4px;
    }


    .dm-blog-toc a {

        display: block;

        width: 100%;

        font-size: 13px;

        line-height: 1.5;

        padding:
            10px
            0
            10px
            15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   480px and below
========================================================= */

@media (max-width: 480px) {

    .dm-blog-detail-sidebar {

        margin-bottom: 25px;
    }


    .dm-blog-toc {

        padding: 20px 16px;

        border-radius:
            18px
            4px
            18px
            4px;
    }


    .dm-blog-toc a {

        font-size: 12.5px;

        padding:
            9px
            0
            9px
            13px;
    }

}


/* =========================================================
   BLOG SOCIAL SHARE
========================================================= */

.dm-blog-social-share {

    position: fixed;

    right: 28px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    z-index: 50;
}


/* SHARE LABEL */

.dm-blog-social-label {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    margin-bottom: 8px;

    color: var(--dm-text-secondary);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    opacity: .75;
}


/* SOCIAL BUTTON */

.dm-blog-social-btn {

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dm-border);

    border-radius:
        12px
        3px
        12px
        3px;

    background: var(--dm-white);

    color: var(--dm-primary);

    font-size: 16px;

    text-decoration: none;

    cursor: pointer;

    box-shadow: var(--dm-shadow-sm);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* HOVER */

.dm-blog-social-btn:hover {

    transform: translateX(-4px);

    background: var(--dm-primary);

    border-color: var(--dm-primary);

    color: #fff;

    box-shadow: var(--dm-shadow-md);
}


/* INDIVIDUAL BRAND HOVERS */

.dm-blog-social-btn.dm-facebook:hover {

    background: #1877f2;
    border-color: #1877f2;
}


.dm-blog-social-btn.dm-whatsapp:hover {

    background: #25d366;
    border-color: #25d366;
}


.dm-blog-social-btn.dm-twitter:hover {

    background: #000;
    border-color: #000;
}


.dm-blog-social-btn.dm-linkedin:hover {

    background: #0a66c2;
    border-color: #0a66c2;
}


/* COPY LINK */

.dm-blog-social-btn.dm-copy-link {

    font-family: inherit;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .dm-blog-social-share {

        right: 15px;
    }


    .dm-blog-social-btn {

        width: 38px;
        height: 38px;

        font-size: 14px;
    }

}


/* =========================================================
   HIDE ON TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

    .dm-blog-social-share {

        display: none;
    }

}












/* ================================================================
============================about page css============================
===================================================================== */


/* =========================================================
   ABOUT PAGE
   DRISTI MUKHOR
========================================================= */


/* =========================================================
   HERO
========================================================= */

.dm-about-hero {
    padding: 105px 0 100px;
    background: #F7F2E8;
}

.dm-about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 80px;
}

.dm-about-hero-content {
    max-width: 650px;
}

.dm-about-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dm-about-eyebrow span {
    width: 35px;
    height: 1px;
    background: var(--dm-turquoise);
}

.dm-about-eyebrow strong {
    color: var(--dm-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.dm-about-hero h1 {
    margin: 0 0 25px;
    color: var(--dm-primary);
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -2.5px;
}

.dm-about-hero h1 em {
    display: block;
    color: var(--dm-turquoise);
    font-style: italic;
    font-weight: 500;
}

.dm-about-hero p {
    max-width: 590px;
    margin: 0;
    color: var(--dm-text);
    font-size: 16px;
    line-height: 1.85;
}

.dm-about-hero-image {
    position: relative;
}

.dm-about-hero-image img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 45px 6px 45px 6px;
    box-shadow: var(--dm-shadow-md);
}

.dm-about-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px 5px 30px 5px;

    color: var(--dm-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dm-about-image-badge i {
    color: var(--dm-turquoise);
    font-size: 17px;
}


/* =========================================================
   STORY
========================================================= */

.dm-about-story {
    padding: 115px 0;
    background: #ffffff;
}

.dm-about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 90px;
}

.dm-about-story-images {
    position: relative;
    min-height: 570px;
}

.dm-about-story-image-main {
    width: 78%;
    height: 500px;
    overflow: hidden;
    border-radius: 40px 5px 40px 5px;
}

.dm-about-story-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dm-about-story-image-main:hover img {
    transform: scale(1.04);
}

.dm-about-story-image-small {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 42%;
    height: 240px;

    overflow: hidden;

    border: 8px solid #ffffff;
    border-radius: 30px 4px 30px 4px;
    box-shadow: var(--dm-shadow-md);
}

.dm-about-story-image-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dm-about-story-location {
    position: absolute;
    left: 25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.94);
    border-radius: 25px;

    color: var(--dm-primary);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.dm-about-story-location i {
    color: var(--dm-turquoise);
}

.dm-about-section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.dm-about-section-label span {
    color: var(--dm-turquoise);
    font-size: 12px;
    font-weight: 700;
}

.dm-about-section-label strong {
    color: var(--dm-primary);
    font-size: 10px;
    letter-spacing: 1.8px;
}

.dm-about-story-content h2 {
    margin: 0 0 28px;
    color: var(--dm-primary);
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1.7px;
}

.dm-about-story-content h2 em {
    color: var(--dm-turquoise);
    font-style: italic;
    font-weight: 500;
}

.dm-about-story-content p {
    margin: 0 0 20px;
    color: var(--dm-text);
    font-size: 16px;
    line-height: 1.9;
}

.dm-about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;

    color: var(--dm-primary);
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    border-bottom: 1px solid var(--dm-primary);
    padding-bottom: 6px;

    transition: all 0.3s ease;
}

.dm-about-text-link:hover {
    color: var(--dm-turquoise);
    border-color: var(--dm-turquoise);
}

.dm-about-text-link i {
    font-size: 15px;
}


/* =========================================================
   VALUES
========================================================= */

.dm-about-values {
    padding: 110px 0;
    background: #F9F7F3;
}

.dm-about-values-header {
    max-width: 700px;
    margin-bottom: 55px;
}

.dm-about-eyebrow-left {
    justify-content: flex-start;
}

.dm-about-values-header h2 {
    margin: 0;
    color: var(--dm-primary);
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1.7px;
}

.dm-about-values-header h2 em {
    color: var(--dm-turquoise);
    font-style: italic;
    font-weight: 500;
}

.dm-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dm-about-value {
    overflow: hidden;
    background: #ffffff;
    border-radius: 32px 5px 32px 5px;
    border: 1px solid rgba(18, 59, 109, 0.07);
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
}

.dm-about-value:hover {
    transform: translateY(-7px);
    box-shadow: var(--dm-shadow-md);
}

.dm-about-value-image {
    height: 220px;
    overflow: hidden;
}

.dm-about-value-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dm-about-value:hover .dm-about-value-image img {
    transform: scale(1.05);
}

.dm-about-value-body {
    position: relative;
    padding: 30px;
}

.dm-about-value-number {
    position: absolute;
    top: 30px;
    right: 30px;

    color: rgba(18, 59, 109, 0.25);

    font-size: 11px;
    font-weight: 700;
}

.dm-about-value-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: var(--dm-primary-light);
    color: var(--dm-turquoise);

    border-radius: 50%;

    font-size: 20px;
}

.dm-about-value h3 {
    margin: 0 0 12px;
    color: var(--dm-primary);
    font-size: 23px;
    font-weight: 600;
}

.dm-about-value p {
    margin: 0;
    color: var(--dm-text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.dm-about-destinations {
    padding: 110px 0;
    background: #ffffff;
}

.dm-about-destinations-header {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.dm-about-destinations-header h2 {
    margin: 0 0 15px;
    color: var(--dm-primary);
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.dm-about-destinations-header h2 em {
    color: var(--dm-turquoise);
    font-style: italic;
    font-weight: 500;
}

.dm-about-destinations-header p {
    margin: 0;
    color: var(--dm-text);
    font-size: 15px;
    line-height: 1.8;
}

.dm-about-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dm-about-destination {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 30px 5px 30px 5px;
}

.dm-about-destination img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dm-about-destination:hover img {
    transform: scale(1.06);
}

.dm-about-destination::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 44, 82, 0.78),
        rgba(13, 44, 82, 0.05) 65%
    );
}

.dm-about-destination-overlay {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
}

.dm-about-destination-overlay span {
    display: block;
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.dm-about-destination-overlay strong {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
}


/* =========================================================
   CTA
========================================================= */

.dm-about-cta {
    padding: 110px 0;
    background: #F7F2E8;
}

.dm-about-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.dm-about-cta-inner h2 {
    margin: 0 0 20px;

    color: var(--dm-primary);

    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;

    font-weight: 600;
    letter-spacing: -1.8px;
}

.dm-about-cta-inner h2 em {
    color: var(--dm-turquoise);
    font-style: italic;
    font-weight: 500;
}

.dm-about-cta-inner p {
    max-width: 550px;
    margin: 0 auto 30px;

    color: var(--dm-text);

    font-size: 16px;
    line-height: 1.8;
}

.dm-about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 14px 24px;

    background: var(--dm-primary);
    color: #ffffff;

    text-decoration: none;

    border-radius: 30px 5px 30px 5px;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.dm-about-cta-btn:hover {
    background: var(--dm-turquoise);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-about-hero {
        padding: 80px 0;
    }

    .dm-about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dm-about-hero-content {
        max-width: 750px;
    }

    .dm-about-hero-image img {
        height: 500px;
    }

    .dm-about-story {
        padding: 85px 0;
    }

    .dm-about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dm-about-story-images {
        min-height: 500px;
    }

    .dm-about-values {
        padding: 85px 0;
    }

    .dm-about-values-grid {
        grid-template-columns: 1fr;
    }

    .dm-about-destinations {
        padding: 85px 0;
    }

    .dm-about-destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dm-about-destination:last-child {
        grid-column: span 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-about-hero {
        padding: 65px 0 70px;
    }

    .dm-about-hero h1 {
        font-size: 42px;
        letter-spacing: -1.2px;
    }

    .dm-about-hero p {
        font-size: 15px;
    }

    .dm-about-hero-image img {
        height: 380px;
        border-radius: 30px 5px 30px 5px;
    }

    .dm-about-story {
        padding: 65px 0;
    }

    .dm-about-story-images {
        min-height: 410px;
    }

    .dm-about-story-image-main {
        width: 82%;
        height: 370px;
    }

    .dm-about-story-image-small {
        width: 45%;
        height: 180px;
        border-width: 5px;
    }

    .dm-about-story-location {
        left: 15px;
        bottom: 20px;
    }

    .dm-about-story-content h2 {
        font-size: 36px;
    }

    .dm-about-story-content p {
        font-size: 15px;
    }

    .dm-about-values {
        padding: 65px 0;
    }

    .dm-about-values-header {
        margin-bottom: 40px;
    }

    .dm-about-values-header h2 {
        font-size: 36px;
    }

    .dm-about-value-image {
        height: 210px;
    }

    .dm-about-value-body {
        padding: 27px;
    }

    .dm-about-destinations {
        padding: 65px 0;
    }

    .dm-about-destinations-header {
        margin-bottom: 40px;
    }

    .dm-about-destinations-header h2 {
        font-size: 36px;
    }

    .dm-about-destination-grid {
        grid-template-columns: 1fr;
    }

    .dm-about-destination {
        height: 350px;
    }

    .dm-about-destination:last-child {
        grid-column: auto;
    }

    .dm-about-cta {
        padding: 70px 0;
    }

    .dm-about-cta-inner h2 {
        font-size: 38px;
    }

}







/* ===============================================================================================
==============================gallery page css=====================================================
============================================================================================= */










/* =========================================================
   DRISTI MUKHOR
   GALLERY PAGE
========================================================= */

:root {

    --dm-gallery-ivory: #F8F5EF;
    --dm-gallery-white: #FFFFFF;
    --dm-gallery-dark: #172B3F;
    --dm-gallery-text: #3F4B55;
    --dm-gallery-muted: #7D858B;
    --dm-gallery-gold: #B28A52;
    --dm-gallery-border: #E7E0D5;

}


/* =========================================================
   HERO
========================================================= */

.dm-gallery-hero {

    background: var(--dm-gallery-ivory);

    padding:
        120px
        0
        105px;

    text-align: center;

    position: relative;

    overflow: hidden;

}


.dm-gallery-hero-inner {

    max-width: 850px;

    margin: 0 auto;

}


.dm-gallery-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 25px;

}


.dm-gallery-eyebrow span {

    width: 42px;

    height: 1px;

    background: var(--dm-gallery-gold);

}


.dm-gallery-eyebrow strong {

    color: var(--dm-gallery-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.dm-gallery-hero h1 {

    margin: 0;

    color: var(--dm-gallery-dark);

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -2px;

}


.dm-gallery-hero h1 em {

    color: var(--dm-gallery-gold);

    font-family: Georgia, serif;

    font-weight: 400;

}


.dm-gallery-hero p {

    max-width: 620px;

    margin:
        28px
        auto
        0;

    color: var(--dm-gallery-muted);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   GALLERY SECTION
========================================================= */

.dm-gallery-section {

    background: var(--dm-gallery-white);

    padding:
        100px
        0
        120px;

}


/* =========================================================
   GRID
========================================================= */

.dm-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    grid-auto-rows: 360px;

    gap: 18px;

}


/* =========================================================
   GALLERY ITEM
========================================================= */

.dm-gallery-item {

    min-width: 0;

    min-height: 0;

}


.dm-gallery-item-large {

    grid-column: span 2;

    grid-row: span 2;

}


.dm-gallery-image-btn {

    position: relative;

    display: block;

    width: 100%;

    height: 100%;

    padding: 0;

    border: 0;

    overflow: hidden;

    cursor: pointer;

    background: #ddd;

    text-align: left;

}


.dm-gallery-image-btn img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.65,.2,1);

}


.dm-gallery-image-btn:hover img {

    transform: scale(1.06);

}


/* =========================================================
   OVERLAY
========================================================= */

.dm-gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10, 25, 40, .82) 0%,
            rgba(10, 25, 40, .22) 45%,
            rgba(10, 25, 40, 0) 70%
        );

    opacity: .9;

    transition: opacity .4s ease;

}


.dm-gallery-image-btn:hover .dm-gallery-overlay {

    opacity: 1;

}


/* =========================================================
   IMAGE NUMBER
========================================================= */

.dm-gallery-number {

    position: absolute;

    top: 20px;

    left: 20px;

    color: rgba(255,255,255,.85);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

}


/* =========================================================
   OPEN ICON
========================================================= */

.dm-gallery-open {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.35);

    backdrop-filter: blur(8px);

    border-radius: 50%;

    font-size: 16px;

    transition:
        background .3s ease,
        transform .3s ease;

}


.dm-gallery-image-btn:hover .dm-gallery-open {

    background: var(--dm-gallery-gold);

    border-color: var(--dm-gallery-gold);

    transform: rotate(45deg);

}


/* =========================================================
   IMAGE INFORMATION
========================================================= */

.dm-gallery-info {

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 23px;

}


.dm-gallery-location {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color: rgba(255,255,255,.82);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.dm-gallery-location i {

    color: var(--dm-gallery-gold);

    font-size: 13px;

}


.dm-gallery-info h2 {

    margin: 0;

    color: #fff;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 500;

}


.dm-gallery-item-large .dm-gallery-info h2 {

    font-size: 34px;

}


/* =========================================================
   PAGINATION
========================================================= */

.dm-gallery-pagination {

    display: flex;

    justify-content: center;

    margin-top: 65px;

}


.dm-gallery-pagination .pagination {

    gap: 7px;

}


.dm-gallery-pagination .page-link {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--dm-gallery-border);

    border-radius: 50%;

    color: var(--dm-gallery-dark);

    background: #fff;

    font-size: 13px;

    box-shadow: none;

}


.dm-gallery-pagination .page-link:hover {

    color: #fff;

    background: var(--dm-gallery-dark);

    border-color: var(--dm-gallery-dark);

}


.dm-gallery-pagination .active .page-link {

    color: #fff;

    background: var(--dm-gallery-gold);

    border-color: var(--dm-gallery-gold);

}


/* =========================================================
   EMPTY STATE
========================================================= */

.dm-gallery-empty {

    max-width: 600px;

    margin: 40px auto;

    padding: 80px 30px;

    text-align: center;

    border:
        1px solid
        var(--dm-gallery-border);

    background: var(--dm-gallery-ivory);

}


.dm-gallery-empty-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: var(--dm-gallery-gold);

    font-size: 26px;

}


.dm-gallery-empty h3 {

    margin-bottom: 10px;

    color: var(--dm-gallery-dark);

    font-size: 25px;

    font-weight: 500;

}


.dm-gallery-empty p {

    margin: 0;

    color: var(--dm-gallery-muted);

    font-size: 14px;

}


/* =========================================================
   MODAL
========================================================= */

.dm-gallery-modal .modal-dialog {

    max-width: 1100px;

}


.dm-gallery-modal .modal-content {

    position: relative;

    overflow: hidden;

    border: 0;

    border-radius:
        30px
        5px
        30px
        5px;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

}


.dm-gallery-modal-image {

    width: 100%;

    height: min(70vh, 700px);

    background: #101820;

}


.dm-gallery-modal-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

}


.dm-gallery-modal-content {

    padding:
        28px
        35px
        32px;

}


.dm-gallery-modal-location {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 9px;

    color: var(--dm-gallery-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.dm-gallery-modal-content h2 {

    margin: 0 0 10px;

    color: var(--dm-gallery-dark);

    font-size: 30px;

    font-weight: 500;

}


.dm-gallery-modal-content p {

    max-width: 750px;

    margin: 0;

    color: var(--dm-gallery-muted);

    font-size: 14px;

    line-height: 1.8;

}


.dm-gallery-modal-close {

    position: absolute;

    z-index: 10;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background: rgba(0,0,0,.45);

    backdrop-filter: blur(8px);

    cursor: pointer;

}


.dm-gallery-modal-close:hover {

    background: var(--dm-gallery-gold);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-gallery-hero {

        padding:
            95px
            0
            80px;

    }


    .dm-gallery-section {

        padding:
            75px
            0
            90px;

    }


    .dm-gallery-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-rows: 300px;

    }


    .dm-gallery-item-large {

        grid-column: span 2;

        grid-row: span 1;

    }


    .dm-gallery-item-large .dm-gallery-info h2 {

        font-size: 28px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-gallery-hero {

        padding:
            75px
            0
            65px;

    }


    .dm-gallery-eyebrow {

        gap: 10px;

    }


    .dm-gallery-eyebrow span {

        width: 25px;

    }


    .dm-gallery-eyebrow strong {

        font-size: 9px;

        letter-spacing: 2px;

    }


    .dm-gallery-hero h1 {

        font-size: 45px;

        letter-spacing: -1.5px;

    }


    .dm-gallery-hero p {

        padding: 0 15px;

        font-size: 14px;

    }


    .dm-gallery-section {

        padding:
            55px
            0
            70px;

    }


    .dm-gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 310px;

        gap: 12px;

    }


    .dm-gallery-item-large {

        grid-column: span 1;

        grid-row: span 1;

    }


    .dm-gallery-info {

        left: 18px;

        right: 18px;

        bottom: 18px;

    }


    .dm-gallery-info h2,
    .dm-gallery-item-large .dm-gallery-info h2 {

        font-size: 22px;

    }


    .dm-gallery-number {

        top: 15px;

        left: 15px;

    }


    .dm-gallery-open {

        top: 13px;

        right: 13px;

        width: 38px;

        height: 38px;

    }


    .dm-gallery-modal-image {

        height: 55vh;

    }


    .dm-gallery-modal-content {

        padding:
            22px
            22px
            25px;

    }


    .dm-gallery-modal-content h2 {

        font-size: 24px;

    }

}
/* =========================================================
   GALLERY MODAL
========================================================= */

.dm-gallery-modal {
    padding: 0 !important;
}


/* =========================================================
   MODAL DIALOG
========================================================= */

.dm-gallery-modal .modal-dialog {
    max-width: 1180px;
    width: calc(100% - 40px);
    margin: 30px auto;
}


.dm-gallery-modal .modal-content {
    position: relative;
    overflow: hidden;

    border: 0;
    border-radius: 35px 6px 35px 6px;

    background: var(--dm-primary-dark);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.dm-gallery-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 20;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    color: #ffffff;

    font-size: 17px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.dm-gallery-modal-close:hover {
    background: var(--dm-turquoise);

    border-color: var(--dm-turquoise);

    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.dm-gallery-modal-image {
    position: relative;

    width: 100%;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px 90px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.06),
            transparent 60%
        );
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.dm-gallery-modal-image img {
    display: block;

    width: auto;
    max-width: 100%;

    height: 560px;

    object-fit: contain;

    border-radius: 20px 4px 20px 4px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}


/* =========================================================
   PREVIOUS / NEXT BUTTONS
========================================================= */

.dm-gallery-modal-nav {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.dm-gallery-modal-nav:hover {
    background: var(--dm-turquoise);

    border-color: var(--dm-turquoise);

    transform:
        translateY(-50%)
        scale(1.08);
}


.dm-gallery-modal-prev {
    left: 25px;
}


.dm-gallery-modal-next {
    right: 25px;
}


/* =========================================================
   IMAGE COUNTER
========================================================= */

.dm-gallery-modal-counter {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 70px;

    padding: 8px 15px;

    border-radius: 30px;

    background: rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    backdrop-filter: blur(10px);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.dm-gallery-modal-content {
    position: relative;

    padding: 32px 45px 38px;

    background: #ffffff;

    color: var(--dm-text);
}


/* =========================================================
   CATEGORY
========================================================= */

.dm-gallery-modal-category {
    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    margin-bottom: 14px;

    border-radius:
        15px
        3px
        15px
        3px;

    background: var(--dm-primary-light);

    color: var(--dm-primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   LOCATION
========================================================= */

.dm-gallery-modal-location {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color: var(--dm-turquoise);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


.dm-gallery-modal-location i {
    font-size: 14px;
}


/* =========================================================
   TITLE
========================================================= */

.dm-gallery-modal-content h2 {
    margin: 0 0 13px;

    color: var(--dm-primary);

    font-size: clamp(26px, 3vw, 38px);

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dm-gallery-modal-content p {
    max-width: 850px;

    margin: 0;

    color: var(--dm-text-secondary);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   GROUP LABEL
========================================================= */

.dm-gallery-modal-group-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--dm-border);

    color: var(--dm-primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.dm-gallery-modal-group-label::before {
    content: "";

    width: 25px;
    height: 1px;

    background: var(--dm-turquoise);
}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop.show {
    opacity: 0.82;
}


/* =========================================================
   MODAL ANIMATION
========================================================= */

.dm-gallery-modal .modal-dialog {
    transform: translateY(25px) scale(0.97);

    transition:
        transform 0.35s ease;
}


.dm-gallery-modal.show .modal-dialog {
    transform: translateY(0) scale(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dm-gallery-modal .modal-dialog {
        width: calc(100% - 30px);

        margin: 20px auto;
    }


    .dm-gallery-modal-image {

        min-height: 450px;

        padding:
            30px
            75px;

    }


    .dm-gallery-modal-image img {

        height: 450px;

        max-width: 100%;

    }


    .dm-gallery-modal-content {

        padding:
            28px
            30px
            32px;

    }


    .dm-gallery-modal-prev {
        left: 15px;
    }


    .dm-gallery-modal-next {
        right: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .dm-gallery-modal .modal-dialog {

        width: calc(100% - 20px);

        margin: 10px auto;

    }


    .dm-gallery-modal .modal-content {

        border-radius:
            25px
            4px
            25px
            4px;

    }


    .dm-gallery-modal-image {

        min-height: 330px;

        height: 330px;

        padding:
            20px
            55px;

    }


    .dm-gallery-modal-image img {

        width: 100%;

        height: 290px;

        object-fit: contain;

        border-radius:
            15px
            3px
            15px
            3px;

    }


    .dm-gallery-modal-close {

        top: 12px;

        right: 12px;

        width: 38px;

        height: 38px;

        font-size: 14px;

    }


    .dm-gallery-modal-nav {

        width: 42px;

        height: 42px;

        font-size: 17px;

    }


    .dm-gallery-modal-prev {

        left: 10px;

    }


    .dm-gallery-modal-next {

        right: 10px;

    }


    .dm-gallery-modal-counter {

        bottom: 12px;

        padding:
            6px
            12px;

        font-size: 10px;

    }


    .dm-gallery-modal-content {

        padding:
            24px
            22px
            28px;

    }


    .dm-gallery-modal-category {

        font-size: 9px;

        padding:
            6px
            11px;

    }


    .dm-gallery-modal-location {

        font-size: 11px;

    }


    .dm-gallery-modal-content h2 {

        font-size: 25px;

        line-height: 1.25;

    }


    .dm-gallery-modal-content p {

        font-size: 13px;

        line-height: 1.75;

    }


    .dm-gallery-modal-group-label {

        margin-top: 20px;

        padding-top: 17px;

        font-size: 9px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-gallery-modal-image {

        height: 280px;

        min-height: 280px;

        padding:
            15px

    }


    .dm-gallery-modal-image img {

        height: 245px;

    }


    .dm-gallery-modal-content h2 {

        font-size: 22px;

    }


    .dm-gallery-modal-content {

        padding:
            22px
            18px
            25px;

    }

}