/*
=========================================================
DANUBE BDP
NAVBAR + HERO
=========================================================
*/


@import url(
    'https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@400;500;600&display=swap'
);



/* =====================================================
   RESET
===================================================== */

.danube-bdp-page {

    margin: 0;

    background: #071221;

    color: #fff;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    overflow-x: hidden;

}


.danube-bdp-page *,
.danube-bdp-page *::before,
.danube-bdp-page *::after {

    box-sizing: border-box;

}


.danube-bdp-page a {

    color: inherit;

    text-decoration: none;

}


.danube-bdp-page img {

    display: block;

    max-width: 100%;

}



/* =====================================================
   NAVBAR
===================================================== */

.dbp-navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 86px;

    z-index: 1000;

    background: #f4f1eb;

    border-bottom:
        1px solid
        rgba(0,0,0,.12);

    box-shadow:
        0 5px 25px
        rgba(0,0,0,.08);

}


.dbp-navbar-inner {

    width: 100%;

    height: 100%;

    padding:
        0
        clamp(20px, 3.5vw, 60px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}



/* LOGOS */

.dbp-logos {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;

}


.dbp-logo-danube {

    width: 155px;

}


.dbp-logo-danube img {

    width: 100%;

}


.dbp-logo-divider {

    width: 1px;

    height: 40px;

    background:
        rgba(40,40,40,.22);

}


.dbp-logo-bdp {

    width: 95px;

}


.dbp-logo-bdp img {

    width: 100%;

}



/* NAV */

.dbp-navigation {

    display: flex;

    align-items: center;

    gap: 34px;

}


.dbp-navigation a {

    position: relative;

    color: #34373a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .15em;

    transition:
        color .3s ease;

}


.dbp-navigation a:hover {

    color: #b2822b;

}


.dbp-navigation
.dbp-nav-active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -13px;

    width: 34px;

    height: 2px;

    background: #c79b45;

    transform:
        translateX(-50%);

}



/* NAV RIGHT */

.dbp-nav-right {

    display: flex;

    align-items: center;

    gap: 22px;

}


.dbp-advisor {

    display: flex;

    align-items: center;

    gap: 9px;

}


.dbp-advisor-icon {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #c79b45;

    border-radius: 50%;

    color: #a97924;

}


.dbp-advisor-details {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.dbp-advisor-details small {

    color: #88847c;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .16em;

}


.dbp-advisor-details strong {

    color: #282c31;

    font-size: 14px;

}


.dbp-book-button {

    min-width: 145px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #efd596,
            #c99942
        );

    color: #201b12;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.dbp-book-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 20px
        rgba(150,110,40,.25);

}



/* =====================================================
   HERO
===================================================== */

.dbp-hero {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 760px;

    max-height: 1000px;

    overflow: hidden;

    isolation: isolate;

    background: #071221;

}



/* BACKGROUND */

.dbp-hero-bg {

    position: absolute;

    inset: 0;

    z-index: -10;

    background:

        radial-gradient(
            ellipse at 65% 45%,
            #183453 0%,
            #0c2038 37%,
            #071221 75%
        );

}


.dbp-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -9;

    background:

        linear-gradient(
            90deg,
            rgba(3,12,26,.35),
            transparent 65%
        );

}



/* =====================================================
   PLANE
   BELOW BUILDING
===================================================== */

.dbp-plane {

    position: absolute;

    z-index: 2;

    top: 5%;

    left: 56%;

    width:
        clamp(
            300px,
            28vw,
            520px
        );

    pointer-events: none;

    opacity: 0;

    animation:
        dbp-plane-entry
        1.1s
        ease-out
        .25s
        forwards,

        dbp-plane-float
        6s
        ease-in-out
        1.35s
        infinite;

}


.dbp-plane img {

    width: 100%;

    filter:
        drop-shadow(
            0 16px 25px
            rgba(0,0,0,.42)
        );

}


