@font-face {
    font-family: 'opensans';
    src: url('fonts/open-sans/opensans-regular-webfont.woff2') format('woff2'),
        url('fonts/open-sans/opensans-regular-webfont.woff') format('woff');
    font-weight: 400;

}

@font-face {
    font-family: 'shabnam';
    src: url('fonts/shabnam/shabnam.woff2') format('woff2'),
        url('fonts/shabnam/shabnam.woff') format('woff');
    font-weight: 400;
}




@font-face {
    font-family: 'shabnam';
    src: url('fonts/shabnam/shabnam-bold.woff2') format('woff2'),
        url('fonts/shabnam/shabnam-bold.woff') format('woff');
    font-weight: 700;
}




@font-face {
    font-family: 'shabnam';
    src: url('fonts/shabnam/shabnam-light.woff2') format('woff2'),
        url('fonts/shabnam/shabnam-light.woff') format('woff');
    font-weight: 100;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

html {
    font-family: 'shabnam', Tahoma, sans-serif;
    font-size: 62.5%;
    direction: rtl;

}

body {
    font-size: 1.2rem;
}

.nav {
    height: 50px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 5;
    margin-top: -2px;
}

.nav>.nav-header {
    display: inline;
    float: left;
}

.nav>.nav-header>.nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px 10px 10px 10px;
}

.nav>.nav-btn {
    display: none;
}

.nav>.nav-links {
    display: inline;
    float: right;
    font-size: 1.5rem;
}

.nav>.nav-links>a {
    display: inline-block;
    padding: 0 20px;
    text-decoration: none;
    color: #efefef;
    transition: all .5s ease;
    height: 50px;
    line-height: 50px;

}

.nav>.nav-links>a:hover {
    background-color: #e54c2a;
    transition: all .5s ease;
}

.nav>#nav-check {
    display: none;
}

@media (max-width:600px) {
    .nav>.nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .nav>.nav-btn>label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
    }

    .nav>.nav-btn>label:hover,
    .nav #nav-check:checked~.nav-btn>label {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .nav>.nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
    }

    .nav>.nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #333;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 50px;
        left: 0px;
    }

    .nav>.nav-links>a {
        display: block;
        width: 100%;
    }

    .nav>#nav-check:not(:checked)~.nav-links {
        height: 0px;
    }

    .nav>#nav-check:checked~.nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
    }
}

.swiper-container {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

header {
    height: 650px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width:1200px) {
    .container {
        width: 98%;
    }
}

#food-cat-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#food-cat-list a {
    margin: 0 10px;
}

.cta-slide {
    position: absolute;
    top: 120px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.cta-slide h2 {
    font-size: 5rem;
    font-weight: 700;
    color: #fafafa;
    margin-top: 20px;
    text-shadow: 0 0 5px #333;
}

.cta-slide p {
    width: 95%;
    max-width: 700px;
    margin: 30px auto;
    font-size: 1.4rem;
    font-weight: 400;
    color: #fafafa;
    background-color: rgba(0, 0, 0, 0.60);
    box-sizing: border-box;
    padding: 10px;
    border-radius: 7px;

}

#food-list {
    margin: 20px 0;
}

#food-list .container {
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    position: relative;
}

.food-cart {
    width: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 14px 20px rgb(56 60 71 / 20%);
    position: relative;
    margin: 15px;
}

.food-cart img {
    width: 250px;
    height: 175px;
    object-fit: cover;
    transition: all .7s ease;
}

.food-cart h2 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #333;
}

.food-cart p {
    width: 100%;
    margin-top: 5px;
    padding: 10px 7px;
    height: 65px;
    overflow: hidden;
}

.fc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}


