/*====================================================
            MEMBERSHIP HERO
====================================================*/

.membership-hero {
    min-height: 450px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/clubbbb.png");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    overflow: hidden;

    animation: heroZoom 12s ease-in-out infinite alternate;
}


/*====================================================
            HERO ZOOM
====================================================*/

@keyframes heroZoom {

    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }

}


/*====================================================
            HERO OVERLAY
====================================================*/

.hero-overlay {

    width: 100%;
    max-width: 900px;

    padding: 20px;

    color: #fff;

    box-sizing: border-box;

}


.hero-subtitle {

    display: inline-block;

    letter-spacing: 5px;

    color: #d4af37;

    font-size: 18px;

    margin-bottom: 18px;

    font-weight: 600;

}


.hero-overlay h1 {

    font-size: 64px;

    line-height: 1.2;

    margin: 0 0 25px;

    word-wrap: break-word;

}


.hero-overlay p {

    font-size: 22px;

    line-height: 1.8;

    color: #f4f4f4;

    margin: 0 0 40px;

}


.hero-overlay .btn-primary {

    display: inline-block;

    padding: 16px 42px;

    font-size: 18px;

}


/*====================================================
            MEMBERSHIP INTRO
====================================================*/

.membership-about {

    padding: 90px 8%;

    background: #fff;

    text-align: center;

    box-sizing: border-box;

}


.membership-about p {

    width: 100%;

    max-width: 850px;

    margin: auto;

    font-size: 19px;

    line-height: 1.9;

    color: #555;

    box-sizing: border-box;

}


/*====================================================
            MEMBERSHIP PLANS
====================================================*/

.membership-section {

    width: 100%;

    padding: 90px 8%;

    background: #f8f8f8;

    box-sizing: border-box;

    overflow: hidden;

}


.membership-category {

    width: 100%;

    margin-top: 70px;

    box-sizing: border-box;

}


.membership-category h4 {

    color: #000411;

    margin-top: 10px;

    line-height: 1.6;

}


/*====================================================
            CATEGORY TITLE
====================================================*/

.category-title {

    font-size: 34px;

    color: #16304d;

    margin: 0 0 35px;

    border-left: 6px solid #c9a14a;

    padding-left: 18px;

    line-height: 1.3;

    word-wrap: break-word;

}


/*====================================================
            CORPORATE SUBSCRIPTION
====================================================*/

.corporate-subscription {

    width: 100%;

    text-align: left;

    margin-top: -10px;

    margin-bottom: 35px;

    color: #16304d;

    font-size: 18px;

    line-height: 1.6;

    box-sizing: border-box;

}


.corporate-subscription strong {

    font-size: 22px;

    font-weight: 700;

}


.corporate-subscription span {

    color: #000;

    font-size: 17px;

}


/*====================================================
            MEMBERSHIP GRID
====================================================*/

.membership-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );

    gap: 30px;

    box-sizing: border-box;

}


.single-card {

    max-width: 420px;

    width: 100%;

}


/*====================================================
            PLAN CARD
====================================================*/

.plan-card {

    width: 100%;

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

    box-sizing: border-box;

    overflow: hidden;

}


.plan-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

}


.plan-card h3 {

    font-size: 30px;

    color: #16304d;

    margin: 0 0 10px;

    line-height: 1.3;

    word-wrap: break-word;

}


.duration {

    color: #777;

    font-size: 18px;

    margin: 0 0 20px;

}


.plan-card h2 {

    color: #c9a14a;

    font-size: 46px;

    margin: 0 0 25px;

    line-height: 1.2;

    word-break: break-word;

}


.plan-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.plan-card ul li {

    padding: 12px 0;

    border-bottom: 1px solid #ececec;

    color: #555;

    font-size: 17px;

    line-height: 1.5;

}


.plan-card ul li:last-child {

    border: none;

}


/*====================================================
            BENEFITS
====================================================*/

.membership-benefits {

    width: 100%;

    padding: 90px 6%;

    background: #fff;

    box-sizing: border-box;

    overflow: hidden;

}