@keyframes dbp-plane-entry {

    from {

        opacity: 0;

        transform:
            translateX(-50%)
            translateY(-40px)
            scale(.88);

    }

    to {

        opacity: 1;

        transform:
            translateX(-50%)
            translateY(0)
            scale(1);

    }

}


@keyframes dbp-plane-float {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0)
            rotate(-1deg);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-13px)
            rotate(1deg);

    }

}



/* =====================================================
   BUILDING
   ABOVE PLANE
===================================================== */

.dbp-building {

    position: absolute;

    z-index: 5;

    left: 56%;

    bottom: 4%;

    width:
        clamp(
            420px,
            42vw,
            650px
        );

    height: 91%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    pointer-events: none;

    opacity: 0;

    animation:
        dbp-building-entry
        1.4s
        cubic-bezier(.16,1,.3,1)
        .45s
        forwards;

    filter:
        drop-shadow(
            -18px 25px 38px
            rgba(0,0,0,.5)
        );

}


.dbp-building img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position:
        center bottom;

}


@keyframes dbp-building-entry {

    from {

        opacity: 0;

        transform:
            translateX(-50%)
            translateY(80px)
            scale(.9);

    }

    to {

        opacity: 1;

        transform:
            translateX(-50%)
            translateY(-30px)
            scale(1);

    }

}



/* =====================================================
   HERO CONTAINER
===================================================== */

.dbp-hero-container {

    position: relative;

    z-index: 10;

    width: 100%;

    height: 100%;

    padding:
        120px
        clamp(25px,3.7vw,60px)
        35px;

    display: flex;

    align-items: center;

}



/* =====================================================
   HERO LEFT
===================================================== */

.dbp-hero-content {

    position: relative;

    z-index: 20;

    width:
        min(
            650px,
            51vw
        );

    animation:
        dbp-content-entry
        1s
        ease-out
        .15s
        both;

}


@keyframes dbp-content-entry {

    from {

        opacity: 0;

        transform:
            translateX(-40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}



/* EYEBROW */

.dbp-eyebrow {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: #e0bf76;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .18em;

}


.dbp-eyebrow span {

    width: 38px;

    height: 1px;

    background: #d4a84f;

}


.dbp-eyebrow b {

    font-size: 7px;

    color: #d4a84f;

}



/* =====================================================
   HERO TITLE
===================================================== */

.dbp-hero-content h1 {

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            65px,
            6.6vw,
            105px
        );

    font-weight: 400;

    line-height: .88;

    letter-spacing: -.05em;

}


.dbp-hero-content h1 span {

    display: block;

    color: #f3f0e9;

}


.dbp-hero-content h1 i {

    margin-left: 5px;

    font-size: .58em;

}


.dbp-hero-content h1 strong {

    display: block;

    margin-top: 7px;

    color: #d5a447;

    font-weight: 500;

}



/* =====================================================
   SUBTITLE
===================================================== */

.dbp-hero-subtitle {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 27px;

    color: #f4f0e8;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .22em;

}


.dbp-hero-subtitle > span {

    width: 37px;

    height: 1px;

    background: #d3a348;

}


.dbp-hero-subtitle i {

    width: 150px;

    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            #d3a348 0 4px,
            transparent 4px 8px
        );

}



/* =====================================================
   OFFER CARDS
===================================================== */

.dbp-offers {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;

    max-width: 625px;

    margin-top: 24px;

}


.dbp-offer-card {

    min-height: 100px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    background:
        linear-gradient(
            135deg,
            #f0d797,
            #c99a43
        );

    color: #1d1b17;

    cursor: pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.dbp-offer-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 16px 28px
        rgba(0,0,0,.28);

}


.dbp-offer-icon {

    width: 49px;

    height: 49px;

    flex: 0 0 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #071629;

    color: #f1d17f;

    font-size: 22px;

    font-weight: 700;

    transition:
        transform .35s ease;

}


.dbp-offer-card:hover
.dbp-offer-icon {

    transform:
        rotate(10deg)
        scale(1.1);

}


.dbp-offer-card small {

    display: block;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .17em;

}


