{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto; /* Disables elastic scrolling */
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
}

:root {
    --orange: rgb(218, 165, 29);
}

@font-face {
    font-family: vazir;
    font-weight: normal;
    font-style: normal;
    src: url('../fonts//Vazir-Regular.eot') format('eot'), url('../fonts/Vazir-Regular.woff') format('woff'), url('../fonts/Vazir-Regular.woff2') format('woff2'), url('../fonts/Vazir-Regular.ttf') format('truetype')
}

@font-face {
    font-family: vazir;
    src: url("../fonts/Vazirmatn-Regular.woff2");
}

a, h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
}

input, button {
    outline: none;
    font-family: vazir;
}

body {
    font-family: vazir;
    direction: rtl;
    text-align: right;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    padding: 0;
    margin: 0;
}

.background {
    background: url("../images/mobb1 - Copy.jpg");
    background-size: 100vw 80vh;
    max-height: 100vh;
    max-height: -webkit-fill-available;
    overflow: hidden;
}

.layer {
    width: 100vw;
    height: 100vh;
    background: var(--orange);
    background: linear-gradient(0deg, rgba(218,165,29,1) 0%, rgba(220,174,57,1) 22%, rgba(232,228,228,0.165703781512605) 100%);
    display: flex;
    justify-content: end;
    align-Items: start;
}

.navbar {
    position: fixed;
    bottom: 1rem;
    z-index: 9999;
    width: 90vw;
    height: 3rem;
    left: 5vw;
    background: white;
    border-radius: 50px;
    transition: all 500ms ease;
    box-shadow: 1px 1px 5px 2px #ccc;
}

    .navbar .list {
        width: 100%;
        height: 100%;
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

        .navbar .list a {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-Items: center;
            justify-content: center;
            position: relative;
            color: black;
            overflow: hidden;
            font-size: 15px;
            -webkit-tap-highlight-color: transparent;
        }

            .navbar .list a i {
                border-radius: 50%;
                width: 40px;
                height: 40px;
                display: flex;
                justify-content: center;
                align-Items: center;
            }

            .navbar .list a.active i {
                color: white;
                background: var(--orange)
            }

.container {
    width: 90vw;
    height: auto;
    margin-inline: auto;
    margin-block: 1rem 4rem;
    background: #E9D0B4;
    padding: 1rem;
}

.menu-list {
    height: fit-content;
    width: 100%;
}

.list-header {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-Items: center;
    margin-bottom: 1rem;
}

.rec {
    display: block;
    width: 35px;
    height: 20px;
    background-color: black;
}

.menu-Item {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-Items: center;
    margin-bottom: .5rem;
}

    .menu-Item div i {
        display: block;
        color: #3f3f3f;
    }

    .menu-Item span {
        direction: ltr;
    }

@media screen and (min-width: 480px) {
    .background {
        background-size: auto 80vh;
        background-repeat: repeat-x;
    }
}

.easter-1 {
    position: absolute;
    top: 68%;
    left: 0;
    width: 50px;
    height: 50px;
}

.easter-2 {
    position: absolute;
    top: 33%;
    left: 60%;
    width: 50px;
    height: 50px;
}