﻿html, body {
    font-family: "Poppins", sans-serif !important;
    color: hsla(0, 0%, 12%, 1) !important;
}
p {
    font-size:14px;
    line-height:26px;
}
.banner_section {
    padding-top:30px;
    background-image: url('../images/banner_img.png');
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
}
.banner_section .res {
    display:flex;
    align-items:center;
}
.banner_image img {
    max-width:100%;
}
.banner_content {
    padding-left:50px;
}
    .banner_content h1 {
        color: hsla(0, 0%, 12%, 1);
        font-family: "League Spartan", sans-serif;
        font-size: 50px;
        font-weight: 700;
        text-transform:uppercase;
    }
    .banner_content p {
        color: hsla(0, 0%, 32%, 1);
    }
.referral_section, .partner_section, .referral_section2, .story_section, .faq_section {
    padding: 60px 0;
}
.heading_card h3 {
    font-family: "League Spartan", sans-serif;
    font-size:36px;
    font-weight: 700;
}
.heading_card h6 {
    font-size: 14px;
    font-weight: 600;
    color: hsla(17, 100%, 63%, 1);
    text-transform: uppercase;
}
.refferal_card {
    padding: 20px;
    border-radius: 12px;
    min-height:230px;
    margin-top:30px;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, 0.25);
}
    .refferal_card img {
        max-width:60px;
        margin-bottom:10px;
    }
    .refferal_card h5 {
        font-size: 18px;
        font-weight: 700;
    }
    .refferal_card p {
        font-weight: 600;
        color: hsla(0, 0%, 32%, 1);
    }
.partner_section {
    background: hsla(220, 20%, 97%, 1);
}
.partner_card p {
    margin-bottom:20px;
}
.partner_card h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    margin:10px 0;
}
.partner_card h5 img {
    max-width:35px;
    width:35px;
}
.partner_video iframe {
    border-radius:12px;
}
.referral_section2 h3 {
    text-align:center;
}
    .referral_section2 h3 span {
        color: hsla(17, 100%, 63%, 1);
    }

.perk_card {
    border-radius: 12px;
    margin-top: 30px;
    min-height:380px;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, 0.25);
}
img.perk_img {
    max-width:100%;
    border-radius:12px 12px 0px 0px;
}
.perk_card h5 {
    background: linear-gradient(90deg, #FF7841 0%, #994827 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}
.perk_card h5 img {
    max-width:26px;
    width:26px;
}
.perk_card h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 0px 20px;
}
.perk_card p {
    font-weight: 500;
    padding: 0px 20px;
    color: hsla(0, 0%, 32%, 1);
}
.story_card {
    border-radius: 12px;
    margin:10px;
    margin-top: 30px;
    padding:20px;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, 0.25);
}
img.story-icon {
    max-width:30px;
    margin-bottom:20px;
}
.story_card p {
    color: hsla(0, 0%, 32%, 1);
    min-height:200px;
    border-bottom:1px solid #ccc;
    padding-bottom:10px;
    margin-bottom:15px;
}
.story_sub_card {
    display:flex;
    align-items:center;
    gap:10px;
}
img.user_img {
    max-width:50px;
    width:50px;
    border-radius:100%;
}
img.star_img {
    max-width:100px;
}
.story_sub_card h6 {
    font-size:14px;
    font-weight:600;
    margin:0;
    margin-bottom:8px;
}
#story_slider {
    padding:0px 50px;
    position:relative;
}
    #story_slider .owl-nav.disabled {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    #story_slider .owl-nav .owl-next img , #story_slider .owl-nav .owl-prev img {
        max-width:28px;
    }

    #story_slider .owl-nav .owl-prev {
        top: 45%;
        position: absolute;
        left: 0px;
    }
    #story_slider .owl-nav .owl-next {
        top: 45%;
        position: absolute;
        right: 0px;
    }
.faq_section .heading_card span {
    color: #FE6901;
    display: block;
}

.faq-item {
    padding:20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-radius: 6px;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    font-size: 14px;
    font-weight:600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0px 20px;
}

    .faq-answer.active {
        margin-bottom: 20px;
    }

    .faq-answer p {
        font-size:14px;
        margin-bottom: 50px;
    }