.dbp-offer-card strong {

    display: block;

    margin-top: 3px;

    font-size: 25px;

    line-height: 1;

}


.dbp-offer-card span {

    display: block;

    margin-top: 6px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .12em;

}



/* =====================================================
   BENEFITS
===================================================== */

.dbp-benefits {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    max-width: 625px;

    margin-top: 12px;

    border:
        1px solid
        rgba(211,165,70,.5);

    background:
        rgba(4,18,34,.78);

    backdrop-filter:
        blur(8px);

}


.dbp-benefit {

    min-height: 112px;

    padding: 13px 14px;

    border-right:
        1px solid
        rgba(211,165,70,.3);

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition:
        transform .35s ease,
        background .35s ease;

}


.dbp-benefit:last-child {

    border-right: 0;

}


.dbp-benefit:hover {

    transform:
        translateY(-5px);

    background:
        rgba(211,165,70,.08);

}


.dbp-benefit-icon {

    width: 37px;

    height: 37px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #d5ad5d;

    border-radius: 50%;

    color: #f0cd79;

    font-size: 14px;

    font-weight: 700;

}


.dbp-benefit strong {

    color: #eee0bb;

    font-size: 10px;

    font-weight: 800;

}


.dbp-benefit b {

    margin-top: 3px;

    color: #eac66f;

    font-size: 9px;

}


.dbp-benefit small {

    margin-top: 5px;

    color: #8693a3;

    font-size: 8px;

}



/* NOTE */

.dbp-note {

    margin-top: 9px;

    color: #8390a1;

    font-size: 8px;

    letter-spacing: .12em;

}



/* =====================================================
   FORM
===================================================== */

.dbp-form-box {

    position: absolute;

    z-index: 30;

    top: 50%;

    right:
        clamp(
            25px,
            3.7vw,
            60px
        );

    width:
        min(
            365px,
            29vw
        );

    padding:
        29px 26px;

    background:
        rgba(4,17,32,.96);

    border:
        1px solid
        rgba(213,169,77,.7);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.48);

    backdrop-filter:
        blur(12px);

    transform:
        translateY(-50%)
        translateX(45px);

    opacity: 0;

    animation:
        dbp-form-entry
        1s
        cubic-bezier(.16,1,.3,1)
        .7s
        forwards;

}


@keyframes dbp-form-entry {

    from {

        opacity: 0;

        transform:
            translateY(-50%)
            translateX(45px);

    }

    to {

        opacity: 1;

        transform:
            translateY(-50%)
            translateX(0);

    }

}



/* FORM DECORATION */

.dbp-form-decoration {

    position: absolute;

    width: 30px;

    height: 30px;

}


.dbp-form-decoration.top {

    top: -1px;

    left: -1px;

    border-top:
        2px solid
        #d5a84e;

    border-left:
        2px solid
        #d5a84e;

}


.dbp-form-decoration.bottom {

    right: -1px;

    bottom: -1px;

    border-right:
        2px solid
        #d5a84e;

    border-bottom:
        2px solid
        #d5a84e;

}



/* FORM HEADING */

.dbp-form-heading {

    color: #f2eee6;

    font-size: 25px;

    line-height: 1.05;

    font-weight: 800;

}


.dbp-form-heading strong {

    display: block;

    margin-top: 4px;

    color: #e2bf70;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 500;

}


.dbp-form-line {

    width: 50px;

    height: 2px;

    margin: 15px 0;

    background: #d4a64b;

}


.dbp-form-content p {

    margin:
        0 0 15px;

    color: #9aa7b7;

    font-size: 11px;

    line-height: 1.55;

}



/* INPUTS */

.dbp-form-content input,
.dbp-form-content select {

    width: 100%;

    height: 45px;

    margin-bottom: 9px;

    padding:
        0 12px;

    outline: none;

    border:
        1px solid
        #344256;

    border-radius: 0;

    background:
        rgba(22,35,53,.9);

    color: #fff;

    font-size: 11px;

    transition:
        border-color .25s ease,
        background .25s ease;

}


