@import "sections/mbg-inline.css";

ol.parenthesises {
    counter-reset: list;
}
ol.parenthesises > li {
    list-style: none;
}
ol.parenthesises > li:before {
    content: "(" counter(list, lower-alpha) ") ";
    font-weight: bold;
    counter-increment: list;
}

h1 {
    font-size: 3.5rem;
}
.bold {
    font-weight: 600;
}

@media screen and (max-width: 575px) {
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        display: block;
    }
}

/* mbg-inline section */
.mbg-section {
    background: #EBEBEB;
    border-radius: 2.5rem;
    padding: 3rem 0;
}
.mbg-section h2 {
    margin-bottom: 1rem;
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 120%;
}
.mbg-section p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 0;
}
.mbg-section--cta {
    margin-top: 2rem;
    display: flex;
    width: 100%;
}
.mbg-section .cta-btn {
    padding: 1rem 4rem;
    font-size: 1rem;
    font-weight: 600;
}
@media screen and (max-width: 991px) {
    .mbg-section h2 {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 120%;
    }
    .mbg-section p {
        font-size: 1.25rem;
    }
    .mbg-section--cta {
        margin-top: 2.5rem;
    }
}
/* mbg-inline section */