.container {
    font-family: "Public sans", sans-serif;
    width: 95%;
    max-width: 1200px;
    margin: 0px auto;
}

.head {
    text-align: center;
}

.heading {
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-size: 24px;
}

.heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    width: 60%;
    background: var(--gradient);
}

.numbers {
    margin: 40px 0px;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0px 0px 30px rgb(14, 14, 14);
}

.number {
    text-align: center;
    padding: 40px 0px;
    background: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color-light);
}
.number:last-child {
    border-bottom: none;
}

.number_text {
    color: var(--celebrityschool-pink);
    font-size: 24px;
}
.number_desc {
    font-size: 12px;
    margin-top: 10px;
}

.main_heading {
    font-weight: 600;
    font-size: 16px;
}

.product_img {
    width: 100%;
    margin: 10px 0px;
}
.product_heading {
    font-size: 24px;
    margin: 10px 0px;
}
.product_desc {
    font-size: 14px;
}

.recommended {
    margin-top: 40px;
}

.r_list {
    display: flex;
}
.r_list_img {
    width: 120px;
}
.r_list_main {
    flex: 1;
    margin-left: 10px;
}
.r_list_head {
    font-size: 20px;
    font-weight: 600;
}
.r_list_sub_head {
    font-size: 12px;
    margin-top: 5px;
    color: #e0e0e0;
}

.hero {
    margin: 40px 0px;
}
.hero_text {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.hero_main {
    position: relative;
    margin-left: 15px;
}
.hero_main::before {
    position: absolute;
    content: "";
    left: -14px;
    top: 0px;
    height: 100%;
    width: 5px;
    background: var(--gradient);
}
.hero_heading {
    font-size: 20px;
    margin-bottom: 25px;
}
.hero_desc {
    font-size: 14px;
    line-height: 1.2rem;
}
.hero_img {
    width: 100%;
}

.prices {
    display: flex;
    align-items: flex-end;
    margin: 10px 0px;
}
.before_price {
    position: relative;
    font-size: 14px;
    margin-right: 12px;
    color: #dfdfdf;
}
.after_price {
    font-size: 18px;
}

.before_price::after {
    position: absolute;
    content: "";
    bottom: 8px;
    left: 0px;
    width: 100%;
    height: 2px;
    transform: rotate(-13deg);
    background: #fff;
}
.products {
    margin: 40px 0px;
}
.products .r_list {
    background: var(--secondary-color);
    border-radius: 5px;
    padding: 10px 5px;
}

.tabs {
    display: flex;
}
.tabs .main_heading {
    position: relative;
    margin-right: 20px;
    padding-right: 10px;
}
.main_heading::after {
    display: none;
    position: absolute;
    content: "";
    bottom: -4px;
    left: 0px;
    height: 2px;
    border-radius: 1px;
    width: 100%;
    background: rgb(18, 199, 184);
}
.main_heading.active_tab {
    color: rgb(18, 199, 184);
}
.main_heading.active_tab::after {
    display: initial;
}
.funded_list .r_list {
    flex-direction: column;
}

.inner_box {
    display: flex;
}
.inner_box:first-child {
    padding-bottom: 20px;
}
.inner_box:last-child {
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color-light);
}
.inner_box:last-child img {
    width: 120px;
    /* margin-left: 40px; */
}

@media screen and (min-width: 850px) {
    .main {
        margin: 80px 0px;
    }
    .numbers {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .number {
        border-bottom: none;
        border-right: 1px solid var(--secondary-color-light);
    }
    .number:last-child {
        border-right: none;
    }
    .main {
        display: flex;
    }
    .recommended {
        margin-top: 0px;
        padding-left: 20px;
    }
    .featured_product {
        width: 75%;
        padding-right: 20px;
        border-right: 1px solid var(--secondary-color-light);
    }

    .products {
        margin: 80px 0px;
    }

    .funded_list .r_list {
        flex-direction: row;
    }
    .inner_box:first-child {
        padding-bottom: 0px;
        padding-right: 30px;
    }
    .inner_box:last-child {
        padding-top: 0px;
        padding-left: 30px;
        border-top: none;
        border-left: 2px solid var(--secondary-color-light);
    }
    .inner_box:last-child img {
        width: 80px;
    }
}

@media screen and (min-width: 1150px) {
    .hero {
        display: flex;
        margin: 80px 0px;
    }
    .hero_img {
        width: 50%;
    }
    .hero_text {
        flex: 1;
        margin-left: 30px;
        height: 100%;
        margin-top: 0px;
        align-items: flex-start;
    }
    .hero_heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .hero_desc {
        font-size: 16px;
        line-height: 1.4rem;
    }
    .hero_main {
        margin-left: 27px;
    }
    .hero_main::before {
        left: -26px;
        width: 7px;
    }
}
