@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'bobblebod';
    src: url(font/Bobblebod.ttf);
}

html{
    font-family: 'Poppins', sans-serif;
}

header{
    position: relative;
    width: 100%;
    height: auto;
    /* height: 600px; */
    /* border: 1px solid #000; */
    padding-bottom: 40px;
}

header::before{
    content: '';
    position: absolute;
    width: 37%;
    height: 100%;
    right: 7%;
    border-radius: 0 50px 0 0;
    background: linear-gradient(0deg , #ffb12a , #fec140);
    z-index: -1;
}

header nav{
    width: 80%;
    height: 50px;
    /* border: 1px solid black; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav .logo_ul{
    display: flex;
    align-items: center;
}

header nav .logo_ul img{
    /* height: 30px; */
    width: 30px;
}

header nav .logo_ul ul{
    display: flex;
    align-items: center;
    margin-left: 50px;
    
}

header nav .logo_ul ul li{
    list-style: none;
    padding: 3px 10px;
    margin-right: 10px;
}

header nav .logo_ul ul li a{
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    transition: .3s linear;
}

header nav .logo_ul ul li:nth-last-child(1){
    background: #0080006e;
    border-radius: 10px;
    padding: 1px 13px;
}

header nav .logo_ul ul li:nth-last-child(1) a{
    color: white;
}

header nav .logo_ul ul li:nth-last-child(1) a i{
    margin-left: 5px;
     
}

header nav .logo_ul ul li a:hover{
    color: rgb(0, 0, 0, 0.2);
}

header nav .contact_select{
    display: flex;
    align-items: center;
}

header nav .contact_select li{
    display: flex;
    align-items: center;
    padding: 3px 10px;
}

header nav .contact_select li a{
    font-size: 13px;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

header nav .contact_select li:nth-child(2){
    background: #fff;
    border-radius: 10px;
    padding: 2px 13px 1px 13px;
    width: 100px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

/*----------------section part--------------------*/
section{
    width: 80%;
    /* border: 1px solid #000; */
    margin: auto;
    margin-top: 20px;
    display: flex;
}

section .content , .img_box{
    position: relative;
    width: 40%;
    /* border: 1px solid #000; */
    padding: 10px;
}

section .img_box{
    /* position: relative; */
    width: 60%;
    /* border: 1px solid #000; */
}

section .content h5{
    background: #f04417;
    display: unset;
    color: #fff;
    padding: 2px 8px 2px 8px;
    border-radius: 5px;
    font-size: 10px;
}

section .content h1{
    margin-top: 5px;
    font-family: 'bobblebod';
    font-size: 65px;
    line-height: 55px;
    letter-spacing: -2px;
}

section .content .spicy_icon{
   margin-top: 12px; 
}

section .content p{
    margin-top: 20px; 
    width: 300px;
    font-size: 12px;
}

section .content h6{
    margin-top: 20px; 
    color: gray;
}

section .content .img_icon{
    display: flex;
    align-items: center;
}

section .content .img_icon img{
    margin-right: 9px;
}

section .content .img_icon h6{
    background-color: #00a950;
    color: #fff;
    border-radius: 50%;
    position: relative;
    top: -10px;
    padding: 8px 10px;
}

section .content .order_rate{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

section .content .order_rate a{
    background: #000;
    border-radius: 10px;
    padding: 7px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'bobblebod';
    transition: .3s;
}

section .content .order_rate a:hover{
    background: #00a950;
}  
  
section .content .order_rate h2{
    margin-left: 30px;
    color: #00a950;
    font-size: 30px;
    font-weight: 900;
}  

section .content .order_rate h2 sup{
    margin-left: 5px;
    color: #a3ca72;
    font-size: 16px;
    font-weight: 900;
    position: relative;
    top: -5px;
}

section .content .food_slider{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
}

section .content .food_slider::-webkit-scrollbar{
    display: none;
}

section .content .food_slider img{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    cursor: pointer;
    opacity: .3;
    transition: .3 li;
}

section .content .food_slider img:nth-child(1){
    opacity: 2;
    transform: scale(1.1);
}    

section .content .food_slider img:hover{
    opacity: 1;
    transform: scale(1.1);
} 


section .img_box .images{
    width: 100%;
    display: flex;
    align-items: center;
    scroll-behavior: smooth;
    overflow-x: auto;
    margin-top: 50px;
}

section .img_box .images::-webkit-scrollbar{
    display: none;
}

section .img_box .images img{
    width: 35%;
    margin-right: 75px;
    filter: blur(1.5px);
    transition: .3s linear;
}

section .img_box .images img:nth-child(1){
    width: 60%;
    filter: blur(0px);
    /* opacity: 1; */
}    


section .img_box .side_buttom{
    position: absolute;
    bottom: 10px;
    left: 20%;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .img_box .side_buttom i{
    background: #ff8e27;
    color: #fff;
    border-radius: 50%;
    padding: 4px 8px;
    cursor: pointer;
    transition: .3s linear;
}

section .img_box .barger_badge{
    position: absolute;
    display: flex;
    align-items: center;
    top: 10%;
    right: 20%;
    z-index: 99999;
}

section .img_box .barger_badge .badge_card{
    width: 70px;
    height: 80px;
    background: #fff;
    box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.25);
    margin-right: 5px;
    border-radius: 5px 5px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

section .img_box .barger_badge .badge_card p{
    color: gray;
    font-size: 11px;
}

section .img_box .barger_badge .badge_card h5{
    color: #f04417;
    font-size: 14px;
    font-weight: 900;
}

.del {
    width: 100%;
    /* border: 1px solid black; */
    margin: auto;
    background: #fbf8f2;
    height: auto;
    padding: 50px 10% ;
    display: flex;
    align-items: center;
}

.del .cont h1{
    font-weight: bold;
    font-size: 55px;
    line-height: 50px;
    font-family: "bobblebod";
}

.del .cont p{
    font-size: 12px;
    color: rgb(0, 0, 0, 0.5);
    font-weight: 600;
    margin: 10px 0;
}

.del .cont button {
    background: #00a950;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
}

.del .cont button:hover{
    background: #000;
}

.del img:nth-child(2){
    width: 290px;
    transform: translateX(-100px) translateY(30px);
}

.del img:nth-child(3){
    width: 200px;
    transform: translateX(-70px);
}

.food_chart{
    border: 1px solid;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.food_chart .food_bx{
    position: relative;
    width: 30%;
    height: 450px;
    background: #00a950;
    padding: 60px 50px;
    z-index: 2;
}

.food_chart .food_bx:nth-child(2){
    width: 40%;
    background: #ff8e27;
}

.food_chart .food_bx:nth-child(3){
    background: #a1cf67;
}

.food_chart .food_bx .cont{
    z-index: 2;
    position: relative;
}

.food_chart .food_bx .cont h1{
    font-family: "bobblebod";
    font-size: 50px;
    line-height: 50px;
    color: #fff;
}

.food_chart .food_bx .cont p{
    font-size: 11px;
    color: #fff;
    margin-top: 18px;
}

.food_chart .food_bx .cont button{
    background: #000;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
}

.food_chart .food_bx .cont button:hover{
    background-color: #f04417;
}

.food_chart .food_bx img{
    position: absolute;
    right: 0;
    top: 10%;
    width: 250px;
    z-index: 0;

}

.food_chart .food_bx:nth-child(2) img{
    position: absolute;
    right: 0;
    top: 10%;
    width: 290px;
    z-index: 0;
}

/* .food_chart2{
    border: 1px solid;
    width: 100%;
    display: flex;
    justify-content: space-between;
} */

.food_chart2 .food_bx{
    position: relative;
    width: 50%;
    height: 280px;
    background: #245dcb;
    padding: 30px 50px;
    z-index: 2;
}

.food_chart2 .food_bx:nth-child(2){
    width: 30%;
    background: #cd2869;
}

.food_chart2 .food_bx:nth-child(3){
    width:20%;
    background: #fff;
}

.food_chart2 .food_bx:nth-child(1) img{
    position: absolute;
    right: 0;
    top: 10%;
    width: 400px;
}

.food_chart2 .food_bx:nth-child(2) img{
    position: absolute;
    right: 0;
    top: 10%;
    width: 170px;
    height: 230px;
}

.food_chart2 .food_bx:nth-child(3) h1{
    color: #000;
    font-size: 45px;
    line-height: 45px;
}

.food_chart2 .food_bx:nth-child(3) button{
    border-radius: 50%;
    padding: 9px 11px;
    background: #ff8e27;
    transition: .3s linear;
}

.food_chart2 .food_bx:nth-child(3) button:hover{
    background: #000;
}

.main_bx{
    background: #fbf8f2;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
}

.main_bx h1{
    margin-top: 5px;
    font-size: 65px;
    font-weight: bold;
    line-height: 52px;
    letter-spacing: -2px;
    font-family: "bobblebod";
}

.main_bx img{
    width: 90%;
    margin: 50px 0;  
}

.main_bx p{
    width: 30%;
    text-align: center;
    color: #fec140;
    font-weight: 900;
    margin: 50px 0;  
}

.main_bx button{
    background: #000;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
}

.main_bx button:hover{
    background: #f04417;
}

.combo_bx{
    width: 100%;
    height: auto;
    position: relative;
}

.combo_bx img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: #000;
    z-index: -1;
}

.combo_bx .cont{
    padding: 70px 0px 70px 100px;
}

.combo_bx .cont h1{
    margin-top: 5px;
    font-size: 65px;
    line-height: 55px;
    font-weight: bold;
    letter-spacing: -2px;
    font-family: "bobblebod";
    color: #00a950;
}

.combo_bx .cont p{
    margin-top: 5px;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    letter-spacing: -2px;
    font-family: "bobblebod";
    color: #a1cf67;
}

.combo_bx .cont p:nth-child(3){
    margin-top: 0px;
    color: #ff8e29;
}

.combo_bx .cont p:nth-child(4){
    margin-top: 30px;
    font-size: 13px;
    width: 430px;
    line-height: unset;
    letter-spacing: unset;
    font-family: "poppins",sans-serif;
    color: rgb(255, 255, 255, 0.6);
}

.combo_bx .cont .btns{
    margin-top: 20px;
}

.combo_bx .cont .btns button{
    background: #00a950;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
    margin-right: 10px;
    border: 2px solid #00a950;
}

.combo_bx .cont .btns button:hover{
    background: none;
    border: 2px solid rgb(255, 255, 255, 0.6);
}

.combo_bx .cont .btns button:nth-child(2){
    background: none;
    border: 2px solid rgb(255, 255, 255, 0.6);
}

.combo_bx .cont .btns button:nth-child(2):hover{
    background: #00a950;
    border: 2px solid #00a950;
}

.combo_bx .cont h6{
    color: gray;
    margin-top: 30px;
}

.combo_bx .cont .icon_bx{
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.combo_bx .cont .icon_bx .card{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 30px;
}

.combo_bx .cont .icon_bx .card img{
    position: unset;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.combo_bx .cont .icon_bx .card h6{
    color: #fea828;
    margin-top: 0;
}

footer{
    width: 100%;
    height: auto;
    background: #fbf8f2;
    position: relative;
}

footer nav{
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

footer nav ul{
    display: flex;
    align-items: center;
    list-style: none;
}

footer nav ul li{
    margin: 5px 10px;
}


footer nav ul li a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    transition: .3s linear;
}

footer nav ul li a:hover{
    color: rgb(0, 0, 0, 0.6);
}

footer nav ul li:nth-child(1) a{
    background: #ff8e27;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
}

footer nav ul li:nth-child(1) a i{
    margin-left: 10px;
}

footer nav ul:nth-child(2) li a{
    all: unset;
    color: #00a950;
    font-weight: bold;
    font-size: 16px;
}

footer nav ul:nth-child(2) li:nth-child(2){
    background: #fff;
    border-radius: 10px;
    padding: 9px 15px;
    color: #000;
    /* text-decoration: none; */
    font-size: 16px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.1);
    margin-top: 0;
    width: 100px;
}
footer hr{
    width: 85%;
    margin: auto;
    margin-top: 20px;
}

footer .cont{
    width: 85%;
    margin: auto;
    margin-top: 40px;
}
footer .cont h1{
    margin-top: 5px;
    font-size: 45px;
    font-weight: bold;
    line-height: 35px;
    letter-spacing: -2px;
    font-family: "bobblebod";
    color: #a1cf67;
}

footer .cont h1:nth-child(2){
    color: #a1cf67;
}

footer .cont .btns{
    margin-top: 20px;
}

footer .cont .btns button{
    background: #00a950;
    border-radius: 10px;
    padding: 9px 15px;
    color: #fff;
    /* text-decoration: none; */
    font-size: 13px;
    font-family: "bobblebod";
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s linear;
    margin-top: 20px;
    /* border: 2px solid #00a950; */
    margin-right: 10px;
}

footer .cont .btns button:hover{
    background: #a1cf67;
}

footer .cont .btns button:nth-child(2){
    background: #a1cf67;
}

footer .cont .btns button:nth-child(2):hover{
    background: #00a950;
}

footer img{
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 450px;
}

footer p:nth-last-child(1){
    color: rgb(0, 0, 0, 0.6);
    width: 85%;
    margin: auto;
    margin-top: 20px;
    font-size: 13px;
    padding: 20px;
}

footer p:nth-last-child(1) a{
    color: #00a950;
    text-decoration: none;
    font-weight: 600;  
}