@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;700&display=swap');
*{
    padding: 0; margin: 0; box-sizing: border-box;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    outline: none;
    border: none;
    transition: all .4s linear;
}
:root{
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shodow: .5rem 1.5rem rgba(0,0,0,0.1);

}
.btn{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
}
.btn:hover{
    background-color: var(--green);
    letter-spacing: .1rem;
}
section{
    padding: 2rem 9%;
}
section:nth-child(even){
    background: #eee;
}
.sub-heading{
    text-align: center;
    font-size: 2rem;
    color: var(--green);
    padding-top: 1rem;
}
.heading{
    text-align: center;
    font-size: 3rem;
    color: var(--black);
    padding-bottom: 2rem;
    text-transform: uppercase;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--box-shodow);
}
header .logo{
    font-size: 2.5rem;
    color: black;
    font-weight: 700;
}
header .logo i{
    color: var(--green);
}
header .navbar a{
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    color: var(--light-color);
}
header .navbar a:hover,
header .navbar a.active{
    background-color: var(--green);
    color: #fff;
    }
header .icons i,
header .icons a{
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    color: var(--black);
    text-align: center;
    font-size: 1.7rem;
    border-radius: 50%;
    background: #eee;

}
header .icons i:hover,
header .icons a:hover{
    background: var(--green);
    color: #fff;
    transform: rotate(360deg);
    
}
#menu-btn{
    display: none;
}

#search-form{
    position: fixed;
    top: -1000%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1001;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
#search-form.active{
    top: 0;
}
#search-form input{
    border-bottom: .1rem solid #fff;
    padding: 1rem 0;
    color: #fff;
    font-size: 3rem;
    background: none;
    text-transform: none;
}
#search-form input::placeholder{
    color: #fff;
    font-size: 1.7rem;
}
#search-form label{
    cursor: pointer;
    color: #fff;
    font-size: 3rem;
}
#search-form label:hover{
    color: var(--green);
}
#search-form #times{
    position: absolute;
    top: 8rem;
    right: 5rem;
    font-size: 5rem;
    cursor: pointer;
    color: #fff;
}
/* ******************************************************************* */
.home .home-slider .slide{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
}
.home .home-slider .slide .content{
    flex: 1 1 45rem;
}
.home .home-slider .slide .content span{
    font-size: 2.5rem;
    color: var(--green);
}
.home .home-slider .slide .content h3{
    font-size: 7rem;
    color: var(--black);
}
.home .home-slider .slide .content p{
    color: var(--light-color);
    font-size: 2rem;
    padding: .5rem 0;
}

.home .home-slider .slide .home-img{
    flex: 1 1 45rem;
}
.home .home-slider .slide .home-img img{
    width: 100%;
}
.dishes .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;
}
.dishes .box-container .box{
    padding: 2.5rem;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: var(--box-shodow);
    border: .1rem solid rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.dishes .box-container .box .fa-heart,
.dishes .box-container .box .fa-eye{
    position: absolute;
    top: 1.5rem;
    background: #eee;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--black);
}
.dishes .box-container .box .fa-heart:hover,
.dishes .box-container .box .fa-eye:hover{
    background-color: var(--green);
    color: #fff;
}
.dishes .box-container .box .fa-heart{
    right: -15rem;
}
.dishes .box-container .box .fa-eye{
    left: -15rem;
}
.dishes .box-container .box:hover .fa-heart{
    right: 1.5rem;
}
.dishes .box-container .box:hover .fa-eye{
    left: 1.5rem;
}
.dishes .box-container .box img{
    height: 17rem;
    margin: 1rem 0;
}
.dishes .box-container .box h3{
    color: var(--black);
    font-size: 2.5rem;
}
.dishes .box-container .box .stars{
    padding: 1rem 0;
}
.dishes .box-container .box .stars i{
    font-size: 1.7rem;
    color: var(--green);
}
.dishes .box-container .box span{
    font-weight: bolder;
    color: var(--green);
    margin-right: 1rem;
    font-size: 2.5rem;
}
.about .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.about .row .about-image{
    flex: 1 1 45rem;
}
.about .row .about-image img{
    width: 100%;
}
.about .row .about-content{
    flex: 1 1 45rem;
}
.about .row .about-content h3{
    color: var(--black);
    font-size: 5rem;
    padding: .5rem 0;
}
.about .row .about-content p{
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 2;
}
.about .row .about-content .icons-container{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}
.about .row .about-content .icons-container .icons{
    background: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
}
.about .row .about-content .icons-container i{
    font-size: 2.5rem;
    color: var(--green);
}
.about .row .about-content .icons-container span{
    font-size: 1.5rem;
    color: var(--black);
}
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, auto));
    gap: 1.5rem;
}
.menu .box-container .box{
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,0.2);
    box-shadow: var(--box-shodow);
    background: #fff;
}
.menu .box-container .box .img{
    width: 100%;
    height: 25rem;
    padding: 1.5rem;    
    position: relative;
}
.menu .box-container .box .img img{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
}

