.home .bannerMian{
    width: 100%;
    height: calc(100vh - 100px);
    color: white;
    background-color: #1F1F1F;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
}

.home .bannerMian img.bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

.home .bannerMian img.bgMobile{
    width: 100%;
    height: 100%;
    display: none;
}

.home .bannerMian .content{
    position: relative;
    z-index: 15;
    max-width: 70%;
    margin: 0 auto;
}

.home .bannerMian .content .logo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.home .bannerMian .content .logo .img{
    max-width: 80px;
}

.home .bannerMian .content .logo .img img{
    width: 100%;
}

.home .bannerMian .content .logo h1{
    font-size: 28pt;
    text-transform: uppercase;
}

.home .bannerMian .content .logo span{
    color: var(--primary-color);
}


.home .bannerMian .content .desc{
    max-width: 40%;
    margin: 15px 0px;
    font-size: 16pt;
}

.home .bannerMian .content a{
    border: 4px solid white;
    border-radius: 99px;
    margin-top: 25px;
    font-size: 14pt;
    padding: 10px 20px;
    display: block;
    width: fit-content;
    text-decoration: none;
    color: white;
    background-color: transparent;
    transition: 0.3s;
}

.home .bannerMian .content a:hover{
    background-color: white;
    color: #1F1F1F;
}

@media screen and (max-width:1000px) {
    .home .bannerMian img.bg{
        display: none;
    }

    .home .bannerMian img.bgMobile{
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        z-index: 10;
    }

    .home .bannerMian{
        flex-direction: column;
    }

    .home .bannerMian .content{
        max-width: 90%;
    }

    .home .bannerMian .content .logo{
        margin: 0 auto;
        justify-content: center;
    }

    .home .bannerMian .content .logo h1{
        font-size: 24pt;
    }

    .home .bannerMian .content .logo .img{
        max-width: 50px;
    }

    .home .bannerMian .content .desc{
        text-align: center;
        max-width: 100%;
        font-size: 18px;
    }

    .home .bannerMian .content a{
        margin-left: auto;
        margin-right: auto;
    }
}


@media screen and (max-width:420px) {
    .home .bannerMian .content .logo h1{
        font-size: 6vw;
    }
}


.home .weeklyMenuBanner{
    width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    max-width: 70%;
    margin: 0 auto;
    margin-top: 80px;
}

.home .weeklyMenuBanner .content{
    width: fit-content;
}

.home .weeklyMenuBanner h2{
    font-size: 28pt;
    text-transform: uppercase;
}