.add-p {
    width: 100px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #fafafa;
    background-color: #e54c2a;
    border-radius: 7px;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.add-p:hover i {
    transform: rotate(360deg);
    transition: all .5s ease;
}

.food-cart:hover img {
    transform: scale(1.05);
    transition: all .7s ease;
}



.add-p i {
    font-size: 10px;
    margin-right: 5px;
}

.afood-btn {
    position: absolute;
    bottom: 0;
    left: 30px;
    color: #e54c2a;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 10px;
    height: 20px;
    line-height: 20px;
}

.afood-btn i {
    font-size: 17px;
    margin-top: 5px;
    margin-right: 10px;
}

footer {
    margin-top: 50px;
    background-color: #263238;
    padding: 10px;
    color: #fafafa;
}

footer .container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer-links {
    width: 200px;
    padding-top: 25px;
}

.footer-links ul {
    list-style: none;
    width: 100%;
    text-align: right;
}

.footer-links ul li a {
    color: #fafafa;
    transition: all 0.5s ease;
}

.footer-links ul li a:hover {
    color: #e54c2a;
    transition: all 0.5s ease;
}

.footer-links ul li {
    padding: 10px 0;
}

.footer-text {
    width: 320px;
    padding-top: 25px;
}

.footer-text h2 {
    font-weight: 400;
    margin: 10px 0;
}

.footer-text p {
    font-weight: 100;
    line-height: 2rem;
}

.footer-cp {
    margin-top: 30px;
    border-top: 1px solid #455A64;
    padding: 10px 0 10px 0;
    width: 100%;
    text-align: center;
    font-weight: 100px;
    font-size: 1.3rem;
}

.footer-logos {
    padding-top: 25px;
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logos img {
    width: 150px;
    object-fit: cover;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cat-li-slide .container {
    position: relative;
    overflow: hidden;
    height: 120px;
}

.swiper-pagination {
    bottom: 30px;
}

.phone-number {
    direction: ltr;
    text-align: left;
}

#cat-head h2 {
    width: 95%;
    height: 50px;
    line-height: 50px;
    margin: 10px auto;
    border-radius: 10px;
    background-color: #e54c2a;
    color: #fafafacc;
    text-align: right;
    font-weight: 400;
    padding: 0 35px;
    box-sizing: border-box;
    font-size: 1.4rem;
}
#cat-head h2 span {
    color: #fafafa;

}

.shop-cart-bd {
    width: 100%;
    background-color: rgb(219, 219, 219);
    margin: 10px auto;
    border-radius: 10px;
    color: #555;
}

.sc-item {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    border-bottom: 1px rgba(119, 119, 119, .3) solid;
    font-size: 1.3rem;
}

@media screen and (max-width: 800px) {
    .sc-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        justify-items: center;
    }
    /* .sc-item p:first-of-type {
        grid-column: 1 / span 2;
    } */
    .sc-item p {
        margin: 25px 0;
    }

}

@media screen and (max-width: 500px) {
    .sc-item {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        justify-items: center;
    }

}

.sc-item:last-of-type {
    border-bottom: none;
}

.sc-item input[type=text] {
    width: 40px;
    height: 25px;
    font-size: 1.3rem;
    padding: 0 0;
    border: none;
    color: #555;
    background-color: rgb(236, 236, 236);
    text-align: center;
}
.sc-item i {
    font-size: 1rem;
    margin: 0 5px;
    color: #777;
}
.sc-item input[type=number]:focus {
    border: none;

}

.shc-btn {
    padding: 10px 20px;
    background-color: #e54c2a;
    color: #fafafa;
    border:none;
    border-radius: 5px;
    cursor: pointer;
    left: 0;
    position: absolute;
}
.shc-btn-m {
    padding: 10px 20px;
    background-color: #1B5E20;
    color: #fafafa;
    border:none;
    border-radius: 5px;
    cursor: pointer;
    right: 0;
    position: absolute;
}
#shop-cart {
    padding-bottom: 25px;
}

#shop-cart form {
    width: 97%;
    max-width: 800px;
    margin:0 auto;
    position: relative;
}

.sc-onv {
    padding: 20px 20px 0 0;
}

.trash i {
    color: #e54c2a;
    font-size: 1.5rem;
}

.shop-cart2 {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-cart2 input {
    width: 80%;
    padding: 5px 10px;
}

.ttxt {
    width: 80%;
    margin: 0 auto;
    line-height: 2.5rem;
    padding: 20px 0;
}
.btn-mtp {
    padding: 5px 10px;
    background-color: #757575;
    color: #fafafa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    right: 0;
    top: 0;
    position: absolute;
    margin-top: -30px;
    font-size: 1rem;
}

#food-cat-list a img {
    border-radius: 5px;
}

.swiper-slide img {
    border-radius: 5px;
}
#about {
    background-color: #E0E0E0;
    margin-top: -50px;
    margin-bottom: -50px;
    padding: 50px 0;
}
#about .container {
    max-width: 1000px;
}
.abt-us {
    width: 100%;
    background-color: #EEEEEE;
    box-sizing: border-box;
    padding: 20px 10px;
    border-radius: 5px;
    font-size: 1.4rem;
    box-shadow: 0 14px 20px rgb(56 60 71 / 20%);
    color: #3d3d3d;
    line-height: 3rem;
}
.frtl {
    font-size: 1.5rem;
    color: #e54c2a;
    color: #222;
}

.frtl-tx {
    margin: 15px 0;
}
.frtl-tx span {
    font-weight: 700;
    color: #222;
}