.membership-benefits .section-heading {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto 50px;

    box-sizing: border-box;

}


.membership-benefits .section-heading p {

    line-height: 1.8;

    color: #555;

    font-size: 17px;

}


.benefit-grid {

    width: 100%;

    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(220px, 1fr)
    );

    gap: 30px;

    box-sizing: border-box;

}


.benefit-box {

    width: 100%;

    background: #f8f8f8;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    transition: 0.3s;

    min-height: 200px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-sizing: border-box;

}


.benefit-box:hover {

    background: #16304d;

    color: #fff;

}


.benefit-box i {

    font-size: 42px;

    color: #c9a14a;

    margin-bottom: 20px;

}


.benefit-box h3 {

    font-size: 22px;

    margin: 0;

    line-height: 1.4;

}


/*====================================================
            DOCUMENTS
====================================================*/

.documents {

    width: 100%;

    padding: 90px 8%;

    background: #f8f8f8;

    box-sizing: border-box;

    overflow: hidden;

}


.documents ul {

    width: 100%;

    max-width: 700px;

    margin: 40px auto;

    padding-left: 20px;

    box-sizing: border-box;

}


.documents li {

    padding: 15px 0;

    font-size: 19px;

    border-bottom: 1px solid #ddd;

    line-height: 1.6;

}


.documents p {

    text-align: center;

    margin-top: 40px;

    font-size: 20px;

    line-height: 1.6;

}


/*====================================================
            APPLICATION PROCESS
====================================================*/

.membership-process {

    width: 100%;

    padding: 90px 8%;

    background: #fff;

    box-sizing: border-box;

    overflow: hidden;

}


.process {

    width: 100%;

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    box-sizing: border-box;

}


.process div {

    width: 100%;

    background: #16304d;

    color: #fff;

    padding: 25px;

    border-radius: 15px;

    text-align: center;

    font-weight: bold;

    line-height: 1.5;

    box-sizing: border-box;

}


/*====================================================
            CONTACT
====================================================*/

.membership-contact {

    width: 100%;

    padding: 90px 8%;

    text-align: center;

    background: #16304d;

    color: #fff;

    box-sizing: border-box;

    overflow: hidden;

}


.membership-contact h2 {

    font-size: 42px;

    margin: 0 0 20px;

    line-height: 1.3;

}


.membership-contact p {

    margin: 20px 0 40px;

    line-height: 1.6;

}


.contact-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}


/*====================================================
            TABLET
====================================================*/

@media (max-width: 1200px) {

    .hero-overlay h1 {

        font-size: 54px;

    }


    .membership-section {

        padding-left: 6%;

        padding-right: 6%;

    }


    .membership-benefits {

        padding-left: 5%;

        padding-right: 5%;

    }


    .process {

        grid-template-columns: repeat(3, 1fr);

    }

}


/*====================================================
            TABLET
            991px
====================================================*/

@media (max-width: 991px) {

    .membership-hero {

        min-height: 420px;

    }


    .hero-overlay {

        max-width: 750px;

    }


    .hero-overlay h1 {

        font-size: 44px;

    }


    .hero-overlay p {

        font-size: 18px;

        line-height: 1.7;

    }


    .membership-section {

        padding: 70px 5%;

    }


    .membership-category {

        margin-top: 55px;

    }


    .category-title {

        font-size: 30px;

    }


    .membership-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }


    .plan-card {

        padding: 30px 25px;

    }


    .plan-card h3 {

        font-size: 27px;

    }


    .plan-card h2 {

        font-size: 40px;

    }


    .benefit-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .membership-benefits {

        padding: 70px 5%;

    }


    .documents {

        padding: 70px 5%;

    }


    .membership-process {

        padding: 70px 5%;

    }


    .process {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }


    .membership-contact {

        padding: 70px 5%;

    }


    .membership-contact h2 {

        font-size: 38px;

    }

}


/*====================================================
            MOBILE
            768px
====================================================*/