.home .weeklyMenuBanner .duration{
    font-size: 20pt;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

.home .weeklyMenuBanner .desc{
    font-size: 14pt;
    max-width: 80%;
}

.home .weeklyMenuBanner .content .img{
    max-width: 500px;
    margin-top: 50px;
}

.home .weeklyMenuBanner .content .img .red{
    width: 140px;
    height: 140px;
    background-color: red;
}

.home .weeklyMenuBanner .content .img img{
    width: 100%;
}

.home .weeklyMenuBanner .menuPhoto{
    max-width: 100%;
}

.home .weeklyMenuBanner .menuPhoto img{
    width: 100%;
}

@media screen and (max-width:1400px) {
    .home .weeklyMenuBanner{
        max-width: 100%;
        padding: 0px 10px;
    }
}

@media screen and (max-width:850px) {
    .home .weeklyMenuBanner{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;

    }

    .home .weeklyMenuBanner .menuPhoto{
        max-width: 90%;
    }

    .home .weeklyMenuBanner .menuPhoto img{
        width: 100%;
    }
}

.home .weeklyMenu{
    margin-top: 80px;
}

.weeklyMenu{
    background-color: #f3f3f3;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.weeklyMenu .cont{
    width: 70%;
}

.weeklyMenu .cont .head{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.weeklyMenu .cont .head .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weeklyMenu .cont .head h2{
    font-size: 28pt;
    text-transform: uppercase;
}

.weeklyMenu .cont .head .duration{
    font-size: 20pt;
    text-transform: uppercase;
}


.weeklyMenu .cont .head .desc{
    font-size: 14pt;
    margin-top: 5px;
}

.weeklyMenu .cont .head .deliveryWrapp{
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.weeklyMenu .cont .head .deliveryWrapp .deliveryTitle{
    display: flex;
    gap: 10px;
}

.weeklyMenu .cont .head .deliveryWrapp .deliveryTitle h3{
    font-size: 16pt;
}

.weeklyMenu .cont .head .deliveryWrapp p:first-of-type{
    margin-top: 15px;
}

.weeklyMenu .cont .head .deliveryWrapp p{
    color: #717275;
    font-size: 12pt;
}

.weeklyMenu .cont .head .deliveryWrapp svg{
    min-width: 25px;
}

.weeklyMenu .cont .products,
.menuWrapp .categories .category .products{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.weeklyMenu .cont .products .product,
.menuWrapp .categories .category .products .product{
    width: 100%;
    max-width: 320px;
    position: relative;
    height: 100%;
    margin-top: 5rem;
}

.weeklyMenu .cont .products .product .soldOutLine{
    width: 100%;
    background-color: red;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-align: center;
    rotate: 355deg;
    padding: 10px;
    z-index: 15;
}

.weeklyMenu .cont .products .product .content,
.menuWrapp .categories .category .products .product .content{
    background-color: #1F1F1F;
    padding: 5rem 1rem 1rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
}

.weeklyMenu .cont .products .product .imgWrapp,
.menuWrapp .categories .category .products .product .imgWrapp{
    position: relative;
    margin-bottom: 10px;
}

.weeklyMenu .cont .products .product .img,
.menuWrapp .categories .category .products .product .img{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    left: 50%;
    position: absolute;
    top: -5rem;
    transform: translateX(-50%);
}

.menuWrapp .categories .category .products .product .content{
    background-color: #f3f3f3;
    color: #1F1F1F;
}

.weeklyMenu .cont .products .product .img,
.menuWrapp .categories .category .products .product .img .red{
    width: 140px;
    height: 140px;
    background-color: red;
}

.weeklyMenu .cont .products .product img,
.menuWrapp .categories .category .products .product img{
    width: auto;
    background-color: white;
    scale: 1.05;
    height: 100%;
    object-fit: cover;
}

.weeklyMenu .cont .products .product .content .main h3,
.menuWrapp .categories .category .products .product .content .main h3{
    font-weight: 400;
}

.weeklyMenu .cont .products .product .content .main p,
.menuWrapp .categories .category .products .product .content .main p{
    margin-top: 10px;
    opacity: 50%;
}

.weeklyMenu .cont .products .product .content .price,
.menuWrapp .categories .category .products .product .content .price{
    font-weight: 500;
    font-size: 14pt;
}

@media screen and (max-width:1500px) {
    .weeklyMenu .cont{
        width: 90%;
    }
}

@media screen and (max-width:1250px) {
    .weeklyMenu .cont{
        width: 99%;
    }
}

@media screen and (max-width:850px) {
    .weeklyMenu .cont .head{
        flex-direction: column;
    }
}

@media screen and (max-width:600px) {
    .weeklyMenu .cont .head{
        flex-direction: column;
    }
}

.home .contact{
    padding: 50px 20px;
    width: 100%;
    background-image: url('/assets/img/wood-bg.png');
    background-position: cover;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .contact .contactCard{
    min-height: 523px;
    background-color: #f3f3f3;
    max-width: 50%;
    width: 100%;
    border-radius: 12px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.home .contact .contactCard .maps{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.home .contact .contactCard .maps iframe{
    width: 100%;
    height: 100%;
}

.home .contact .contactCard .info h2{
    font-size: 24pt;
}

.home .contact .contactCard .info .openHoursWrapp{
    margin: 25px 0px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
}

.home .contact .contactCard .info .openHoursWrapp .title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18pt;
    margin-bottom: 15px;
}

.home .contact .contactCard .info .openHoursWrapp .hours{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--primary-color);
}

.home .contact .contactCard .info .openHoursWrapp .hours .hour{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14pt;
}

.home .contact .contactCard .info .socials{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home .contact .contactCard .info .socials .social{
    display: flex;
    align-items: center;
    gap: 15px;
}

.home .contact .contactCard .info .socials .social .img{
    background-color: var(--primary-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home .contact .contactCard .info .socials .social .img svg{
    width: 25px;
    height: 25px;
}

@media screen and (max-width:1600px) {
    .home .contact .contactCard{
        max-width: 70%;
    }
}

@media screen and (max-width:1200px) {
    .home .contact .contactCard{
        max-width: 85%;
    }
}

@media screen and (max-width:1000px) {
    .home .contact .contactCard{
        display: flex;
        flex-direction: column-reverse;
        gap: 15px;
    }

    .home .contact .contactCard .maps{
        min-height: 250px;
    }

    .home .contact .contactCard .maps iframe{
        height: 100%;
        min-height: 250px;
    }
}

@media screen and (max-width:950px) {
    .home .contact .contactCard{
        max-width: 90%;
    }
}


.menuWrapp{
/*     display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 15px;
    margin: 50px 0px;
}

.menuWrapp .filterleftWrapp{
    height: calc(100dvh - 150px);
    position: sticky;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menuWrapp .filterleftWrapp .fitlerLeft{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.menuWrapp .filterleftWrapp .fitlerLeft p{
    padding: 10px;
    border-radius: 8px;
    background-color: #ffffff00;
    transition: 0.4s;
    cursor: pointer;
}

.menuWrapp .filterleftWrapp .fitlerLeft p.active{
    background-color: var(--primary-color);
    color: white;
}

@media screen and (max-width:650px) {
    .menuWrapp{
        display: flex;
        flex-direction: column;
    }

    .menuWrapp .filterleftWrapp{
        position: relative;
        top: 0px;
        height: fit-content;
    }

    .menuWrapp .filterleftWrapp .fitlerLeft{
        flex-direction: unset;
        align-items: center;
        flex-wrap: wrap;
        max-width: 95%;
        margin: 0 auto;
    }
}

.menuWrapp .categories{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.menuWrapp .categories .category{
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}

.menuWrapp .categories .category .head{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 13px;
    padding: 2.25rem 0px;

    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.menuWrapp .categories .category .head img{
    width: 100%;
    height: auto;
}

.menuWrapp .categories .category .head h2{
    color: white;
    text-align: center;
/*     z-index: 15;
    position: absolute;
    left: 50%;
    top: 50%;
        transform: translate(-50%, -50%);
    */
    font-size: 2.5rem;
}

@media screen and (max-width:700px) {
    .menuWrapp .categories .category .head h2{
        font-size: 2.5rem;
    }
}

.menuWrapp .categories .category .products{

}