.hm-hero {
    background: red !important;
}

/* =========================
   HOME MONEY - HERO
========================= */

.hm-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 18px;
    background:
        radial-gradient(circle at 78% 42%, rgba(39, 190, 98, .14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

.hm-hero-row {
    max-width: 1380px !important;
    margin: 0 auto !important;
    min-height: 520px;
    align-items: center !important;
}

.hm-hero-content {
    padding-right: 40px !important;
}

.hm-hero-content .text:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.hm-hero-content h1,
.hm-hero-content h2 {
    margin: 0 0 18px !important;
    font-size: clamp(42px, 4vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    font-weight: 800;
    color: #1f2225;
}

.hm-hero-content h1 strong,
.hm-hero-content h2 strong {
    color: #079447;
}

.hm-hero-content p {
    max-width: 590px;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.75;
    color: #5d6368;
}

.hm-hero-content .button {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 14px !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-right: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.hm-hero-content .button.primary {
    background: #079447 !important;
    border-color: #079447 !important;
}

.hm-hero-content .button.secondary,
.hm-hero-content .button.is-outline {
    color: #e60012 !important;
    border-color: #e60012 !important;
    background: #fff !important;
}

.hm-hero-visual {
    position: relative;
}

.hm-hero-image {
    position: relative;
    z-index: 2;
}

.hm-hero-image img {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    display: block;
    object-fit: contain;
}

.hm-hero::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 40px;
    width: 560px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(44, 190, 90, .15),
        rgba(44, 190, 90, 0) 70%
    );
    filter: blur(20px);
    pointer-events: none;
}

/* TABLET */
@media (max-width: 1024px) {
    .hm-hero-row {
        max-width: calc(100% - 40px) !important;
    }

    .hm-hero-content {
        padding-right: 20px !important;
    }

    .hm-hero-content h1,
    .hm-hero-content h2 {
        font-size: 44px;
    }
}

/* MOBILE */
@media (max-width: 849px) {
    .hm-hero {
        padding: 34px 0 10px;
    }

    .hm-hero-row {
        min-height: auto;
        max-width: calc(100% - 28px) !important;
    }

    .hm-hero-content {
        padding-right: 0 !important;
        text-align: center;
    }

    .hm-hero-content h1,
    .hm-hero-content h2 {
        font-size: 36px;
    }

    .hm-hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .hm-hero-content .button {
        width: 100%;
        margin: 0 0 10px;
    }

    .hm-hero-image img {
        margin: 24px auto 0;
        max-width: 600px;
    }
}