@media (max-width: 768px) {

    /*--------------------------------
            GENERAL
    --------------------------------*/

    html,
    body {

        width: 100%;

        max-width: 100%;

        overflow-x: hidden;

    }


    /*--------------------------------
            HERO
    --------------------------------*/

    .membership-hero {

        width: 100%;

        min-height: 400px;

        background-position: center;

        background-size: cover;

        animation: none;

        padding: 20px 0;

        box-sizing: border-box;

    }


    .hero-overlay {

        width: 100%;

        max-width: 100%;

        padding: 20px;

        box-sizing: border-box;

    }


    .hero-subtitle {

        font-size: 13px;

        letter-spacing: 2px;

        margin-bottom: 12px;

    }


    .hero-overlay h1 {

        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 18px;

    }


    .hero-overlay p {

        font-size: 16px;

        line-height: 1.6;

        margin-bottom: 28px;

    }


    .hero-overlay .btn-primary {

        padding: 13px 25px;

        font-size: 15px;

    }


    /*--------------------------------
            MEMBERSHIP SECTION
    --------------------------------*/

    .membership-section {

        width: 100%;

        padding: 60px 5%;

        box-sizing: border-box;

    }


    .membership-category {

        margin-top: 45px;

        width: 100%;

    }


    .category-title {

        font-size: 26px;

        padding-left: 12px;

        border-left-width: 4px;

        margin-bottom: 25px;

        line-height: 1.35;

    }


    .membership-category h4 {

        font-size: 16px;

        line-height: 1.6;

        margin-top: 0;

    }


    /*--------------------------------
            CORPORATE SUBSCRIPTION
    --------------------------------*/

    .corporate-subscription {

        width: 100%;

        text-align: center;

        font-size: 16px;

        margin-top: -5px;

        margin-bottom: 30px;

        line-height: 1.6;

    }


    .corporate-subscription strong {

        font-size: 19px;

    }


    .corporate-subscription span {

        font-size: 15px;

    }


    /*--------------------------------
            MEMBERSHIP CARDS
    --------------------------------*/

    .membership-grid {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .single-card {

        width: 100%;

        max-width: 100%;

    }


    .plan-card {

        width: 100%;

        padding: 25px 20px;

        border-radius: 15px;

    }


    .plan-card:hover {

        transform: none;

    }


    .plan-card h3 {

        font-size: 25px;

        line-height: 1.35;

    }


    .duration {

        font-size: 16px;

        margin-bottom: 15px;

    }


    .plan-card h2 {

        font-size: 38px;

        margin-bottom: 20px;

    }


    .plan-card ul li {

        font-size: 15px;

        padding: 11px 0;

    }


    /*--------------------------------
            BENEFITS
    --------------------------------*/

    .membership-benefits {

        width: 100%;

        padding: 60px 5%;

        box-sizing: border-box;

    }


    .membership-benefits .section-heading {

        width: 100%;

        margin-bottom: 35px;

    }


    .membership-benefits .section-heading p {

        font-size: 15px;

        line-height: 1.7;

        text-align: left;

    }


    .benefit-grid {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .benefit-box {

        width: 100%;

        min-height: 160px;

        padding: 30px 20px;

        border-radius: 16px;

    }


    .benefit-box:hover {

        background: #f8f8f8;

        color: inherit;

    }


    .benefit-box i {

        font-size: 38px;

        margin-bottom: 15px;

    }


    .benefit-box h3 {

        font-size: 20px;

    }


    /*--------------------------------
            DOCUMENTS
    --------------------------------*/

    .documents {

        width: 100%;

        padding: 60px 5%;

        box-sizing: border-box;

    }


    .documents ul {

        width: 100%;

        margin: 30px auto;

        padding-left: 18px;

    }


    .documents li {

        font-size: 16px;

        padding: 12px 0;

        line-height: 1.6;

    }


    .documents p {

        font-size: 17px;

        line-height: 1.6;

        margin-top: 30px;

    }


    /*--------------------------------
            APPLICATION PROCESS
    --------------------------------*/

    .membership-process {

        width: 100%;

        padding: 60px 5%;

        box-sizing: border-box;

    }


    .process {

        width: 100%;

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 40px;

    }


    .process div {

        width: 100%;

        padding: 20px;

        border-radius: 12px;

        font-size: 15px;

    }


    /*--------------------------------
            CONTACT
    --------------------------------*/

    .membership-contact {

        width: 100%;

        padding: 60px 5%;

        box-sizing: border-box;

    }


    .membership-contact h2 {

        font-size: 32px;

        line-height: 1.3;

    }


    .membership-contact p {

        font-size: 16px;

        margin: 15px 0 30px;

    }


    .contact-buttons {

        width: 100%;

        flex-direction: column;

        gap: 12px;

    }


    .contact-buttons .btn-primary {

        width: 100%;

        max-width: 300px;

        box-sizing: border-box;

        text-align: center;

    }

}


/*====================================================
            SMALL MOBILE
            500px
====================================================*/

@media (max-width: 500px) {

    .membership-hero {

        min-height: 350px;

    }


    .hero-overlay {

        padding: 15px;

    }


    .hero-subtitle {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .hero-overlay h1 {

        font-size: 28px;

        line-height: 1.25;

    }


    .hero-overlay p {

        font-size: 15px;

        line-height: 1.55;

    }


    .hero-overlay .btn-primary {

        padding: 12px 22px;

        font-size: 14px;

    }


    .membership-section {

        padding: 50px 4%;

    }


    .category-title {

        font-size: 23px;

        padding-left: 10px;

    }


    .membership-category h4 {

        font-size: 15px;

    }


    .corporate-subscription {

        font-size: 15px;

    }


    .corporate-subscription strong {

        font-size: 17px;

    }


    .corporate-subscription span {

        font-size: 14px;

    }


    .plan-card {

        padding: 22px 17px;

    }


    .plan-card h3 {

        font-size: 22px;

    }


    .plan-card h2 {

        font-size: 34px;

    }


    .duration {

        font-size: 15px;

    }


    .plan-card ul li {

        font-size: 14px;

    }


    .membership-benefits {

        padding: 50px 4%;

    }


    .membership-benefits .section-heading p {

        font-size: 14px;

    }


    .benefit-box {

        min-height: 145px;

        padding: 25px 15px;

    }


    .benefit-box i {

        font-size: 35px;

    }


    .benefit-box h3 {

        font-size: 18px;

    }


    .documents {

        padding: 50px 4%;

    }


    .documents li {

        font-size: 15px;

    }


    .documents p {

        font-size: 16px;

    }


    .membership-process {

        padding: 50px 4%;

    }


    .process {

        margin-top: 30px;

    }


    .process div {

        padding: 18px;

        font-size: 14px;

    }


    .membership-contact {

        padding: 50px 4%;

    }


    .membership-contact h2 {

        font-size: 28px;

    }


    .membership-contact p {

        font-size: 15px;

    }

}


/*====================================================
            VERY SMALL MOBILE
            380px
====================================================*/

@media (max-width: 380px) {

    .membership-hero {

        min-height: 330px;

    }


    .hero-overlay h1 {

        font-size: 25px;

    }


    .hero-overlay p {

        font-size: 14px;

    }


    .category-title {

        font-size: 21px;

    }


    .plan-card {

        padding: 20px 15px;

    }


    .plan-card h3 {

        font-size: 20px;

    }


    .plan-card h2 {

        font-size: 30px;

    }


    .corporate-subscription strong {

        font-size: 16px;

    }


    .benefit-box h3 {

        font-size: 17px;

    }

}


/*====================================================
        PREVENT ALL ELEMENTS FROM OVERFLOWING
====================================================*/

img,
video,
iframe {

    max-width: 100%;

}


*,
*::before,
*::after {

    box-sizing: border-box;

}


body {

    overflow-x: hidden;

}

