.homepage-section {}

.top-section {
    min-height: 70vh;
    background: var(--primary-bg-image);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-section .top-section-title {
    font-size: 3rem;
    color: #000000;
    font-weight: 900;
}

.become-member-btn {
    color: #ffffff;
    border-radius: 25px;
    padding: 8px 25px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.button-wrapper {
    text-align: center;
}

.trending-product {
    text-align: center;
    padding-top: 5rem;
}

.trending-product span {
    color: #858585;
}

.trending-product p {
    font-weight: 700;
    font-size: 4rem;
}

.how-it-works-row .column .icon {
    color: #000!important;
    font-size: 3rem!important;
}

.become-member {
    font-style: italic;
    font-weight: 300;
    padding: 5rem 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    animation-name: bounce;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.more-than-section {
    cursor: pointer;
    text-align: center;
    padding: 2rem 0;
    background-color: var(--primary-color);
    color: var(--txt-color-third);
}

.more-than-section .title {
    font-weight: 600;
    text-shadow: 1px 1px 1px grey;
    font-size: 2.5rem;
}

.more-than-section .sub-title {
    font-weight: 300;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-than-section:hover {
    filter: brightness(85%);
}

.how-it-works-section {
    padding: 5rem 0;
}

.how-it-works-row {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.how-it-works-row .column {
    flex: 0.33;
}

.how-it-works-row .column .icon {
    color: var(--primary-color);
    font-size: 4rem;
}

.how-it-works-row .column .icon:hover {
    filter: brightness(85%);
}

.how-it-works-row .title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-it-works-row .details {
    font-weight: 300;
}

.tab-menu .menu-item {
    font-weight: 700;
}

.products-container {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: stretch;
    gap: 1rem;
}

.get-huge-discount-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 7rem 0;
}

.get-huge-discount-section .title {
    font-size: 2.5rem;
    font-weight: 800;
}

.get-huge-discount-section .sub-title {
    color: #858585;
    margin: 1rem 0;
}

@media screen and (max-width: 767px) {
    .top-section .top-section-title {
        font-size: 2rem;
    }

    .how-it-works-row {
        flex-direction: column;
    }

    .become-member {
        padding: 5rem 0;
    }
}