@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kaushan+Script&family=Sacramento&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Fira Sans", serif;;
    scroll-behavior: smooth;
}

:root{
    --primary-color: #8EC038;
    --secondary-color: #DA2424;
    --text-color:#292D35;
    --white-color:#fff;
    --black-color:#000;

    --Sacramento-font:"Sacramento", serif;
    --Kaushan-font:"Kaushan Script", serif;

    --transition:0.3s;
    --transition2:0.6s;
}

img{
    width: 100%;
    height: 100%;
}
section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 5% 12%;
}

/* NAVBAR */

.top_nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12%;
    border-bottom: 1px solid rgba(131, 131, 131, 0.5);
}
.nav_info{
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav_info h2{
    font-size: 1rem;
    font-weight: 300;
}
.nav_info h2 i{
    color: var(--primary-color);
}
.nav_info h2 span{
    font-weight: 500;
    color: var(--text-color);
}
.nav_info_icon{
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav_info_icon i{
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}
.nav_info_icon i:hover{
    color: var(--primary-color);
    cursor: pointer;
}
.nav_info_icon span{
    padding: 2px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 5px;
}

nav{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 12%;
}
.logo a{
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--Kaushan-font);
}
.logo a span{
    font-family: var(--Kaushan-font);
    color: var(--secondary-color);
}
.menu{
    display: flex;
    align-items: center;
    gap: 20px;
}
.menu li a{
    font-size: 1.2rem;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}
.menu li a:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0%;
    width: 0%;
    height: 2px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    transition: var(--transition2);
}
.menu li:hover a:after{
    width: 100%;
}
.menu li:hover a{
    color: var(--secondary-color);
}
.bars{
    display: none;
}

button{
    width: 170px;
    height: 50px;
    border: none;
    border-radius: 50px;
    background-color: var(--secondary-color);
    font-size: 1.5rem;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    cursor: pointer;
}
button:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: var(--text-color);
    z-index: -1;
    transition: var(--transition);
}
button:hover:after{
    transform: translate(-50%, -50%) scale(1);
}

/* HERO HEADER SECTION  */

header{
    width: 100%;
    height: 80vh;
    background-image: url(Image/health-slider.png);
    background-position: center center ;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5% 12%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero_content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 5;
}
.hero_content_bg{
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translate(-50% , -50%);
    width: 40%;
    height: 300px;
    z-index: 1;
}
.hero_content h1{
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 600;
}
.hero_content h1 span{
    color: var(--primary-color);
}
.hero_content p{
    width: 80%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 10px 0;
}
.hero_btns{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.hero_btns button{
    width: 200px;
}
.hero_btns button:nth-child(2){
    background-color: var(--primary-color);
}


/* SERVICES SECTION  */

.services{
    padding: 0 12%;
    position: absolute;
    top: 85%;
    left: 0;
}
.service_grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-content: start;
    place-items: start;
    box-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
    border-radius: 20px;
    overflow: hidden;
}
.service_col{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8%;
}
.service_grid .service_col:nth-child(1){
    background-color: var(--white-color);
}
.service_grid .service_col:nth-child(2){
    background-color: var(--primary-color);
    color: var(--white-color);
}
.service_grid .service_col:nth-child(3){
    background-color: var(--text-color);
    color: var(--white-color);
}
.service_info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service_info h2{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
}
.service_grid .service_col:nth-child(3) .service_info h2{
    color: var(--white-color);
}

/* ABOUT SECTION  */

