/* css reset */
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, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
ol, ul {
	list-style: none;
}
/* general styles */

/* colors */
:root{
    --black: #000;
    --dark : #353535;
    --white: #fff;
    --blue: #3c6e71;
    --darkblue: #284b63;
    --gray: #d9d9d9;
}
.dark-color{
    color: var(--dark);
}
.blue-color{
    color: var(--blue);
}
/* width & height */
.w-10{
    width: 10%;
}
.w-20{
    width: 20%;
}
.w-30{
    width: 30%;
}
.w-33{
    width: 33.3333%;
}
.w-40{
    width: 40%;
}
.w-50{
    width: 50%;
}
.w-60{
    width: 60%;
}
.w-70{
    width: 70%;
}
.w-80{
    width: 80%;
}
.w-90{
    width: 90%;
}
.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}

/* flex display */
.d-flex{
    display: flex;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.align-center{
    align-items: center;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-fill{
    flex-grow: 1;
}
.flex-column{
    flex-direction: column;
}

/* none display */
.d-none{
    display: none;
}

/* font */
.font-22{
    font-size: 22px;
}
.font-30{
    font-size: 30px;
}
.font-40{
    font-size: 40px;
}
.en-font{
    font-family: 'brush';
}
.en-font2{
    font-family: 'Winter Wunsch';
}

/* over flows */
.over-hidden{
    overflow: hidden;
}
.over-scroll{
    overflow: scroll;
}
.over-x-hidden{
    overflow-x: hidden;
}
.over-x-scroll{
    overflow-x: scroll;
}
.over-y-hidden{
    overflow-y: hidden;
}
.over-y-scroll{
    overflow-y: scroll;
}


/* margin */
.mt-2{
    margin-top: 2rem;
}
.mt-3{
    margin-top: 3rem;
}
.ml-08{
    margin-left: 0.8rem !important;
}
.ml-3{
    margin-left: 3rem;
}
.ml-05{
    margin-left: 0.5rem;
}
.mb-2{
    margin-bottom: 2rem;
  }
.mx-3{
    margin-left: 3rem;
    margin-right: 3rem;
}  

/* padding */
.px-07{
    padding-right: 0.7;
    padding-left: 0.7;
}

/* general styles*/
.vertical-line{
    width: 0.1vw;
    height:1.5rem;
    background-color: var(--white);
    margin: 0 1.7rem;
}
.vertical-line2{
    width: 1px;
    height:2.5rem;
    background-color: var(--white);
    margin: 0 3rem;
}
.general-titles{
    display: flex;
    justify-content: center;
    font-size: 70px;
}
.general-titles span{
    font-family: 'Winter Wunsch';
    border-bottom: 1px solid var(--white);
    padding-bottom: 8px;
}
/* html &  body */
*{
    font-family: 'vazir';
    box-sizing: border-box;
}
@font-face {
    font-family: 'vazir';
    src: url('../fonts/Vazir-Regular.ttf') format('truetype');
    src: url('../fonts/Vazir-Regular-FD.ttf') format('truetype');
    src: url('../fonts/Vazir-Regular.eot') format('embedded-opentype'),
    url('../fonts/Vazir-Regular-FD.eot') format('embedded-opentype'),
    url('../fonts/Vazir-Regular-FD.woff2') format('woff2'),
    url('../fonts/Vazir-Regular.woff2') format('woff2'),
    url('../fonts/Vazir-Regular-FD.woff') format('woff'),
    url('../fonts/Vazir-Regular.woff') format('woff');
}
@font-face {
    font-family: 'brush';
    src: url('../fonts/BRUSHSCI.TTF') format('truetype');
}
html , body{
    width: 100%;
    scroll-behavior: smooth;
    color: var(--white);
}
body{
    overflow-x: hidden;
    height: max-content;
}
a{
    text-decoration: none;
}




.index-container{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url('../images/IMG_8527.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-position-x: center;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
}
.index-container::after{
    position: absolute;
    content: '';
    right: 0;
    left: 13rem;
    top: 0;
    bottom: 0;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.8071603641456583) 17%);
    z-index: 1;
}
.index-container-info{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.index-container-main-logo{
    display: none;
}
.index-container-info-text-wrapper{
	width: 100%;
	display: flex;
    flex-direction: column;
	align-items: center;
	mix-blend-mode: screen;
    height: 300px;
}
.index-container-info-text-wrapper h3 {
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    transform: skew(-13deg, 0deg);
    font-size: 100px;
    line-height: 1;
    color: #ff2b2b;
}
.index-container-info-text-wrapper h3:nth-child(2){
    transform: translate(-.4em, -.45em);
    color: var(--white);
}
.index-container-info-text-wrapper h3:nth-child(3){
    transform: translate(.6em, -0.9em);
    color: #ff2b2b;
}
.index-container-info-text-wrapper h3:nth-child(4){
    transform: translate(0, -1.3em);

    color: var(--white);
}
.index-container-info-btns{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}	
.index-container-info-btn{
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #ff2b2b;
    color: var(--white);
    border-radius: 0.5rem;
    animation: shockwaveJump 1s .5s ease-out infinite;
    position: relative;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.index-container-info-btn2{
    background-color: var(--white) !important;
    color: #ff2b2b !important;
    margin-right: 6rem;
}
  .index-container-info-btn::before{
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    animation: shockwave 1s .5s ease-out infinite;
  }
  @keyframes shockwave {
    0% {
      transform: scale(1);
      box-shadow: 0 0 2px rgba(250,250,250,0.5), inset 0 0 1px rgba(250,250,250,0.5);
    }
    95% {
      box-shadow: 0 0 30px rgba(250,250,250,0), inset 0 0 30px rgba(250,250,250,0);
    }
    100% {
      transform: scale(1.3);
  
    }
  }
  .index-container-location , .index-container-phone{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 3rem;
    font-size: 22px;
  }
  .index-container-location img , .index-container-phone img{
    margin-left: 2rem;
  }
  .index-container-phone a{
    color: var(--white);
  }
.index-container-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 3rem;
    top: 5%;
    bottom: 5%;
}
.index-container-logo{
    width: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.index-container-logo img{
    width: 100%;
}
.index-container-video{
    border-radius: 3rem;
    overflow: hidden;
    z-index: 2;
    height: 19rem;
    width: 23rem;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.index-container-video video{
    height: 100%;
}
.index-container-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index-container-text span{
    font-size: 60px;
    font-family: 'winter wunsch';
    color: var(--white);
    font-weight: bold;
}
/* new menu */
.all-menu-container{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url('..//images/canela-menu-bg.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.all-menu-content{
    width: 90%;
    height: 100%;
    background-color: #000000a6;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    position: relative;
    scroll-behavior: smooth;
}
.all-menu-content-change{
    width: 100%;
    height: 100%;
    flex-direction:column;
}
.menu-card-container{
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.menu-card-col{
    width: 24%;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7rem;
}
.menu-card{
    width: 100%;
    height: 30rem;
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.menu-card-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding: 0.6rem;
}
.menu-card-item img{
    position:absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    width: 100%;
    height:100% !important;
    border-radius: 1.5rem;
    border: 3px solid #fff;
    opacity:0.9;
    object-fit:cover !important;
}
.menu-img-over-text{
   width:100%;
    padding: 0.8rem 0.6rem;
    border-radius: 1rem;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: #000000b9;
    z-index:3;
}
.menu-img-over-text span{
    font-size: 20px;
}
.menu-card-item-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius:1rem;
    background-color: #000000b9;
    padding: 0.8rem 0;
    z-index:3;
}
.menu-card-item-content div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
    color: var(--white);
    padding: 0 1rem;
}
.menu-card-item-content div:last-child{
    margin-bottom: 0;
}
.menu-card-item-content div span.single-price{
    width:100% !important;
    font-size:24px !important;
    text-align:center !important;
}
.menu-card-item-content div span:first-child{
    width: 57%;
    text-align: right;
}
.menu-card-item-content div span:last-child{
    width: 40%;
    text-align: left;
    word-spacing: 0.2rem;
}
.all-menu-side{
    width: 10%;
    background-color: #000;
    opacity:0.85;
    height: 100%;
    overflow-y: scroll;
    box-shadow: rgba(45, 97, 119, 0.12) 0px 2px 4px 0px, rgba(45, 97, 119, 0.32) 0px 2px 16px 0px;
    position: relative;
    padding: 2rem 6px;
}
.all-menu-side-back{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:3rem;
    background:red;
    margin:0 10% 3rem 10%;
    padding:0.7rem;
    border-radius:0.5rem;
    color: var(--white);
}
.all-menu-side-back img{
    padding-right:5px;
}
.all-menu-side-item{
    width: 100%;
    padding: 0.3rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    cursor:pointer;
}
.all-menu-side-item:hover{
    transform:scale(1.02);
}
.all-menu-side-item-img{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-bottom: 0.9rem;
    padding:0.6rem;
    display:flex;
    justify-content:center;
    align-items:center;
}
.all-menu-side-item img{
    width:100%;
    height:100%;
}

.all-menu-content::-webkit-scrollbar , .all-menu-side::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .all-menu-content ,  .all-menu-side{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }








  
  @media screen and (max-width:1700px){
    .menu-card-container{
        justify-content: space-around;
    }
    .menu-card-col{
        width: 40%;
        margin-bottom: 4rem;
    }
    .all-menu-content{
        width: 85%;
    }
    .all-menu-side{
        width: 15%;
    }
}
@media screen and (max-width:1400px){
    .menu-card-col{
        width: 46%;
    }
    .index-container-left{
        display: none;
    }
    .index-container-info{
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 95%;
        padding: 0 2rem;
    }
    .index-container-info-text-wrapper h3{
        font-size: 70px;
    }
    .index-container-main-logo{
        display: flex;
    }
    .index-container-info-text-wrapper{
        height: 200px;
    }
    .index-container-location , .index-container-phone{
        margin-top: 0;
    }
}
@media screen and (max-width:1300px){
    .menu-card-col{
        width: 50%;
        padding: 0 1.5rem;
    }
    .all-menu-content{
        width: 80%;
    }
    .all-menu-side{
        width: 20%;
    }
}
@media screen and (max-width:1050px){
    .menu-card-container{
        justify-content: center;
    }
    .menu-card-col{
        width: 55%;
        padding: 0 1.5rem;
    }
}
@media screen and (max-width:950px){
    .menu-card-col{
        width: 65%;
        padding: 0 1.5rem;
    }
    .index-container-info-text-wrapper h3{
        font-size: 60px;
    }
    .index-container-info-text-wrapper{
        height: 150px;
    }
    
}
@media screen and (max-width:800px){
    .canela-menu-img{
        display: none;
    }
    .canela-menu-container{
        padding: 3rem 0.3rem;
    }
    .canela-menu-content{
        padding: 0 3% 10% 3%;
    }
    .menu-card-col{
        width: 90%;
        padding: 0 1.5rem;
    }
    .all-menu-content{
        width: 75%;
    }
    .all-menu-side{
        width: 25%;
    }
}
@media screen and (max-width:700px){
    .menu-card-col{
        width: 96%;
    }
    .index-container-info-btns{
        flex-direction: column;
    }
    .index-container-info-btn{
        width: 80%;
        margin-right: 0;
    }
    .index-container-main-logo{
        margin-bottom: 4rem;
    }
    .index-container-info-text-wrapper{
        height: 200px;
    }
    .index-container-main-logo , .index-container-main-logo a{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .index-container-main-logo img{
        width: 60%;
    }
    .index-container-location{
        margin-top: 4rem;
        justify-content: start;
        width: 100%;
    }
    .index-container-phone{
        margin-top: 2.6rem;
        justify-content: start;
        width: 100%;
    }
    .index-container{
        height: auto;
        overflow-y: scroll;
        padding: 3rem 0;
    }
    .index-container::after{
        left: 0;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.8071603641456583) 0);
    }
}
@media screen and (max-width:600px){
    .menu-card-container{
        margin-top:3.5rem;
    }
    .canela-menu-title .en{
        font-size: 33px;
    }
    .canela-menu-title{

        font-size: 30px;
    }
    .menu-card-col{
        width: 85%;
        padding: 0;
        margin-bottom: 4rem;
    }
    .menu-card{
        height: 26rem;
    }
    .all-menu-content{
        width: 77%;
        padding: 0.5rem;
    }
    .all-menu-side{
        width: 23%;
    }
    .all-menu-side-item{
        padding: 0;
        font-size: 14px;
    }
    .all-menu-side-item img{
        width: 3rem;
        height: 3rem;
        }
    .index-container-info-text-wrapper h3{
        font-size: 50px;
    }
    .index-container-main-logo img{
        width: 70%;
    }
    .index-container-info-btn{
        font-size: 19px;
    }
}
@media screen and (max-width:430px){
    .all-menu-content-logo{
        width:200px;
    }
    .canela-menu-info-inner div p{
    font-size:20px;
}
.canela-menu-info-inner span{
    font-size:20px;
}
.canela-menu-info-inner div span{
    font-size:14px;
}
.menu-card-col{
    width: 93%;
}   
.index-container-main-logo{
    margin-bottom: 4rem;
}
.index-container-main-logo img{
    width: 80%;
}
.index-container-info-btn{
    font-size: 18px;
}
.index-container-location , .index-container-phone{
    flex-direction: column;
    text-align: center;
}
.index-container-location img , .index-container-phone img{
    margin: 0 0 1.3rem 0;
}
.menu-card-item-content span{
    font-size:14px;
}
.all-menu-side-item-img{
    width:3.5rem;
    height:3.5rem;
    margin-bottom:0.7rem;
}
.all-menu-side-item-img img{
    width:2rem;
    height:2rem;
}
.all-menu-side-back{
    margin:0 5% 3rem 5%;
    padding:0.5rem;
    font-size:13px;
}
}
@media screen and (max-width:400px){
    .canela-menu-title .en{
        font-size: 25px;
    }
    .canela-menu-title{

        font-size: 22px;
    }
    .index-container-info-btn{
        font-size: 17px;
    }
    .index-container-info-btn2{
        margin-top: 1rem;
    }
}
@media screen and (max-width:370px){
    .canela-menu-info-inner div p{
    font-size:17px;
}
.canela-menu-info-inner span{
    font-size:17px;
}
.canela-menu-info-inner div span{
    font-size:13px;
}
.index-container-info-btn{
    font-size: 16px;
    width: 100%;
}
.all-menu-side-back{
    padding:0.3rem;
    font-size:12px;
}
}
@media screen and (max-width:300px){
    .canela-menu-title .en{
        font-size: 20px;
    }
    .canela-menu-title{

        font-size: 17px;
    }
   
}