    @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400&display=swap');
     :root {
        --green: #27ae60;
        --black: #192a56;
        --lihght-color: #666;
        --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    }
    
    * {
        margin: 0;
        padding: 0;
        font-family: 'Nunito', sans-serif;
        text-decoration: none;
        box-sizing: border-box;
        text-transform: capitalize;
        transition: all .3s linear;
    }
    
    html {
        font-size: 62.5%;
        /* overflow: hidden; */
        scroll-behavior: smooth;
        scroll-padding-top: 5.5rem;
    }
    
    section {
        padding: 2rem 9%;
    }
    
    section:nth-child(even) {
        background: #eee;
    }
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 7%;
        display: flex;
        justify-content: space-between;
        z-index: 1000;
        box-shadow: var(--box-shadow);
    }
    
    header .logo {
        color: var(--black);
        font-size: 2.5rem;
        font-weight: bolder;
    }
    
    header .logo i {
        color: var(--green);
    }
    
    header .navbar a {
        font-size: 1.7rem;
        border-radius: 8px;
        padding: .5rem 1.5rem;
        color: var(--lihght-color);
    }
    
    header .navbar a.active,
    header .navbar a:hover {
        color: #fff;
        background: var(--green);
        transition: .3s all ease;
    }
    
    header .icons i,
    head .icons a {
        cursor: pointer;
        border-radius: 50%;
        background: #eee;
        margin-left: 8px;
        width: 4.5rem;
        text-align: center;
        font-size: 1.7rem;
        line-height: 4.5rem;
        color: var(--black);
    }
    
    header .icons i:hover,
    head .icons a:hover {
        background: var(--green);
        color: #fff;
        transform: rotate(360deg);
        transition: .3s all ease;
    }
    
    header .icons #menu_bars {
        display: none;
    }
    
    #search_form {
        position: fixed;
        top: -110%;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1004;
        background: rgba(0, 0, 0, .8);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }
    
    #search_form.active {
        top: 0;
    }
    
    #search_form #search_box {
        width: 50rem;
        border: none;
        border-bottom: .1rem solid #fff;
        padding: 1rem 0;
        color: #fff;
        font-size: 3rem;
        text-transform: none;
        background: none;
        outline: none;
    }
    
    #search_form #search_box::placeholder {
        color: #ccc;
    }
    
    #search_form #search_box::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }
    
    #search_form label {
        color: #fff;
        cursor: pointer;
        font-size: 3rem;
    }
    
    #search_form label:hover {
        color: var(--green);
    }
    
    #search_form #close {
        color: #fff;
        position: absolute;
        cursor: pointer;
        right: 3rem;
        top: 2rem;
        font-size: 4rem;
    }
    
    .home .home_slider .slide {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding-top: 9rem;
    }
    
    .home .home_slider .slide .content {
        flex: 1 1 45rem;
    }
    
    .home .home_slider .slide .image {
        flex: 1 1 45rem;
    }
    
    .slide .image img {
        width: 100%;
    }
    
    .home .home_slider .slide span {
        color: var(--green);
        font-size: 2.5rem;
    }
    
    .home .home_slider .slide h3 {
        color: var(--black);
        font-size: 7rem;
    }
    
    .home .home_slider .slide p {
        color: var(--lihght-color);
        font-size: 2rem;
        padding: .5rem;
    }
    
    .btn {
        color: #fff;
        margin-top: 1rem;
        display: inline-block;
        padding: .8rem 3rem;
        border-radius: .8rem;
        background: var(--black);
        font-size: 1.7rem;
    }
    
    .btn:hover {
        background: var(--green);
        letter-spacing: .1rem;
        transition: .4s all ease;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--green)
    }
    /* sectoin dishes */
    
    .sub_heading {
        color: var(--green);
        padding-top: 1rem;
        text-align: center;
        font-size: 2rem;
    }
    
    .heading {
        color: var(--black);
        padding-bottom: 1rem;
        text-align: center;
        font-size: 3rem;
    }
    
    .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: #fff;
        border: .1rem solid rgba(0, 0, 0, .2);
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .dishes .box_container .box .fa-heart,
    .dishes .box_container .box .fa-eye {
        position: absolute;
        top: 1rem;
        width: 5rem;
        height: 5rem;
        line-height: 5rem;
        font-size: 1.7rem;
        color: var(--black);
        background: #eee;
        border-radius: 50%;
        text-align: center;
    }
    
    .dishes .box_container .box .fa-heart:hover,
    .dishes .box_container .box .fa-eye:hover {
        background: 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;
    }
    
     :hover:hover .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 {
        color: var(--green);
        font-size: 1.7rem;
    }
    
    .dishes .box_container .box span {
        color: var(--green);
        font-size: 2.5rem;
        font-weight: bolder;
        margin-right: 1.5rem;
    }
    /* section about */
    
    .about .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.rem;
    }
    
    .about .row .image {
        flex: 1 1 45rem;
    }
    
    .about .row .image img {
        width: 100%;
    }
    
    .about .row .content {
        flex: 1 1 45rem;
    }
    
    .about .row .content h3 {
        color: var(--black);
        font-size: 4rem;
        padding: .5rem 0;
    }
    
    .about .row .content p {
        color: var(--lihght-color);
        font-size: 1.5rem;
        list-style: 2;
        padding: .5rem 0;
    }
    
    .about .row .content .icons_container {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 1rem 0;
        margin-top: 8px;
    }
    
    .about .row .content .icons_container .icons {
        background: #eee;
        border-radius: 8px;
        border: .1rem solid rgba(0, 0, 0, .2);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex: 1 1 17rem;
        padding: 1.5rem 1rem;
        cursor: pointer;
    }
    
    .about .row .content .icons_container .icons:hover {
        border-color: var(--green);
        background: var(--green);
    }
    
    .about .row .content .icons_container .icons i {
        font-size: 2.5rem;
        color: var(--green);
    }
    
    .about .row .content .icons_container .icons span {
        font-size: 1.5rem;
        color: var(--black);
    }
    
    .about .row .content .icons_container .icons:hover i {
        color: #fff;
    }
    
    .about .row .content .icons_container .icons:hover span {
        color: #fff;
    }
    /* section menu */
    
    .menu .box_container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        display: grid;
        gap: 1.5rem;
    }
    
    .menu .box_container .box {
        background: #fff;
        border: .1rem soldi rgba(0, 0, 0, .1);
        border-radius: 8px;
        box-shadow: var(--box-shadow);
    }
    
    .menu .box_container .box .image {
        height: 25rem;
        width: 100%;
        overflow: hidden;
        padding: 1.5rem;
        position: relative;
    }
    
    .menu .box_container .box .image img {
        height: 100%;
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
    }
    
    .menu .box_container .box .image .fa-heart {
        position: absolute;
        top: 2.5rem;
        right: 2.5rem;
        height: 5rem;
        width: 5rem;
        line-height: 5rem;
        text-align: center;
        font-size: 2rem;
        background: #fff;
        border-radius: 50%;
        color: var(--black);
    }
    
    .menu .box_container .box .content {
        padding: 2rem;
        padding-top: 0;
    }
    
    .box_container .box .content .stars {
        padding-bottom: 1rem;
    }
    
    .box_container .box .content i {
        font-size: 1.7rem;
        color: var(--green);
    }
    
    .box_container .box .content h3 {
        color: var(--black);
        font-size: 2.5rem;
    }
    
    .box_container .box .content p {
        color: var(--lihght-color);
        font-size: 1.6rem;
        padding: .5rem 0;
        line-height: 1.5;
    }
    
    .box_container .box .content .price {
        color: var(--green);
        font-size: 2.5rem;
        margin-left: 1rem;
    }
    
    .menu .box_container .box .image .fa-heart:hover {
        background: var(--green);
        color: #fff;
    }
    /* review section */
    
    .review .slide {
        padding: 2rem;
        box-shadow: var(--box-shadow);
        border: .1rem solid rgba(0, 0, 0, .2);
        position: relative;
        border-radius: 8px;
    }
    
    .review .slide .fa-quote-right {
        position: absolute;
        right: 2rem;
        top: 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 {
        height: 7rem;
        width: 7rem;
        object-fit: cover;
        border-radius: 50%;
        top: 0;
        left: 0;
    }
    
    .review .slide .user h3 {
        color: var(--black);
        font-size: 2rem;
        padding-bottom: .5rem;
    }
    
    .review .slide .user i {
        color: var(--green);
        font-size: 1.3rem;
    }
    
    .slide p {
        color: var(--lihght-color);
        font-size: 1.5rem;
        line-height: 1.8;
    }
    /* section order */
    
    .order form {
        width: 90%;
        border-radius: 1rem;
        box-shadow: var(--box-shadow);
        border: .1rem solid rgba(0, 0, 0, .2);
        background: #fff;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .order form .inputBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .order form .inputBox .input {
        width: 49%;
    }
    
    .order form .inputBox .input span {
        display: block;
        padding: .5rem 0;
        font-size: 1.5rem;
        color: var(--lihght-color);
    }
    
    .order form .inputBox .input input,
    .order form .inputBox .input textarea {
        background: #eee;
        border-radius: .5rem;
        padding: 1rem;
        color: var(--black);
        text-transform: none;
        outline: none;
        border: none;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .order form .btn {
        margin-bottom: 0;
        border: none;
        outline: none;
        cursor: pointer;
    }
    
    .order form .inputBox .input textarea {
        resize: none;
        height: 20rem;
    }
    /* footer */
    
    .footer .box_footer {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 1.5rem;
    }
    
    .footer .box_footer .box h3 {
        font-size: 2.5rem;
        padding: 8px 0;
        color: var(--black);
    }
    
    .footer .box_footer .box a {
        display: block;
        font-size: 1.5rem;
        padding: 8px 0;
        color: var(--lihght-color);
    }
    
    .footer .box_footer .box a:hover {
        color: var(--green);
        text-decoration: underline;
    }
    
    .footer .credit {
        text-align: center;
        border-top: .1rem solid rgba(0, 0, 0, .1);
        color: var(--black);
        font-size: 2rem;
        padding: 8px;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer .credit span {
        color: var(--green);
    }
    /* loader */
    
    .loader-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10000;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .loader-container img {
        width: 35rem;
    }
    
    .loader-container.fade-out {
        top: 110%;
        opacity: 0;
    }
    /* media queries */
    
    @media (max-width:450px) {
        html {
            font-size: 50%;
        }
        .dishes .box_container .box img {
            height: auto;
            width: 100%;
        }
        .order form .inputBox .input {
            width: 100%;
        }
    }
    
    @media (max-width: 991px) {
        html {
            font-size: 55%;
        }
        header {
            padding: 1rem 2rem;
        }
        header {
            padding: 1rem;
        }
        .dishes .box_container .box img {
            height: auto;
            width: 100%;
        }
    }
    
    @media (max-width:768px) {
        header .icons #menu_bars {
            display: inline-block;
        }
        header {
            padding: 1rem 2rem;
        }
        header .navbar {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: #fff;
            border-bottom: .1rem solid rgba(0, 0, 0, .2);
            border-top: .1rem solid rgba(0, 0, 0, .2);
            padding: 1rem;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }
        header .navbar.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }
        header .navbar a {
            display: block;
            padding: 1.5rem;
            font-size: 2rem;
            margin: 1rem;
            background: #eee;
        }
        #search_form #search_box {
            width: 90%;
            margin: 0 1rem;
        }
        .home .home_slider .slide h3 {
            color: var(--black);
            font-size: 5rem;
        }
        .order form .btn {
            text-align: center;
        }
    }