.weekly_tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-bottom: 0 !important;
}

.weekly_left {
    position: relative;
}

.meal-message span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 210px;
    color: var(--white-color);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.weekly_left__img img {
    width: 100%;
}

.weekly_middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.weekly_middle img {
    width: 280px;
    border-radius: 30px;
    height: 370px;
    object-fit: contain;
}

.weekly_right {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.weekly_right img {
    width: 280px;
    height: 210px;
    object-fit: contain;
    border-radius: 30px;
}

.weekly_box {
    border-radius: 25px;
    background-color: whitesmoke;
    margin: 0 10px;
}

.weekly_box__heading h6 {
    padding: 20px;
    background-color: var(--main-color);
    text-align: center;
    color: var(--white-color);
    font-weight: 500;
    font-size: 22px;
    border-radius: 25px 25px 0 0;
    margin-bottom: 1rem !important;
}

.weekly_list {
    padding: 1rem;
}

.weekly_list__box {
    text-align: center;
    border-bottom: 1px dashed #000;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.weekly_list__box h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
    color: var(--main-color);
}

.weekly_list__box p {
    margin-top: 10px;
    color: #000;
}

.weekly_slider .slick-dots {
    bottom: -4rem;
}

.weekly_slider .slick-dots li {
    height: 18px;
    width: 18px;
    border: 1px solid var(--main-color);
    border-radius: 100%;
}

.weekly_slider .slick-dots li.slick-active {
    background-color: var(--main-color);
    transition: .3s ease-in;
}

.faq_section {
    border-top: 1px solid #ccc;
}

.weekly_menu {
    background-color: #cbc9ca;
}

.weekly_menu .nav-link {
    color: var(--white-color);
    background-color: var(--black-color) !important;
}

@media(max-width:992px) {
    .weekly_middle {
        margin: 2rem 0;
    }
}


@media(max-width:768px) {
    .weekly_tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .weekly_tabs button {
        font-size: 15px !important;
        width: 100%;
    }

    .weekly_slider .slick-dots {
        bottom: -3rem;
    }

    .weekly_box__heading h6 {
        padding: 1rem;
        font-size: 20px;
        border-radius: 14px 14px 0 0;
        margin-bottom: 0 !important;
    }

    .weekly_list__box h3 {
        font-size: 18px;
    }

    .weekly_list__box p {
        font-size: 15px;
        margin-top: 3px;
    }

}

@media(max-width:576px) {
    .meal-message span {
        font-size: 17px;
    }
}