.dbp-form-content input::placeholder {

    color: #7d8998;

}


.dbp-form-content input:focus,
.dbp-form-content select:focus {

    border-color:
        #d5a84e;

    background:
        rgba(30,44,63,.98);

}



/* SUBMIT */

.dbp-form-content button {

    width: 100%;

    height: 47px;

    border: 0;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #f0d99d,
            #c7983f
        );

    color: #18150f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .18em;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.dbp-form-content button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 22px
        rgba(200,150,55,.25);

}



/* WHATSAPP */

.dbp-whatsapp {

    width: 100%;

    height: 44px;

    margin-top: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        rgba(41,211,106,.6);

    background:
        rgba(5,76,47,.3);

    color:
        #72e6a2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .13em;

    transition:
        transform .3s ease,
        background .3s ease;

}


.dbp-whatsapp:hover {

    transform:
        translateY(-3px);

    background:
        rgba(7,95,58,.5);

}


.dbp-whatsapp span {

    color:
        #29d36a;

}


.dbp-security {

    display: block;

    margin-top: 11px;

    text-align: center;

    color: #6e7b8b;

    font-size: 8px;

}



/* =====================================================
   PLACEHOLDER SECTIONS
===================================================== */

.dbp-placeholder {

    min-height: 500px;

    background: #071221;

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .dbp-navigation {

        gap: 20px;

    }


    .dbp-navigation a {

        font-size: 9px;

    }


    .dbp-advisor {

        display: none;

    }


    .dbp-logo-danube {

        width: 125px;

    }


    .dbp-logo-bdp {

        width: 80px;

    }


    .dbp-book-button {

        min-width: 125px;

    }


    .dbp-form-box {

        width: 285px;

    }


    .dbp-hero-content {

        width: 54vw;

    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .dbp-navbar {

        height: 70px;

    }


    .dbp-navbar-inner {

        padding:
            0 15px;

    }


    .dbp-navigation {

        display: none;

    }


    .dbp-logo-danube {

        width: 105px;

    }


    .dbp-logo-bdp {

        width: 68px;

    }


    .dbp-logo-divider {

        height: 31px;

    }


    .dbp-book-button {

        min-width: 105px;

        height: 38px;

        font-size: 8px;

    }


    .dbp-hero {

        min-height: 1450px;

        height: auto;

        max-height: none;

    }


    .dbp-hero-container {

        height: auto;

        min-height: 1450px;

        padding:
            105px
            18px
            40px;

        display: block;

    }


    .dbp-hero-content {

        width: 100%;

    }


    .dbp-hero-content h1 {

        font-size: 54px;

    }


    .dbp-plane {

        left: 50%;

        top: 9%;

        width: 70vw;

    }


    .dbp-building {

        left: 50%;

        bottom: 430px;

        width: 100vw;

        height: 54%;

    }


    .dbp-offers {

        grid-template-columns: 1fr;

    }


    .dbp-benefits {

        grid-template-columns: 1fr 1fr;

    }


    .dbp-benefit:nth-child(2) {

        border-right: 0;

    }


    .dbp-benefit:nth-child(3),
    .dbp-benefit:nth-child(4) {

        border-top:
            1px solid
            rgba(211,165,70,.3);

    }


    .dbp-form-box {

        position: relative;

        top: auto;

        right: auto;

        width: 100%;

        margin-top: 430px;

        transform:
            translateY(40px);

        animation:
            dbp-mobile-form
            1s
            ease
            1s
            forwards;

    }


    @keyframes dbp-mobile-form {

        from {

            opacity: 0;

            transform:
                translateY(40px);

        }

        to {

            opacity: 1;

            transform:
                translateY(0);

        }

    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .dbp-logo-danube {

        width: 92px;

    }


    .dbp-logo-bdp {

        width: 60px;

    }


    .dbp-book-button {

        min-width: 95px;

    }


    .dbp-hero-content h1 {

        font-size: 48px;

    }


    .dbp-benefits {

        grid-template-columns: 1fr;

    }


    .dbp-benefit {

        border-right: 0;

        border-bottom:
            1px solid
            rgba(211,165,70,.3);

    }


    .dbp-benefit:last-child {

        border-bottom: 0;

    }


    .dbp-plane {

        width: 76vw;

    }


    .dbp-building {

        width: 112vw;

    }

}

















/* =====================================================
   FORM SUCCESS
===================================================== */

.dbp-form-success {

    min-height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.dbp-success-icon {

    width: 64px;

    height: 64px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d5a84e;

    border-radius: 50%;

    color: #e1bd6d;

    font-size: 28px;

}


.dbp-form-success h3 {

    margin: 0;

    color: #f3eee4;

    font-size: 25px;

    letter-spacing: .08em;

}


.dbp-form-success strong {

    display: block;

    margin-top: 7px;

    color: #dfba67;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 500;

}


.dbp-form-success p {

    max-width: 300px;

    margin: 18px auto;

    color: #9aa7b7;

    font-size: 11px;

    line-height: 1.6;

}


.dbp-form-success small {

    display: block;

    margin-top: 13px;

    color: #6f7c8b;

    font-size: 9px;

}



/* =====================================================
   FORM ERROR
===================================================== */

.dbp-form-error {

    margin-bottom: 12px;

    padding: 10px;

    border: 1px solid
        rgba(220,80,80,.6);

    background:
        rgba(120,20,20,.25);

    color: #ffaaaa;

    font-size: 10px;

    line-height: 1.4;

}





/* =========================================================
   HERO FINAL POSITION + TYPOGRAPHY ADJUSTMENTS
   ========================================================= */


/* ---------------------------------------------------------
   BUILDING
   Bigger + slightly higher
--------------------------------------------------------- */

.dbp-building {

    width: clamp(
        470px,
        45vw,
        700px
    );

    height: 96%;

    bottom: 7%;

}


/* Keep building's entrance animation higher */

@keyframes dbp-building-entry {

    from {

        opacity: 0;

        transform:
            translateX(-50%)
            translateY(70px)
            scale(.92);

    }

    to {

        opacity: 1;

        transform:
            translateX(-50%)
            translateY(-45px)
            scale(1);

    }

}



/* ---------------------------------------------------------
   PLANE
   Move it down so navbar doesn't crop it
--------------------------------------------------------- */

.dbp-plane {

    top: 10%;

    width: clamp(
        320px,
        29vw,
        540px
    );

}


/* ---------------------------------------------------------
   PLANE FLOAT ANIMATION
   Keep its new starting position
--------------------------------------------------------- */

@keyframes dbp-plane-entry {

    from {

        opacity: 0;

        transform:
            translateX(-50%)
            translateY(-35px)
            scale(.88);

    }

    to {

        opacity: 1;

        transform:
            translateX(-50%)
            translateY(0)
            scale(1);

    }

}


@keyframes dbp-plane-float {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0)
            rotate(-1deg);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-11px)
            rotate(1deg);

    }

}