.menu .box-container .box .img .fa-heart{
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--black);
}
.menu .box-container .box .img .fa-heart:hover{
    background: var(--green);
    color: #fff;
}
.menu .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
}
.menu .box-container .box .content .stars{
    padding-bottom: 1rem;
}
.menu .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--green);
}
.menu .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--black);
}
.menu .box-container .box .content p{
    color: var(--light-color);
    font-size: 1.6rem;
    margin: .5rem 0;
    line-height: 1.5;
}
.menu .box-container .box .content span{
    margin-left: 1rem;
    font-size: 2.5rem;
    color: var(--green);
}

.review .slide{
    padding: 2rem;
    box-shadow: var(--box-shodow);
    border: .1rem solid rgba(0,0,0,0.2);
    border-radius: .5rem;
    position: relative;
}
.review .slide .fa-quote-right{
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: #ccc;
}
.review .slide .user{
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
   
}
.review .slide .user img{
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    object-fit: cover;
}
.review .slide .user h3{
    font-size: 2rem;
    padding-bottom: .5rem;
    color: var(--black);
}
.review .slide .user .stars i{
    font-size: 1.3rem;
    color: var(--green);
}
.review .slide p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--light-color);
}
.order form{
    max-width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shodow);
    border: .1rem solid rgba(0,0,0,0.2);
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;
}
.order form .inputBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.order form .inputBox .input{
    width: 49%;
}
.order form .inputBox .input span{
    display: block;
    padding: .5rem 0;
    color: var(--light-color);
    font-size: 1.5rem;
}
.order form .inputBox .input input,
.order form .inputBox .input textarea{
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem   ;
    color: var(--black);
    text-transform: none;
    width: 100%;
    margin-bottom: 1rem;
}   
.order form .inputBox .input input:focus,
.order form .inputBox .input textarea:focus{
    border: .1rem solid var(--green);
}
.order form .inputBox .input textarea{
    height: 20rem;
    resize: none;
}
.order form .btn{
    margin-top: 0;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}
.footer .box-container .box h3{
    padding: .5rem 0;
    font-size: 2.5rem;
    color: var(--black);
}
.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    color:var(--light-color);
    padding: .5rem 0;
}
.footer .box-container .box a:hover{
    color: var(--green);
    text-decoration: underline;
}
.footer .credit{
    text-align: center;
    border-top: .1rem solid rgba(0,0,0,0.2);
    font-size: 2rem;
    padding: 1.5rem 0;
    color: var(--black);
    padding: .5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.footer .credit span{
    color: var(--green);
}






@media (max-width: 991px){
    html{
        font-size: 55%;
    }
    header{
        padding: 1rem 2rem;
    }
    section{
        padding: 2rem;
    }

}
@media (max-width: 786px){
    #menu-btn{
        display: inline-block;
    }
    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 1rem;
        border-top: .1rem solid rgba(0,0,0,0.2);
        border-bottom: .1rem solid rgba(0,0,0,0.2);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);;
    }

    header .navbar a{
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        background-color: #eee;
        font-size: 2rem;
    }

    #search-form input{
        width: 90%;
    }
    #search-form #times{
        font-size: 3.9rem;
    }
    .home .home-slider .slide .content h3{
        font-size: 5rem;

       }
}
@media (max-width: 450px){
   html{
     font-size: 50%;
   }
   #search-form #times{
    font-size: 3rem;
}
.dishes .box-container .box img{
    height: auto;
    width: 100%;
}
.order form .inputBox .input{
    width: 100%;
}

}