html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, nav, output, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1;
    font-size: 14px;
    background-color: #000000;
    color: #797979;
    direction: rtl;
    position: relative;
}

.header {
    width: 100%;
    display: flex;
    background-color: #901710;
    padding: 15px 10px;
    align-items: center;
    justify-content: center;
}

.header-menu {
    float: right;
    width: 20%;
    max-width: 210px;
}

.header-menu i {
    font-size: 46px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.header-menu i:hover {
    color: #bdb5b5;
}

.header-logo {
    float: right;
    width: 60%;
}

.header-w {
    float: right;
    width: 20%;
    max-width: 210px;
}

.show-mobile {
    display: none;
}

img {
    max-width: 100%;
    outline: 0;
}

.info {
    background-color: #1f311b;
    color: #fff;
    padding: 20px 67px;
    text-align: justify;
}

.info p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.info-more {
}

.info-more-button {
    display: none;
}

.box-all {
    width: 100%;
    margin: 0 auto;
    max-width: 770px;
    position: relative;
    text-align: center;
}

.main-nav {
    position: absolute;
    width: 100%;
    background-color: #7c0e08;
    padding: 10px;
    z-index: 999;
    max-width: 770px;
    display: none;
}

.main-nav.active {
    display: block;
}

.main-nav ul li {
    font-size: 20px;
    display: block;
    padding: 10px 0;
}

.main-nav ul li a {
    color: #fff;
}

.list-box {
    display: inline-block;
    background-color: #ece1c5;
    width: 100%;
    color: #901811;
    background-image: url('./img/list-bc.png');
    background-size: cover;
}

.list-box-title {
    margin: 50px 0 30px 0;
}

.list-box-title h2 {
    display: initial;
    background-color: #ffdb3b;
    padding: 7px 30px;
    font-weight: bold;
    font-size: 21px;
    border-radius: 15px;
}

.lb-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    flex-wrap: wrap;
    line-height: 1.4;
    padding: 0 15px;
}

.lb-line a {
    color: #901811!important;
}

.lb-line b, .lb-line span {
    display: block;
}

.lb-line b {
    font-weight: bold ;
}

.kashrut-info {
    background-color: #e9d9b9;
    padding: 20px 40px;
    color: #000!important;
    text-align: right;
    font-size: 16px;
    line-height: 1.3;
}

.kashrut-info p, .kashrut-info li {
    margin-bottom: 20px;
}

.kashrut-info li > ol {
    padding-top: 20px;
    padding-right: 30px;
}

.kashrut-info h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 13px;
    font-size: 20px;
}

#cover {
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #181c20f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@media screen and (max-width: 2755px) {

}

    .info-more {
        display: none;
    }

    .info-more-button {
        display: block;
        font-size: 18px;
        text-align: center;
        background-color: #ffdb3bc7;
        padding: 10px;
        border-radius: 5px;
        margin: 5px;
        cursor: pointer;
    }