.filter_section {
    position: relative;
    width: 100%;
    padding: 0 100px;
    z-index: 99;
}
.filter_section .sec_inner {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--grey-background-3);
    border-bottom: 1px solid var(--grey-background-3);
    display: flex;
    padding: 20px 0;
}
.filter_section .sec_inner .food_types {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.filter_section .sec_inner .food_types label {
    position: relative;
    margin-right: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.filter_section .sec_inner .food_types label input[type="checkbox"] {
    display: none;
}
.filter_section .sec_inner .food_types label .check_box {
    position: relative;
    width: 23px;
    height: 23px;
    border: 1px solid var(--grey-background-5);
    border-radius: 4px;
}
.filter_section .sec_inner .food_types label .check_box img {
    position: absolute;
    left: 2px;
    bottom: 3px;
    width: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.filter_section .sec_inner .food_types label p {
    position: relative;
    font-size: 16px;
    margin-left: 12px;
}
.filter_section .sec_inner .food_types label input[type="checkbox"]:checked ~ .check_box img {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}
.filter_section .sec_inner .ratings_selections {
    position: relative;
    padding: 0 50px;
    border-left: 1px solid var(--grey-background-3);
    border-right: 1px solid var(--grey-background-3);
}
.filter_section .sec_inner .ratings_selections .selection_inner {
    position: relative;
    width: 250px;
}
.filter_section .sec_inner .ratings_selections .selection_btn {
    position: relative;
    width: 100%;
    height: 50px;
    border: 1px solid var(--grey-background-5);
    border-radius: 6px;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter_section .sec_inner .ratings_selections .selection_btn p {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    opacity: 0.8;
}
.filter_section .sec_inner .ratings_selections .selection_btn i {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    opacity: 0.8;
    transition: all 0.5s;
}
.filter_section .sec_inner .ratings_selections .selection_btn i.active {
    transform: rotate(-180deg);
    transition: all 0.5s;
}
.filter_section .sec_inner .ratings_selections .dropdown {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}
.filter_section .sec_inner .ratings_selections .dropdown.active {
    max-height: 350px;
    transition: max-height 0.5s;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.2);
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner {
    position: relative;
    width: 100%;
    padding: 30px 25px;
    background: var(--light-background);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label:last-child {
    margin-bottom: 0;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label input[type="radio"] {
    display: none;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label .radio_box {
    position: relative;
    width: 23px;
    height: 23px;
    border: 3px solid var(--grey-background-5);
    border-radius: 50%;
    transition: all 0.5s ease;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label input[type="radio"]:checked ~ .radio_box {
    border: 6px solid var(--theme-color);
    transition: all 0.5s ease;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label .stars {
    position: relative;
    margin-left: 12px;
    display: flex;
    align-items: center;
}
.filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner label .stars i {
    position: relative;
    margin-right: 7px;
    font-size: 18px;
    color: #ffe234;
}
.filter_section .sec_inner .category_selection {
    position: relative;
    margin-left: 50px;
}
.filter_section .sec_inner .category_selection .selection_inner {
    position: relative;
    width: 300px;
}
.filter_section .sec_inner .category_selection .selection_btn {
    position: relative;
    width: 100%;
    height: 50px;
    border: 1px solid var(--grey-background-5);
    border-radius: 6px;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter_section .sec_inner .category_selection .selection_btn p {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    opacity: 0.8;
}
.filter_section .sec_inner .category_selection .selection_btn i {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    opacity: 0.8;
    transition: all 0.5s;
}
.filter_section .sec_inner .category_selection .selection_btn i.active {
    transform: rotate(-180deg);
    transition: all 0.5s;
}
.filter_section .sec_inner .category_selection .dropdown {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;

}
.filter_section .sec_inner .category_selection .dropdown.active {
    max-height: 350px;
    transition: max-height 0.5s;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.2);
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner {
    position: relative;
    width: 100%;
    max-height: 350px;
    overflow-y: auto;
    padding: 30px 25px;
    background: var(--light-background);
    border-radius: 6px;

    display: flex;
    flex-direction: column;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label:last-child {
    margin-bottom: 0;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label input[type="checkbox"] {
    display: none;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label .check_box {
    position: relative;
    width: 23px;
    height: 23px;
    border: 1px solid var(--grey-background-5);
    border-radius: 4px;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label .check_box img {
    position: absolute;
    left: 2px;
    bottom: 3px;
    width: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label p {
    position: relative;
    font-size: 16px;
    margin-left: 12px;
}
.filter_section .sec_inner .category_selection .dropdown .dropdown_inner label input[type="checkbox"]:checked ~ .check_box img {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}


@media (max-width: 1499px) {
    .filter_section {
        padding: 0 50px;
    }
}

@media (max-width: 1299px) {
    .filter_section .sec_inner .food_types label {
        margin-right: 20px;
    }
    .filter_section .sec_inner .ratings_selections {
        padding: 0 20px;
    }
    .filter_section .sec_inner .category_selection {
        margin-left: 20px;
    }
}
@media (max-width: 876px) {
    .filter_section .sec_inner .ratings_selections .selection_inner {
        width: 205px;
    }
    .filter_section .sec_inner .ratings_selections .dropdown .dropdown_inner {
        padding: 20px 15px;
    }
    .filter_section .sec_inner .category_selection .selection_inner {
        width: 230px;
    }
    .filter_section .sec_inner .food_types label {
        margin-right: 15px;
    }

    .filter_section .sec_inner .ratings_selections {
        padding: 0 15px;
    }
    .filter_section .sec_inner .category_selection {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .filter_section .sec_inner {
        border-top: none;
        border-bottom: none;
        padding: 0;
    }
    .filter_section .sec_inner {
        flex-direction: column;
    }
    .filter_section .sec_inner .ratings_selections {
        padding: 0;
        width: 100%;
        margin-top: 20px;
        border-left: none;
        border-right: none;
    }
    .filter_section .sec_inner .ratings_selections .selection_inner {
        position: relative;
        width: 100%;
    }
    .filter_section .sec_inner .category_selection {
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
    .filter_section .sec_inner .category_selection .selection_inner {
        position: relative;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .filter_section {
        padding: 0 35px;
    }
}

@media (max-width: 450px) {
    .filter_section {
        padding: 0 25px;
    }
}

/* ========== banner ========== */

.banner {
    position: relative;
    width: 100%;
    height: 610px;
    padding: 0 100px;
    margin-bottom: 15px;
}
.banner .sec_content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--grey-background-1);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    overflow: hidden;
}

.banner .sec_content .background_1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 625px;
    height: 100%;
}
.banner .sec_content .background_1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    border-top-left-radius: 285px;
    transform: translateY(45px);
    z-index: 1;
}
.banner .sec_content .background_1 .background_items {
    position: relative;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transform: translateX(-40px);
    z-index: 5;
}
.banner .sec_content .background_1 .background_items .items_inner {
    position: relative;
    width: max-content;
    height: max-content;
    display: flex;
    align-items: flex-end;
    transform: translateX(-30px);
    z-index: 5;
}
.banner .sec_content .background_1 .background_items .img_sec {
    position: relative;
    display: flex;
}
.banner .sec_content .background_1 .background_items .img_sec img {
    position: relative;
    width: 375px;
    height: auto;
}

.banner .sec_content .background_1 .background_items .background_status {
    position: absolute;
    width: 350px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.158);
}
.banner .sec_content .background_1 .background_items .background_status.status_1 {
    top: -8%;
    right: -45%;
}
.banner .sec_content .background_1 .background_items .background_status.status_2 {
    top: 29%;
    right: -72%;
}
.banner .sec_content .background_1 .background_items .background_status.status_3 {
    top: 68%;
    right: -55%;
}
.banner .sec_content .background_1 .background_items .background_status .status_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.banner .sec_content .background_1 .background_items .background_status .status_inner h3 {
    position: absolute;
    right: 0;
    top: -70px;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--light-color);
}
.banner .sec_content .background_1 .background_items .background_status .status_inner img {
    position: relative;
    height: 15px;
    width: auto;
}
.banner .sec_content .background_1 .background_items .background_status .status_inner h5 {
    position: relative;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
}
.banner .sec_content .background_1 .background_items .background_status .status_inner p {
    position: relative;
    font-size: 12px;
    color: var(--dark-color-1);
}
.banner .sec_content .background_1 .background_items .background_status .status_inner span {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    color: var(--dark-color-1);
}

.banner .sec_content .background_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10;
}
.banner .sec_content .background_2 img {
    position: relative;
}

.banner .sec_content .banner_content {
    position: relative;
    height: 100%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 15;
}
.banner .sec_content .banner_content .heading_sec {
    position: relative;
    display: flex;
    flex-direction: column;
}
.banner .sec_content .banner_content .heading_sec p {
    position: relative;
    font-size: 16px;
    color: var(--dark-color-1);
}

.banner .sec_content .banner_content .search_sec {
    position: relative;
    margin-top: 30px;
    font-size: 13px;
    color: var(--dark-color-1);
}
.banner .sec_content .banner_content .search_sec .search_input_box {
    position: relative;
    margin-top: 10px;
    width: 400px;
    height: 57px;
}
.banner .sec_content .banner_content .search_sec .search_input_box input {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.4);
    outline: none;
    padding: 10px 30px;
    padding-right: 210px;
    border-radius: 120px;
    background: var(--light-color);
    font-size: 15px;
    color: var(--dark-color-1);
}
.banner .sec_content .banner_content .search_sec .search_input_box button.desk_search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 100%;
    border-radius: 120px;
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--light-color);
}
.banner .sec_content .banner_content .search_sec .search_input_box button.res_search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 57px;
    height: 100%;
    border-radius: 120px;
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.banner .sec_content .banner_content .search_sec .search_input_box button.res_search_btn img {
    position: absolute;
    width: 35px;
    height: auto;
}



/* =============== Responsive start ============== */

@media (max-width: 1600px) {
    .banner .sec_content .background_2 {
        display: none;
    }
}

@media (max-width: 1499px) {
    .banner {
        padding: 0 50px;
    }
}

@media (max-width: 1367px) {
    .banner .sec_content .background_1 {
        display: none;
    }
    .banner .sec_content .background_2 {
        display: flex;
        justify-content: flex-end;
    }
    .banner .sec_content .background_2 img {
        transform: translateX(150px);
    }
}

@media (max-width: 1099px) {
    .banner {
        height: 450px;
    }
    .banner .sec_content .background_2 {
        justify-content: center;
    }
    .banner .sec_content .background_2 img {
        transform: translateX(0);
        height: 95%;
    }
    .banner .sec_content .banner_content {
        padding: 50px;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 768px) {
    .banner .sec_content .banner_content .heading_sec h1 {
        font-size: 42px;
        line-height: 1.15;
    }
}

@media (max-width: 575px) {
    .banner {
        padding: 0 35px;
        height: 425px;
    }
    .banner .sec_content .banner_content {
        padding: 0 35px;
    }
    .banner .sec_content .banner_content .heading_sec p {
        font-size: 13px;
    }
    .banner .sec_content .banner_content .heading_sec h1 {
        font-size: 34px;
    }
    .banner .sec_content .banner_content .search_sec .search_input_box {
        width: 325px;
    }
    .banner .sec_content .banner_content .search_sec .search_input_box input {
        padding-right: 77px;
    }
    .banner .sec_content .banner_content .search_sec .search_input_box button.desk_search_btn {
        display: none;
    }
    .banner .sec_content .banner_content .search_sec .search_input_box button.res_search_btn {
        display: flex;
    }
}

@media (max-width: 450px) {
    .banner {
        padding: 0 25px;
        height: 380px;
    }
    .banner .sec_content .banner_content {
        padding: 0 25px;
    }
    .banner .sec_content .banner_content .search_sec .search_input_box {
        width: 100%;
    }
}

/* =============== Responsive end ============== */



/* ========== restaurant section ========== */

.restaurant_section {
    position: relative;
    width: 100%;
    padding: 35px 75px;
}
.restaurant_section .sec_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.restaurant_section .sec_content .box_head {
    position: relative;
    width: 100%;
    padding: 0 25px;
    display: flex;
    align-items: center;
}
.restaurant_section .sec_content .box_head h3 {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color-1);
}
.restaurant_section .sec_content .box_head .search_sec {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 25px;
    border: 1px solid var(--light-border);
    height: 60px;
    border-radius: 120px;
    margin-left: auto;
}
.restaurant_section .sec_content .box_head .search_sec img {
    position: relative;
    width: 45px;
    padding-right: 15px;
    border-right: 1px solid var(--light-border);
}
.restaurant_section .sec_content .box_head .search_sec input {
    position: relative;
    width: calc(100% - 45px);
    height: 100%;
    padding-left: 20px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--dark-color-1);
}

.restaurant_section .sec_content .restaurant_box_sec {
    position: relative;
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box {
    position: relative;
    width: 33.33%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner {
    position: relative;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner {
    position: relative;
    width: 100%;
    height:220px;
    border-radius: 15px;
    border: 1px solid #fff;
    box-shadow: 5px 5px 6px 2px rgba(139, 139, 139, 0.24);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40.2%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
    z-index: 15;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 #fff;
    z-index: 15;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .swiper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: linear-gradient(-25deg, rgba(3, 8, 31, 0.295) 10%, rgba(3, 8, 31, 0.13) 60%, rgba(255, 255, 255, 0) 100%);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .swiper .swiper-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 15;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .pagination .swiper_pagination {
    position: relative;
    top: inherit;
    bottom: inherit;
    left: inherit;
    width: max-content;
    transform: inherit !important;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .pagination .swiper_pagination span.swiper-pagination-bullet {
    background: var(--light-color);
    opacity: 1;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_banner .pagination .swiper_pagination span.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 20px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content {
    position: relative;
    margin-top: 10px;
    width: 100%;
    background: var(--grey-background-2);
    border-radius: 15px;
    border-top-left-radius: 0;
    box-shadow: 5px 5px 6px 2px rgba(139, 139, 139, 0.24);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type {
    position: absolute;
    top: -60px;
    left: 0;
    height: 60px;
    width: 40%;
    background: var(--grey-background-2);
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-top-right-radius: 25px;
    z-index: 5;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0 #fff;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--grey-background-2);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type p {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type p.veg {
    color: var(--veg-color);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type p.non_veg {
    color: var(--non-veg-color);
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type p i {
    position: relative;
    font-size: 18px;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .type p span {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin-left: 8px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items {
    position: relative;
    width: 100%;
    padding: 20px 25px;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief h4 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color-1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief p {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color-1);
    margin-top: 5px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief h6 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief h6 i {
    margin-left: 5px;
    color: var(--theme-color);
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief h6 span {
    margin-left: 15px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var( --green-color-2);
    margin-top: 5px;
    cursor: pointer;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .restaurants_brief a i {
    margin-right: 8px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .avalability_status {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .avalability_status p {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .avalability_status p.open {
    color: var(--veg-color);
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .avalability_status p.close {
    color: var(--red-color);
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_content .content_items .avalability_status p.closing-soon {
    color: var(--yellow-color);
}

.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.restaurant_section .sec_content .restaurant_box_sec .restaurant_box .box_inner .box_link a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 1499px) {
    .restaurant_section {
        padding: 25px 25px;
    }
}

@media (max-width: 1299px) {
    .restaurant_section .sec_content .restaurant_box_sec .restaurant_box {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .restaurant_section .sec_content .box_head {
        flex-direction: column-reverse;
        align-items: baseline;
    }
    .restaurant_section .sec_content .box_head .search_sec {
        width: 100%;
        margin-bottom: 20px;
    }
    .restaurant_section .sec_content .box_head button {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

}

@media (max-width: 768px) {
    .restaurant_section .sec_content .restaurant_box_sec .restaurant_box {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .restaurant_section {
        padding: 25px 15px;
    }
}

@media (max-width: 450px) {
    .restaurant_section {
        padding: 25px 10px;
    }
}



/* ============== products section ============= */

.products_section {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 50px;
    padding: 0 90px;
}

.products_section .product_box_sec {
    position: relative;
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.products_section .product_box_sec .product_box {
    position: relative;
    width: 25%;
    padding: 10px;
    display: flex;
}

.products_section .product_box_sec .product_box .box_inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--light-border);
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.158);
    background: var(--light-background);
    padding: 20px;
    padding-left: 35px;
}
.products_section .product_box_sec .product_box .box_inner::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 12px;
    width: 6px;
    height: 70%;
    border-radius: 50px;
}
.products_section .product_box_sec .product_box.veg .box_inner::before {
    background: var(--veg-color);
}
.products_section .product_box_sec .product_box.non_veg .box_inner::before {
    background: var(--non-veg-color);
}

.products_section .product_box_sec .product_box .box_inner .product_brif {
    position: relative;
    width: calc(100% - 130px);
    display: flex;
    flex-direction: column;
    padding-right: 25px;
}

.products_section .product_box_sec .product_box .box_inner .product_brif h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color-1);
    line-height: 1;
}

.products_section .product_box_sec .product_box .box_inner .product_brif p {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-color-1);
    margin-top: 5px;
}

.products_section .product_box_sec .product_box .box_inner .product_brif h6 {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    margin-top: 5px;
}

.products_section .product_box_sec .product_box .box_inner .product_brif h6 i {
    margin-left: 5px;
    color: var(--theme-color);
}

.products_section .product_box_sec .product_box .box_inner .product_brif h6 span {
    margin-left: 15px;
}

.products_section .product_box_sec .product_box .box_inner .product_brif a {
    position: relative;
    display: flex;
    font-size: 17px;
    font-weight: 500;
    color: var( --dark-color-1);
    margin-top: 5px;
    cursor: pointer;
}

.products_section .product_box_sec .product_box .box_inner .product_brif a:hover {
color: var(--theme-color);
}

.products_section .product_box_sec .product_box .box_inner .product_img {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
}

.products_section .product_box_sec .product_box .box_inner .product_img img {
    position: relative;
    width: 100%;
    border-radius: 12px;
}
.products_section .product_box_sec .product_box .box_inner .add_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 73px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 24px;
    background: rgba(255, 255, 255, 0.864);
    cursor: pointer;
}
.products_section .product_box_sec .product_box .box_inner .add_btn a {
    position: absolute;
    top: 13px;
    left: 13px;
}
.products_section .product_box_sec .product_box .box_inner .add_btn a img {
    position: relative;
    width: 30px;
    height: auto;
}


.products_section .product_box_sec .product_box .box_inner .product_count_sec {
    position: absolute;
    bottom: 26px;
    right: 36px;
    height: 40px;
    width: 120px;
    background-color: var(--light-background);
    display: flex;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.products_section .product_box_sec .product_box .box_inner .product_count_sec a {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    cursor: pointer;
}

.products_section .product_box_sec .product_box .box_inner .product_count_sec .number {
    position: relative;
    width: 35px;
    height: 28px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.158);
}

.products_section .product_box_sec .product_box .box_inner .product_count_sec .number p {
    font-size: 16px;
    color: var(--dark-color-1);
    font-weight: 600;
}

/* ================ Responsive Start ============== */

@media (max-width: 1850px) {
    .products_section .product_box_sec .product_box {
        width: 33.33%;
    }
}
@media (max-width: 1499px) {
    .products_section {
        padding: 0 40px;
    }
}
@media (max-width: 1299px) {
    .products_section .product_box_sec .product_box {
        width: 50%;
    }
}
@media (max-width: 991px) {
    .products_section .product_box_sec .product_box .box_inner .product_brif {
        padding-right: 0;
    }
    .products_section .product_box_sec .product_box .box_inner .product_img {
        width: 130px;
        height: 110px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_count_sec {
        bottom: 30px;
        height: 35px;
        width: 98px;
    }
}
@media (max-width: 876px) {
    .products_section .product_box_sec .product_box {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .products_section {
    padding: 0 25px;
    }
}
@media (max-width: 450px) {
    .products_section {
    padding: 0 15px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_brif {
        width: calc(100% - 110px);
    }
    .products_section .product_box_sec .product_box .box_inner .product_brif h4 {
        font-size: 15px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_brif p {
        font-size: 13px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_brif h6 {
        font-size: 14px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_brif a {
        font-size: 14px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_img {
        width: 110px;
        height: 90px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_count_sec {
        bottom: 30px;
        right: 30px;
        height: 35px;
        width: 89px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_count_sec .number {
        width: 23px;
        height: 21px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_count_sec .number p {
        font-size: 13px;
    }
    .products_section .product_box_sec .product_box .box_inner .product_count_sec a {
        font-size: 13px;
    }
}