.about{
    margin-top: 150px;
}
.about_img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.about_sec_img{
    position: absolute;
    top: 0;
    left: -20%;
    object-fit: contain;
    z-index: -1;
}
.about_img img{
    width: 60%;
    border-radius: 10px;
}
.about_sec_box{
    position: absolute;
    top: 90%;
    left: 60%;
    width: 50%;
    transform: translate(-50% , -50%);
    background-color: var(--white-color);
    padding: 3% 2%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.about_sec_box h2{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}
.about_sec_box img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.about_content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.about_content h2{
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 600;
}
.about_content h2 span{
    color: var(--primary-color);
}
.about_content p{
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
}
.about_boxses{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0;
}
.about_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about_box i{
    font-size: 1.5rem;
    color: var(--primary-color);
}
.about_box h2{
    font-size: 1.5rem;
    font-weight: 500;
}
.about_content button{
    margin-top: 10px;
    width: 200px;
}

/* SERVICE PROGRESS SECTION  */

.service_progress{
    background-color: #f3f5ed;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    place-content: start;
    place-items: start;
    gap: 50px;
}
.service_progress_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
}
.service_progress .service_progress_card:nth-child(4):after{
    display: none;
}
.service_progress_card:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}
.service_progress_img{
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition2);
}
.service_progress_card:hover .service_progress_img{
    transform: rotateY(360deg);
}
.service_progress_card h2{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
}
.service_progress_card p{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

/* BEST DISHES SECTION  */

.dish_img{
    width: 50%;
    cursor: pointer;
    position: relative;
}
.dish_img img{
    transition: var(--transition2);
}
.dish_img:hover img{
    transform: scale(0.9);
}
.dish_100_dis{
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 260px;
    object-fit: contain;
}
.dish_img:hover .dish_100_dis{
    transform: scale(1);
}
.dish_infos{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.dish_infos h2{
    font-size: 3.3rem;
    line-height: 4rem;
    margin: 5px 0;
    color: var(--text-color);
}
.dish_infos p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 15px;
}
.dish_infos h3{
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
}
.dish_infos h3:nth-of-type(1) span{
    color: var(--secondary-color);
}
.dish_infos h3 span{
    color: var(--primary-color);
}
.price h2 span{
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
}
.col_btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.col_btns button{
    width: 200px;
}
.col_btns button:nth-child(2){
    background-color: var(--primary-color);
}

/* DISH 2 */

.dishes2{
    padding-top: 0;
}
.dish_img2 .dish_100_dis{
    left: 60%;
}

/* POPULAR DISHES SECTION  */

.popular_dishes{
    flex-direction: column;
    padding-top: 0;
    position: relative;
}
.our_menu_top{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.Headings h2{
    font-family: var(--Sacramento-font);
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 500;
    color: var(--primary-color);
}
.Headings h1{
    font-size: 3rem;
    line-height: 3.5rem;
    color: var(--text-color);
}
.our_menu_top p{
    width: 80%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.our_menu_swiper{
    width: 100%;
}
.our_menu_card{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.menu_infos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.menu_infos h2{
    font-size: 1.8rem;
    line-height: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}
.menu_infos h2:hover{
    color: var(--primary-color);
    cursor: pointer;
}
.menu_infos p{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}
.menu_infos .price{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 5px 0;
}
.our_menu_btns{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 7px 0;
}
.our_menu_btns button{
    width: 160px;
    height: 40px;
    font-size: 1.2rem;
}
.our_menu_btns a{
    font-size: 1.2rem;
    color: var(--primary-color);
}

.swiper_btn{
    position: absolute;
    left: 8% !important;
}
.swiper_btn_next{
    left: 90% !important;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    display: none;
}
.swiper_btn i{
    width: 60px;
    height: 60px;
    padding: 20px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(131, 131, 131, 0.5);
    color: var(--black-color);
    border-radius: 100%;
    transition: var(--transition);
}
.swiper_btn i:hover{
    background-color: var(--text-color);
    color: var(--white-color);
    border-color: transparent;
}
 

/* FREE DELIVERY SECTION  */

.free_delivery{
    background-color: #f3f5ed;
    position: relative;
    height: 63vh;
    justify-content: flex-start;
}
.delivery_img{
    position: absolute;
    top:42%;
    left: 70%;
    transform: translate(-50% , -50%);
    width: 50%;
    height: 700px;
    object-fit: contain;
}
.delivery_content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.delivery_content h1{
    font-size: 3.5rem;
    line-height: 4rem;
}
.delivery_content h1 span{
    color: var(--primary-color);
}
.delivery_content p{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    margin: 20px 0;
}
.input_wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}
.input_wrapper input{
    width: 100%;
    height: 60px;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    font-size: 1.3rem;
    padding-left: 8%;
    transition: var(--transition);
}
.input_wrapper input:active,
.input_wrapper input:focus{
    border: 1px solid var(--primary-color);
}
.delivery_content button{
    margin-top: 30px;
    width: 200px;
}

/* OUR NEWSLETTER SECTION  */

.newsletter{
    background-color: var(--primary-color);
    background-image: url(Image/veg_pattern_01.png);
}
.newsletter_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.newsletter_content h2{
    font-size: 3rem;
    font-weight: 600;
    line-height: 3.5rem;
}
.newsletter_content h2 span{
    color: var(--white-color);
}
.newsletter_content p{
    width: 50%;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}
.get_in{
    width: 60%;
    height: 60px;
    border-radius: 50px;
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin: 20px 0;
}
.get_in button{
    height: 60px;
}
.get_in input{
    width: 70%;
    height: 100%;
    border: none;
    outline: none;
    padding-left: 5%;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* TESTIMONIALS SECTION  */

.testimonials{
    flex-direction: column;
    position: relative;
}
.test_top{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testSwiper{
    width: 100%;
}
.test_slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.test_slide .test_quote{
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.test_slide p{
    width: 70%;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}
.client_info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: 20px 0;
}
.client_img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
}
.client_info h2{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

/* CONTACT US OUR INFOS SECTION  */

.contact{
    background-color: #f3f5ed;
    flex-direction: column;
}
.contact_container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(131, 131, 131, 0.2);
    overflow: hidden;
}
.contact_infos{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding:0px 5%;
}
.contact_info_box{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(131, 131, 131, 0.5);
    padding-bottom: 15px;
}
.contact_info_box i{
    width: 90px;
    height: 90px;
    font-size: 3rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: var(--transition2);
}
.contact_info_box:hover i{
    transform: rotateY(360deg);
}
.contact_info_box_text{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact_info_box_text h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}
.contact_infos button{
    width: 200px;
    margin-top: 20px;
}
.map{
    width: 50%;
    height: 500px;
}
.map iframe{
    width: 100%;
    height: 100%;
}

/* FOOTER SECTION  */

footer{
    width: 100%;
    padding: 5% 12%;
    padding-bottom: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-image: url(Image/footer-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #292d35;
    position:relative; 
}
footer:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f3f5ed;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
.footer_grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}
.footer_col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    color: var(--white-color);
}
.footer_logo .logo a{
    color: var(--white-color);
}
.footer_col p{
    font-size: 1rem;
    font-weight: 300;
    color: #999;
}
.social_media_icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.social_media_icon i{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: var(--transition);
}
.social_media_icon i:hover{
    background-color: var(--white-color);
    color: var(--text-color);
    transform: translateY(-5px);
    cursor: pointer;
}
.footer_col h2{
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--white-color);
}
.footer_col a{
    color: #999;
    transition: var(--transition);
}
.footer_col a:hover{
    color: var(--white-color);
    transform: translateX(5px);
}
.footer_box{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer_box i{
    font-size: 1.3rem;
    color: var(--primary-color);
}
.footer_box_text{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer_box_text h3{
    color: var(--primary-color);
    font-weight: 600;
}
.footer_bottom{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(131, 131, 131, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
}
.footer_bottom p a{
    color: var(--primary-color);
    font-weight: 600;
}
/* MQ SECTION  */

@media (max-width:1400px) {
    .hero_content h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
    .service_info h2{
        font-size: 1.5rem;
    }
    .about_content h2{
        font-size: 2.5rem;
    }
    .about_box h2{
        font-size: 1.1rem;
    }
    .service_progress_card h2{
        font-size: 1.3rem;
    }
    .dish_infos h2{
        font-size: 2.5rem;
    }
    .dish_img .dish_100_dis{
        width: 240px;
        height: 230px;
    }
    .menu_infos h2{
        font-size: 1.3rem;
    }
    .delivery_img{
        height: 650px;
    }
    .free_delivery{
        height: 100%;
    }
    .delivery_content h1{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
}
@media (max-width:1200px) {
    header{
        height: 70vh;
    }
    .services{
        top: 70%;
    }
    .hero_content h1{
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .service_info h2{
        font-size: 1.3rem;
    }
    .service_img{
        width: 50%;
    }
    .about_content h2{
        font-size: 2rem;
    }
    .about_box h2{
        font-size: 1rem;
    }
    .about_sec_box h2{
        font-size: 1rem;
    }
    .about_img img{
        width: 80%;
    }
    .about_sec_img{
        left: -44%;
    }
    .about_sec_box{
        width: 60%;
    }
    .about_sec_box img{
        width: 60px;
        height: 60px;
    }
    .dish_infos h2{
        font-size: 2rem;
        line-height: 2rem;
    }
    .dish_img .dish_100_dis{
        width: 200px;
        height: 200px;
    }
    .newsletter_content p{
        width: 65%;
    }
    
}
@media (max-width:900px) {
    .bars{
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(131, 131, 131, 0.5);
        border-radius: 10px;
    }
    nav{
        position: relative;
        z-index: 999;
    }
    .menu{
        position: absolute;
        top: 100%;
        left: -100%;
        opacity: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 1% 12%;
        background-color: var(--white-color);
        border-top: 1px solid rgba(131, 131, 131, 0.5);
        transition: var(--transition2);
    }
    .show_menu{
        opacity: 1;
        left: 0;
    }
    .nav_info h2:nth-child(1){
        display: none;
    }
    .hero_content{
        width: 65%;
    }
    .services{
        position: relative;
        padding: 5% 12%;
    }
    .service_grid{
        grid-template-columns: repeat(2,1fr);
        box-shadow: none;
    }
    .about{
        margin: 0;
    }
    section,
    .contact_container{
        flex-direction: column;
    }
    .about_img,
    .about_content,
    .dish_img,
    .dish_infos,
    .delivery_content,
    .delivery_img,
    .contact_infos,
    .map{
        width: 100%;
    }
    .about_img img{
        width: 65%;
    }
    .about_sec_img{
        left: -25%;
    }
    .about_sec_box img{
        width: 60px;
        height: 60px;
    }
    .about_sec_box{
        width: 45%;
    }
    .about_content h2{
        font-size: 3rem;
    }
    .about_box h2{
        font-size: 1rem;
    }
    .service_progress{
        grid-template-columns: repeat(2,1fr);
    }
    .service_progress .service_progress_card:nth-child(2):after{
        display: none;
    }
    .dish_img .dish_100_dis{
        width: 260px;
        height: 260px;
    }
    .dish_infos h2{
        font-size: 3rem;
        line-height: 3rem;
    }
    .dishes2{
        flex-direction: column-reverse;
    }
    .delivery_img{
        position: relative;
        top: 100%;
        left: 0;
        height: 100%;
        transform: translate(0);
    }
    .free_delivery{
        padding-bottom: 0;
        gap: 10px;
    }
    .contact_infos{
        padding:5%;
    }
    footer:after{
        top: -5px;
    }
    .footer_grid{
        margin-top: 50px;
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:500px) {
    body,
    html{
        overflow-x: hidden;
    }
    .hero_content_bg{
        width: 70%;
        height: 145px;
    }
    .nav_info h2:nth-child(3),
    nav button{
        display: none;
    }
    .hero_content{
        width: 100%;
    }
    .hero_btns{
        flex-direction: column;
    }
    .service_grid{
        grid-template-columns: repeat(1,1fr);
        box-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
    }
    .about_sec_box{
        width: 70%;
    }
    .about_content h2{
        font-size: 2rem;
    }
    .about_box h2{
        font-size: 1rem;
    }
    .service_info h2{
        font-size: 2rem;
    }
    .service_progress{
        grid-template-columns: repeat(1,1fr);
    }
    .service_progress .service_progress_card:after{
        display: none;
    }
    .dish_img .dish_100_dis{
        width: 180px;
        height: 200px;
    }
    .dish_infos h2{
        font-size: 1.9rem;
        line-height: 2rem;
    }
    .col_btns{
        width: 100%;
        flex-direction: column;
    }
    .col_btns button{
        width: 100%;
    }
    .swiper_btn i{
        width: 4px;
        height: 40px;
    }
    .swiper_btn_prev{
        left: 5% !important;
    }
    .delivery_content h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .input_wrapper{
        grid-template-columns: repeat(1,1fr);
    }
    .delivery_content button{
        width: 100%;
    }
    .newsletter_content h2{
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .newsletter_content p,
    .get_in{
        width: 100%;
    }
    .test_slide p{
        width: 100%;
        font-size: 14px;
    }
    .Headings h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .contact_info_box i{
        width: 70px;
        height: 70px;
    }
    .contact_infos button{
        width: 100%;
    }
    .footer_grid{
        grid-template-columns: repeat(1,1fr);
    }

} 