/* =========================================================
   HERO SMALL TYPOGRAPHY
   Make everything more readable
========================================================= */


/* Eyebrow */

.dbp-eyebrow {

    font-size: 11px;

    letter-spacing: .17em;

    font-weight: 800;

}



/* Subtitle */

.dbp-hero-subtitle {

    font-size: 13px;

    letter-spacing: .20em;

}



/* Offer cards */

.dbp-offer-card small {

    font-size: 10px;

}


.dbp-offer-card strong {

    font-size: 27px;

    font-weight: 800;

}


.dbp-offer-card span {

    font-size: 9px;

}



/* Offer icons */

.dbp-offer-icon {

    width: 52px;

    height: 52px;

    flex-basis: 52px;

    font-size: 23px;

}



/* Benefits */

.dbp-benefit strong {

    font-size: 11px;

    line-height: 1.25;

}


.dbp-benefit b {

    font-size: 10px;

    line-height: 1.3;

}


.dbp-benefit small {

    font-size: 9px;

    line-height: 1.3;

}



/* Benefit icons */

.dbp-benefit-icon {

    width: 40px;

    height: 40px;

    font-size: 15px;

}



/* Bottom note */

.dbp-note {

    font-size: 9px;

    letter-spacing: .11em;

}



/* =========================================================
   FORM TYPOGRAPHY
========================================================= */

