:root {
    --page: 1920px;
    --wrap: 1792px;
    --pad-x: 24px;
    --card-h: 774px;
    --radius: 18px;
    --text: #E9FBF6;
    --muted: #C8E9E2;
    --cta-dot: #0BC2A3;
}
html, body {
    overflow-x: hidden;
}
.ucd-hero {
    max-width: var(--wrap);
    margin: 100px auto 187px;
    background: #fff;
}

.ucd-hero__wrap {
    position: relative;
}

.ucd-card {
    position: relative;
    height: var(--card-h);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    background-image: url("../img/ucd-hero.jpg");
    background-size: cover;
    background-position: center;
}

.ucd-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .30);
    z-index: 0;
    pointer-events: none;
}

.ucd-left {
    position: relative;
    z-index: 1;
    padding: 65px 55px;
    max-width: 1000px;
}

.ucd-title {
    margin: 0 0 39px;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: .2px;
}

.ucd-lead {
    max-width: 708px;
    margin: 0 0 22px;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
}

.ucd-cta {
    gap: 11px;
    padding: 13px 44px;
    border-radius: 20px;
    background: #004D58;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    max-width: 398px;
    transition: transform .15s ease;
}

.ucd-cta:hover {
    transform: translateY(-1px);
}

.ucd-mini {
    position: absolute;
    top: 15px;
    right: 36px;
    width: 241px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.ucd-overflow {
    position: absolute;
    right: -68px;
    bottom: -113px;
    width: 1227px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1280px) {
    .ucd-mini {
        display: none !important;
    }

    .ucd-overflow {
        width: 80%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .ucd-title {
        font-size: 48px;
    }

    .ucd-lead {
        font-size: 20px;
        max-width: 100%;
    }

    .ucd-card::before {
        background: rgba(0, 0, 0, .50);
    }
}

@media (max-width: 768px) {
    .ucd-title {
        font-size: 40px;
    }

    .ucd-lead {
        font-size: 20px;
        max-width: 100%;
    }

    .ucd-left {
        padding: 40px 30px;
    }
}

