.maincontent {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}
.text-bold {
    font-weight: 700;
}


#membership_section {
    position: relative;
    padding: 80px 5%;
    z-index: 0;
}
#membership_section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 500px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, 1) 100%), url(/imageserver/UserMedia/srsokc/pattern-bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}
.membership-wrapper {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}
.membership-wrapper .h2-heading {
    font-size: 50px;
    margin: 0;
    font-family: 'Roboto Slab', 'Poppins', serif;
    margin: 20px 0;
    font-weight: 800;
}
.membership-wrapper h3 {
    margin-block: 20px;
}


.membership-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 45px;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .1);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .1);
    gap: 20px;
}
.membership-header-content {
    width: 70%;
}
.membership-header-content .h2-alt {
    display: block;
    color: var(--accent-color);
    font-size: .7em;
    line-height: 1.15em;
    margin-top: 10px;
}
.membership-header-price {
    width: 30%;
    text-align: center;
}
.membership-header-price p {
    font-size: 2rem;
    font-weight: 700;
    background-color: #f0f2f8;
    border-radius: 10px;
}
.membership-dollar-sign {
    color: var(--accent-color);
    font-size: .6em;
    vertical-align: super;
}
.membership-month {
    color: #a0a2a8;
    font-size: .6em;
}


.membership-list {
    list-style: none;
    margin: 30px 0 20px;
    padding: 0;
}
.membership-list li p {
    position: relative;
    padding-left: 25px;
}
.membership-list li p::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    border-bottom: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    transform: rotateZ(45deg);
    width: 7px;
    height: 13px;
}

.membership-footer {
    margin-top: 60px;
    padding: 45px;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .1);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, .1);
}

@media (max-width: 1024px) {
    .g_wrapper {
        max-width: 750px;
        width: 100%;
        margin-inline: auto;
    }
    .g_col-sm,
    .g_col-lg {
        width: 100%;
        padding: 0;
    }
    .g_img-wrapper {
        margin-bottom: 35px;
    }

    .membership-header,
    .membership-footer {
        padding: 25px;
    }
    .membership-wrapper .h2-heading {
        font-size: 38px;
        margin-bottom: 8px;
    }
}

@media (max-width: 750px) {
    .membership-header {
        flex-direction: column;
    }
    .membership-header-content,
    .membership-header-price {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #membership_section {
        padding-inline: 20xp;
    }
}