.dbp-form-content p {

    font-size: 12px;

    line-height: 1.6;

}


.dbp-form-content input,
.dbp-form-content select {

    font-size: 12px;

}


.dbp-form-content input::placeholder {

    font-size: 11px;

}


.dbp-form-content button {

    font-size: 11px;

}


.dbp-whatsapp {

    font-size: 10px;

}


.dbp-security {

    font-size: 9px;

}



/* =========================================================
   CRISPER TEXT RENDERING
========================================================= */

.dbp-hero,
.dbp-form-box,
.dbp-navbar {

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}


.dbp-hero-content h1,
.dbp-form-heading strong {

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

}



/* =========================================================
   DESKTOP BALANCE
========================================================= */

@media (min-width: 1200px) {

    .dbp-hero-content {

        width: 650px;

    }


    .dbp-building {

        width: 700px;

    }


    .dbp-plane {

        width: 540px;

    }

}@media (min-width: 1000px) {

    .dbp-building {

        left: 54%;

    }

    .dbp-plane {

        left: 55%;

    }

}

























/* =========================================================
   SECTION 2 — OVERVIEW
========================================================= */

.dbp-overview {

    position: relative;

    width: 100%;

    min-height: 820px;

    padding: 125px 6vw 115px;

    background:
        linear-gradient(
            180deg,
            #06101f 0%,
            #081526 50%,
            #06101f 100%
        );

    overflow: hidden;

}


/* subtle background glow */

.dbp-overview::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(212, 164, 70, .08) 0%,
            rgba(212, 164, 70, 0) 68%
        );

    pointer-events: none;

}


.dbp-overview::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(214, 169, 78, .5),
            transparent
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.dbp-overview-inner {

    position: relative;

    z-index: 2;

    max-width: 1380px;

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.dbp-section-heading {

    max-width: 780px;

    margin: 0 auto 75px;

    text-align: center;

}


.dbp-section-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 22px;

    color: #dcb35d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .24em;

}


.dbp-section-eyebrow span {

    width: 42px;

    height: 1px;

    background:
        #cda34f;

}


.dbp-section-heading h2 {

    margin: 0;

    color: #f4f0e7;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(48px, 5vw, 76px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.025em;

}


.dbp-section-heading h2 em {

    display: block;

    color: #dcae4e;

    font-style: italic;

}


.dbp-section-heading p {

    max-width: 650px;

    margin: 27px auto 0;

    color: #9ba8b8;

    font-size: 14px;

    line-height: 1.8;

    letter-spacing: .015em;

}


/* =========================================================
   CARD GRID
========================================================= */

.dbp-overview-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* =========================================================
   CARD
========================================================= */

.dbp-overview-card {

    position: relative;

    min-height: 340px;

    padding: 38px 32px 32px;

    border: 1px solid
        rgba(214, 169, 78, .28);

    background:
        linear-gradient(
            145deg,
            rgba(17, 31, 50, .96),
            rgba(7, 17, 31, .96)
        );

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        border-color .45s ease,
        box-shadow .45s ease,
        background .45s ease;

}


/* gold corner */

.dbp-overview-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 42px;

    height: 2px;

    background: #dfb85d;

    transition:
        width .45s ease;

}


/* bottom decorative line */

.dbp-overview-card::after {

    content: "";

    position: absolute;

    right: -45px;

    bottom: -45px;

    width: 150px;

    height: 150px;

    border: 1px solid
        rgba(214, 169, 78, .12);

    border-radius: 50%;

    transition:
        transform .6s ease,
        border-color .45s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.dbp-overview-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(224, 184, 92, .75);

    background:
        linear-gradient(
            145deg,
            rgba(25, 42, 65, .98),
            rgba(8, 19, 34, .98)
        );

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, .38),
        0 0 30px
        rgba(214, 169, 78, .07);

}


