
.mrp-flex-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 30px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.mrp-flex-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.mrp-flex-content * {
    box-sizing: border-box;
}

.mrp-flex-content__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
}

.mrp-flex-content__box {
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.mrp-flex-content__pre-heading {
    margin: 0;
    color: #1f9f4b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mrp-flex-content__heading {
    margin: 0;
    color: #071b4c;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.mrp-flex-content__sub-heading {
    margin: 0;
    color: #2c3e66;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
}

.mrp-flex-content__description {
    color: #47577f;
    font-size: 18px;
    line-height: 1.7;
}

.mrp-flex-content__description p {
    margin: 0 0 12px;
}

.mrp-flex-content__description p:last-child {
    margin-bottom: 0;
}

.mrp-flex-content__button-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.mrp-flex-content__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    background-color: #1f9f4b;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mrp-flex-content__button:hover {
    background-color: #187f3d;
    color: #ffffff;
    transform: translateY(-1px);
}

.mrp-flex-content__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
}

.mrp-flex-content__button-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    stroke: currentColor;
}

.mrp-flex-content__button-icon svg *,
.mrp-flex-content svg path,
.mrp-flex-content svg g,
.mrp-flex-content svg use,
.mrp-flex-content svg circle,
.mrp-flex-content svg rect,
.mrp-flex-content svg line,
.mrp-flex-content svg polyline,
.mrp-flex-content svg polygon {
    fill: currentColor;
    stroke: currentColor;
}

@media (max-width: 1024px) {
    .mrp-flex-content {
        padding: 64px 24px;
    }

    .mrp-flex-content__sub-heading {
        font-size: 21px;
    }

    .mrp-flex-content__description {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .mrp-flex-content {
        padding: 48px 18px;
    }

    .mrp-flex-content__inner {
        justify-content: center;
    }

    .mrp-flex-content__box {
        max-width: 100%;
    }

    .mrp-flex-content__heading {
        font-size: clamp(30px, 9vw, 44px);
    }

    .mrp-flex-content__sub-heading {
        font-size: 19px;
    }

    .mrp-flex-content__description {
        font-size: 16px;
    }

    .mrp-flex-content__button-wrap {
        width: 100%;
    }

    .mrp-flex-content__button {
        width: 100%;
    }
}


/* Flexible Content width system */
.mrp-flex-content__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.mrp-flex-content__box {
    min-width: 0;
}

@media (max-width: 1500px) {
    .mrp-flex-content__inner {
        max-width: calc(100vw - 48px);
    }
}

@media (max-width: 767px) {
    .mrp-flex-content__inner {
        max-width: 100%;
    }
}