.icon-container img {
    max-width: 20px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

    .icon-container img.active {
        transform: rotate(90deg);
    }


.faq_item_card {
    border-radius: 12px;
    background: #F6F7F9;
    margin-bottom: 25px;
}
.earner_sub_card {
    border-radius: 12px;
    margin-bottom:20px;
    padding:20px 10px;
    background:#fff;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, 0.25);
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:space-between;
}
    .earner_sub_card h5 {
        font-size: 15px;
        margin: 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 1;
    }
.name_card, .profile_card {
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile_card img {
    max-width:30px;
    width:30px;
    height:30px;
    border-radius:100%;
    object-fit:cover;
}
.price_card {
    border-radius: 100px;
    background: #FFE794;
    display: flex;
    align-items: center;
    gap:5px;
    padding-right:15px;
}
    .price_card h4 {
        font-size: 18px;
        margin: 0;
        font-weight: 700;
        background: #FCC915;
        text-align: center;
        height: 28px;
        width: 28px;
        max-width: 28px;
        border-radius: 100px;
        padding: 5px;
    }
.price_card p {
    font-size:15px;
    margin:0;
}
.partner_section .heading_card {
    margin-bottom:50px;
}
.earner_main_card {
    border-radius: 12px;
    margin-bottom:30px;
    padding:30px;
    padding-bottom:50px;
    background: #fff;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, 0.25);
}
    .earner_main_card h3 {
        text-transform: uppercase;
        background: #FFE794;
        border-radius:100px;
        margin:0 auto;
        margin-bottom:50px;
        max-width:fit-content;
        padding:10px 30px;
        font-size:17px;
        font-weight:600;
    }
.user_image_card {
    height: 120px;
    width: 120px;
    border-radius: 100%;
    background: linear-gradient(180deg, #FFD700 0%, #F90 100%);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    margin:0 auto;
    position:relative;
}
    .user_image_card.user_image_card2 {
        background: linear-gradient(180deg, #C0C0C0 0%, #A9A9A9 100%);
    }
    .user_image_card.user_image_card3 {
        background: linear-gradient(180deg, #CD7F32 0%, #A97142 100%);
    }
    .user_image_card h4 {
        border-radius: 100%;
        background: linear-gradient(180deg, #FFD700 0%, #F90 100%);
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        height: 26px;
        width: 26px;
        max-width: 26px;
        padding: 5px;
        position: absolute;
        z-index: 9;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -10px;
    }
    .user_image_card.user_image_card2 h4 {
        background: linear-gradient(180deg, #C0C0C0 0%, #A9A9A9 100%);
    }

    .user_image_card.user_image_card3 h4 {
        background: linear-gradient(180deg, #CD7F32 0%, #A97142 100%);
    }


    .user_image_card img {
        height: 120px;
        width: 120px;
        object-fit: cover;
        padding: 7px;
        border-radius: 100%;
    }
.first_user h5 {
    font-size:16px;
    font-weight:500;
    text-align:center;
    margin-top:20px;
}
.first_user .price_card {
    margin: 0 auto;
    width: fit-content;
}
.bottom_card {
    display:flex;
    align-items:start;
    gap:20px;
    justify-content:space-between;
}
img.king-icon {
    max-width: 54px;
    height: auto;
    width: auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -45px;
}

@media(max-width:1200px){
    .banner_image img {
        max-width: 70%;
    }
    .banner_content {
        padding-left: 0;
    }
    p {
        font-size: 13px;
        line-height: 24px;
    }
    .partner_section .heading_card {
        margin-bottom: 15px;
    }
    img.story-icon {
        max-width: 22px;
        margin-bottom: 10px;
    }
    .story_card p {
        min-height: 240px;
    }
    img.user_img {
        max-width: 40px;
    }
    img.star_img {
        max-width: 75px;
    }
    .story_sub_card h6 {
        font-size: 13px;
        margin-bottom: 5px;
    }
}

@media(max-width:991px) {
    .banner_content h1 {
        font-size: 36px;
    }
    .heading_card h3 {
        font-size: 32px;
    }
    .heading_card h6 {
        font-size: 12px;
    }
    .referral_section, .partner_section, .referral_section2, .story_section, .faq_section {
        padding: 40px 0;
    }
    .story_card p {
        min-height: 200px;
    }
    .refferal_card {
        min-height: 210px;
        margin-top: 15px;
    }
        .refferal_card img {
            max-width: 44px;
        }
        .refferal_card h5 {
            font-size: 14px;
            font-weight: 700;
        }
    .partner_video {
        margin-top: 20px;
    }
    .perk_card p {
        padding-bottom: 20px;
    }
    .faq_main_card {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .banner_section .res {
        display: flex;
        flex-wrap: wrap;
    }
    .banner_section .res .a {
        order:2;
    }
    .banner_section .res .b {
        order:1;
    }
    .banner_section {
        padding-top:50px;
        background-position: right bottom;
    }
    .refferal_card {
        min-height: auto;
        margin-top: 25px;
    }
    .perk_card {
        margin-top: 25px;
        min-height: auto;
    }
    .story_card p {
        min-height: auto;
    }
}

@media(max-width:479px) {
    .banner_image img {
        max-width: 100%;
    }
    .banner_content h1 {
        font-size: 32px;
    }
    .banner_section {
        padding-top: 30px;
        background-position: right;
    }
    .heading_card h3 {
        font-size: 22px;
    }
    .referral_section, .partner_section, .referral_section2, .story_section, .faq_section {
        padding: 30px 0;
    }
    .partner_card h5 img {
        max-width: 24px;
        width: 24px;
    }
    .partner_card h5 {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 400;
        font-size: 11px;
        margin: 10px 0;
        line-height: 15px;
    }
    .partner_card p {
        margin-bottom: 10px;
    }
    .refferal_card, .partner_video iframe, .perk_card, .story_card, .earner_main_card, .faq_item_card {
        border-radius: 8px;
    }
    img.perk_img {
        max-width: 100%;
        border-radius: 8px 8px 0px 0px;
    }
    section.referral_section2 .heading_card h3 {
        margin-bottom: 0;
        margin-top: 0px;
    }
    .perk_card h4, .perk_card h5 {
        font-size: 14px;
    }
        .perk_card h5 img {
            max-width: 20px;
            width: 20px;
        }
    #story_slider {
        padding: 0px;
        position: relative;
    }
    .earner_main_card h3 {
        padding: 8px 20px;
        font-size: 12px;
    }
    .user_image_card, .user_image_card img {
        height: 80px;
        width: 80px;
    }
        .user_image_card img {
            padding:5px;
        }
    img.king-icon {
        max-width: 38px;
        height: auto;
        width: auto;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -35px;
    }
    .user_image_card h4 {
        
        font-size: 13px;
        height: 22px;
        width: 22px;
        max-width: 22px;
        bottom: -8px;
    }
    .first_user h5 {
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        margin-top: 20px;
    }
    .price_card p {
        font-size: 13px;
        margin: 0;
    }
    .price_card h4 {
        font-size: 14px;
        margin: 0;
        font-weight: 700;
        background: #FCC915;
        text-align: center;
        height: 24px;
        width: 24px;
        max-width: 24px;
        border-radius: 100px;
        padding: 5px;
    }
    .first_user {
        margin-top: 30px;
    }
    .bottom_card {
        display: block;
    }
    .earner_sub_card {
        border-radius: 8px;
        margin-bottom: 25px;
        padding: 10px;
        gap: 5px;
    }
        .earner_sub_card h5 {
            font-size: 11px;
            margin: 0;
        }
    .profile_card img {
        max-width: 22px;
        width: 22px;
        height:22px;
    }
        .earner_sub_card .price_card p {
            font-size: 11px;
            margin: 0;
        }
        .earner_sub_card .price_card h4 {
            font-size: 12px;
            margin: 0;
            font-weight: 700;
            background: #FCC915;
            text-align: center;
            height: 20px;
            width: 20px;
            max-width: 20px;
            border-radius: 100px;
            padding: 3px;
        }
        .earner_sub_card .price_card {
            border-radius: 100px;
            background: #FFE794;
            display: flex;
            align-items: center;
            gap: 3px;
            padding-right: 10px;
        }
    .faq-question {
        font-size: 13px;
        font-weight: 600;
    }
    .faq-item {
        padding: 15px;
    }
    .faq-answer p {
        font-size: 12px;
        margin-bottom:0px;
    }
    .faq-answer {
        padding: 0px 15px;
    }
    #story_slider .owl-nav .owl-next img, #story_slider .owl-nav .owl-prev img {
        max-width: 22px;
    }
}