.dbp-overview-card:hover::before {

    width: 100%;

}


.dbp-overview-card:hover::after {

    transform:
        scale(1.35);

    border-color:
        rgba(214, 169, 78, .25);

}


/* =========================================================
   ICON / NUMBER
========================================================= */

.dbp-overview-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(218, 177, 86, .7);

    border-radius: 50%;

    color: #e0b65b;

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    transition:
        transform .45s ease,
        background .45s ease,
        color .45s ease;

}


.dbp-overview-card:hover
.dbp-overview-icon {

    transform:
        rotate(8deg)
        scale(1.1);

    background:
        #d9ae51;

    color: #071322;

}


/* =========================================================
   GOLD LINE
========================================================= */

.dbp-card-line {

    width: 45px;

    height: 1px;

    margin:
        28px 0 24px;

    background:
        #cfa650;

    transition:
        width .45s ease;

}


.dbp-overview-card:hover
.dbp-card-line {

    width: 80px;

}


/* =========================================================
   CARD TITLE
========================================================= */

.dbp-overview-card h3 {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #f1eee7;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.12;

}


.dbp-overview-card h3 strong {

    display: block;

    color: #dcae4e;

    font-weight: 400;

}


/* =========================================================
   CARD TEXT
========================================================= */

.dbp-overview-card p {

    position: relative;

    z-index: 2;

    max-width: 260px;

    margin: 22px 0 0;

    color: #929faf;

    font-size: 12px;

    line-height: 1.75;

}


/* =========================================================
   CARD NUMBER
========================================================= */

.dbp-card-number {

    position: absolute;

    right: 25px;

    bottom: 20px;

    color:
        rgba(219, 176, 82, .10);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 75px;

    line-height: 1;

    transition:
        color .45s ease,
        transform .45s ease;

}


.dbp-overview-card:hover
.dbp-card-number {

    color:
        rgba(219, 176, 82, .18);

    transform:
        translateY(-5px);

}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.dbp-overview-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 75px;

}


.dbp-overview-bottom-line {

    width: 100px;

    height: 1px;

    background:
        rgba(214, 169, 78, .4);

}


.dbp-overview-bottom p {

    margin: 0;

    color: #f0ece3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .25em;

    white-space: nowrap;

}


.dbp-overview-bottom p span {

    color: #dcae4e;

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.dbp-reveal {

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.8,.2,1);

}


.dbp-reveal.dbp-visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* stagger cards */

.dbp-overview-card:nth-child(1) {

    transition-delay: .05s;

}


.dbp-overview-card:nth-child(2) {

    transition-delay: .15s;

}


.dbp-overview-card:nth-child(3) {

    transition-delay: .25s;

}


.dbp-overview-card:nth-child(4) {

    transition-delay: .35s;

}


.dbp-overview-bottom {

    transition-delay: .45s;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .dbp-overview {

        padding:
            100px 35px;

    }


    .dbp-overview-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .dbp-overview-card {

        min-height: 310px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .dbp-overview {

        padding:
            80px 20px;

    }


    .dbp-section-heading {

        margin-bottom: 45px;

    }


    .dbp-section-eyebrow {

        font-size: 9px;

        letter-spacing: .17em;

    }


    .dbp-section-heading h2 {

        font-size: 43px;

    }


    .dbp-section-heading p {

        font-size: 12px;

        line-height: 1.7;

    }


    .dbp-overview-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .dbp-overview-card {

        min-height: 285px;

        padding: 30px 27px;

    }


    .dbp-overview-card h3 {

        font-size: 26px;

    }


    .dbp-overview-card p {

        font-size: 12px;

    }


    .dbp-overview-bottom {

        gap: 12px;

        margin-top: 45px;

    }


    .dbp-overview-bottom-line {

        width: 30px;

    }


    .dbp-overview-bottom p {

        font-size: 7px;

        letter-spacing: .14em;

    }

}