/* fonts  */
/* @font-face {
    font-family:"Raleway-regular";
    src:url(../fonts/Raleway-Regular.ttf)
}
@font-face {
    font-family:"Raleway-medium";
    src:url(../fonts/Raleway-Medium.ttf)
}
@font-face {
    font-family:"Raleway-bold";
    src:url(../fonts/Raleway-Bold.ttf)
}
@font-face {
    font-family:"Raleway-extrabold";
    src:url(../fonts/Raleway-ExtraBold.ttf)
}
@font-face {
    font-family:"Raleway-semibold";
    src:url(../fonts/Raleway-SemiBold.ttf)
}
@font-face {
    font-family:"Raleway-black";
    src:url(../fonts/Raleway-Black.ttf)
} */

.nav-top{
    scroll-behavior: smooth;
}

html{
    scroll-behavior: smooth;
}

/* colors  */

:root {
    --primary:#EEBF00;
    --secondary:rgb(45, 45, 45);
    --ternary:#6C6C6C;
    --danger:#FE4545;
    --pure:#FEFEFE;
    --light:#F0F0F0;
    --heaven:#FFFFFF;
    --footer:#2D333F;
}

/* Reset  */
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

section{
    overflow: auto;
}

body{
    -webkit-font-smoothing: antialiased;
    font-family: "Hiragino Sans", "メイリオ, Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* h1 {
    font-family: "Hiragino Kaku Gothic ProN" ;
} */

/*********** Boton Flotante Start **********/
#btn-mas{
    display: none;
}
.container-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
}

.redes a, .btn-mas label{
    display: block;
    text-decoration: none;
    background: #cc2b2b;
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
    transition: all 500ms ease;
}
.redes a:hover{
    background: #fff;
    color: #cc2b2b;
}
.redes a{
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}
#btn-mas:checked~ .redes a{
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
    font-size: 22px;
}
.btn-mas label{
    cursor: pointer;
    background: #f44141;
    font-size: 23px;
}
#btn-mas:checked ~ .btn-mas label{
    transform: rotate(135deg);
    font-size: 25px;
}
/*********** Boton Flotante Finish **********/


.container {
    width:100%;
    padding: 15px;
    margin:0 auto;
}

@media (min-width:576px){
    .container{
        max-width:540px;
    }
}
@media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  
@media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
}


.main-wrapper{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.nav-background{
    width:100%;
    height:100%;
    background:var(--light);
    position: absolute;
    top:0;
    left:0;
    padding:0;
    z-index:1;
}

.nav-trigger{
    position: absolute;
    top:0;
    left:0;
    z-index:1;
    padding:15px;
    display:none;
   color: #FDB83E;
   
}

.nav-trigger svg{
    transform:rotate(90deg) scaleX(-1);
    -webkit-transform:rotate(90deg) scaleX(-1);
    -moz-transform:rotate(90deg) scaleX(-1);
    -ms-transform:rotate(90deg) scaleX(-1);
    -o-transform:rotate(90deg) scaleX(-1);
    width:40px;
    height:40px;
}

.site-content-wrapper{
    width:100%;
    height:100%;
    position:absolute;
    background:var(--heaven);
    z-index:2;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
}

.site-content-wrapper.scaled{
    transform:scale(0.9) translateX(60%);
    -webkit-transform:scale(0.9) translateX(60%);
    -moz-transform:scale(0.9) translateX(60%);
    -ms-transform:scale(0.9) translateX(60%);
    -o-transform:scale(0.9) translateX(60%);
    border-radius:3px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    -ms-border-radius:3px;
    -o-border-radius:3px;
    box-shadow:0 3px 10px 0 var(--secondary);
}

.site-content{
    width:100%;
    height:100%;
    overflow-x: auto;
}


header.topbar{
    background:var(--secondary);
    color:var(--pure);
    padding: 0.75rem 0;
}

.container-topbar, .container-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.container-bar a{
    font-size: 20px;
    text-decoration: none;
    color: #E22323;
}

.branding{
    width: 30%; 
    display: flex;
    justify-content: center;
}

.branding img{
    width: 33%;   
}

.contact h5 a{
    font-size: 20px;
    text-decoration: none;
    color: #E22323; 
}

.container-topbar .icons img{
    margin-right: 0.7rem;
}

.topbar-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right a:hover{
    color:#FDB83E;
}

.topbar-right a{
    color:var(--pure);
    text-decoration: none;
    padding: 0.2rem 1rem;
}

.net-reserv{
    background-color: #FDB83E;
    border: 1px solid var(--primary);
    display: block;
    padding: 15px 0;
    border-radius: 4px;
    font-weight: bold;
}

.net-reserv:hover{
    background-color: var(--heaven);
    color: var(--primary);
}

/*********** Slider Start **********/
.slider{
    position: relative;
    background: #000116;
    width: 100%;
    /* min-height: 500px; */
    overflow: hidden;
    /* margin-top: 10px; */
  }
  
  .slider .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0 at 0 50%);
  }
  
  .slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
  }
  
  .slider .slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider .slide .info{
    position: absolute;
    color: #222;
    background: rgba(255, 255, 255, 0.5);
    width: 45%;
    margin-top: 50px;
    margin-left: 50px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
  }
  
  .slider .slide .info h1,h2{
    font-size: 2em;
    font-weight: 800;
  }

  
  .slider .slide .info p{
    font-size: 1em;
    font-weight: 400;
  }
  
  .navigation{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .slider:hover .navigation{
    opacity: 1;
  }
  
  .prev-btn, .next-btn{
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
  }
  
  .prev-btn{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  
  .next-btn{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  
  .navigation-visibility{
    z-index: 999;
    display: flex;
    justify-content: center;
  }
  
  .navigation-visibility .slide-icon{
    z-index: 999;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 5px;
    transform: translateY(-20px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }
  
  .navigation-visibility .slide-icon.active{
    background: #4285F4;
  }
  
  @media (max-width: 900px){
    .slider{
      width: 100%;
    }
  
    .slider .slide .info{
      position: relative;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (max-width: 500px){
    .slider{
        width: 100%;
        height: 300px;
      }

    .slider .slide .info h1,h2{
      font-size: 1.4rem;
      line-height: 40px;
    }
  
    .slider .slide .info p{
      font-size: 0.9rem;
    }

    section.top-products .food-slider .food-card h3{
        font-size: 0.5rem;
        margin-bottom: 0.25rem;
    }

  }

/*********** Slider Finish **********/


/*********** Info Start **********/
.box-info {
    width: 90%;
    position: relative;
    margin: auto;
    padding: 0.5em 1em;
    border: solid 2px #E22323;
    background: #e2232394;
    color: #ffffff;
}

.box-title{
/* font-family: Quicksand,sans-serif; */
position: absolute;
display: inline-block;
top: -27px;
left: -2px;
padding: 1px 9px;
height: 25px;
line-height: 25px;
vertical-align: middle;
font-size: 16px;
background: #E22323;
color: #ffffff;
font-weight: bold;
border-radius: 5px 5px 0 0;

}

/*********** Info Finish **********/


.flex{
    display:flex;
}

.justify-between{
    justify-content: space-between;
}

.items-center{
    align-items: center;
}

/* nav .top{
    padding: 0.1rem 0;
} */

nav .top .contact h5,  nav .top .time h5{
    /* font-family: "Raleway-black"; */
    margin-bottom: 0.25rem;
}

  nav .top .contact h6, nav .top .time h6{
    /* font-family:"Raleway-medium"; */
    letter-spacing: 0.055rem;
    font-size:0.75rem;
    color:var(--ternary);
}
nav .top .contact img, nav .top .time img{
    margin-right:1rem;
}

.justify-center{
    justify-content:center;
}
nav .navbar a{
    text-decoration:none;
    color:rgb(45, 45, 45);;
    /* font-family:"Raleway-bold"; */
    font-size:1.1rem;
    font-weight: 600;
    padding:1rem 1.5rem;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
}

.nav-top ul{
    color:rgb(45, 45, 45);
    font-size:1.1rem;
    font-weight: 600;
    padding:1rem 1.5rem;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
}
.nav-top a:hover{
    color:#E22323; 
}

/* nav .navbar a.active{
    background:#FDB83E;
    color:var(--pure);
} */

nav .navbar a:hover{
    color:#E22323; 
}

.magic-shadow{
    position: relative;
    background:var(--heaven);
}

.magic-shadow:after{
    content:'';
    display:block;
    width:100%;
    height:69px;
    background-image:url(../icons/shadow.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom:-22px;
    z-index:-1;
    
}
.magic-shadow-sm{
    position: relative;
    background:var(--heaven);
}
.magic-shadow-sm:after{
    content:'';
    display:block;
    width:100%;
    height:69px;
    background-image:url(../icons/shadow-sm.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    z-index:-1;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%);
}
header.hero{
    height:600px;
    background-image:url(../images/hero.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    overflow:hidden;
}

header.hero .container{
    position: relative;
}

header.hero .welcome{
    margin-bottom:0.25rem;
}

header.hero .welcome span{
    /* font-family:"Raleway-bold"; */
    color:var(--secondary);
    margin-right:0.75rem;
}

header.hero h1{
    /* font-family:"Raleway-extrabold"; */
    color:var(--secondary);
    font-size: 2.5rem;
    margin-bottom:0.75rem;
}

header.hero h1 span{
    color:var(--primary);
}

header.hero p{
    /* font-family: "Raleway-medium"; */
    width:50%;
    line-height:1.5;
    margin-bottom:1rem;
}

.btn{
    padding:0.75rem 0.75rem;
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    line-height:0.8;
    font-size:1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border:1px solid transparent;
}

.btn-primary {
    background:var(--primary);
    color:var(--heaven);
}

.btn-primary:hover{
    background:var(--heaven);
    color:var(--primary); 
    border:1px solid var(--primary);
}

.btn-secondary{
    background:var(--secondary);
    color:var(--heaven); 
    /* font-family: "Raleway-medium"; */
}

.btn-secondary:hover{
    background:var(--heaven);
    color:var(--secondary); 
    border:1px solid var(--secondary);
}

header.hero button:first-child{
    margin-right:0.50rem;
}

header.hero .hero-image{
    position:absolute;
    top:-40px;
    right:40px;
}

section{
    padding: 4rem 0;
}


/***** Menu start ******/
section.top-products{
    background:var(--light);
}

.section-heading{
    /* font-family:"Raleway-bold"; */
    text-align:center;
    Position:relative;
    margin-bottom: 6rem;
}
.section-heading:after{
    content:'';
    display:block;
    width: 100%;
    height:30px;
    background-image:url(../icons/hr.svg);
    background-repeat: no-repeat;
    background-position: center;
    position:absolute;
    bottom:-40px;
}
section.top-products .food-slider .food-card{
    background:var(--heaven);
    /* padding:1.5rem 0; */
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
section.top-products .food-slider .food-card .product-image img{
    width:100%;
    /* height:200px;
    object-fit:contain;
    padding-bottom:0.5rem; */
}
/* hr{
    border:1px solid var(--light);
    opacity: 0.8;
    margin:1rem 0;
} */

section.top-products .food-slider .food-card h3{
    /* font-family:"Raleway-bold"; */
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: rgb(45, 45, 45);
}

.text-center{
    text-align: center;
    font-size: 1.3rem;
    margin:0.5rem 0;
}

.text-cente a{
    text-decoration: none;
}

section.top-products .food-slider .food-card .stars{
    margin-bottom: 0.5rem;
}

section.top-products .food-slider .food-card .stars img{
    margin-right:0.25rem;
}

section.top-products .food-slider .food-card .price{
    color:rgb(45, 45, 45);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: left;
    font-family: "Hiragino Sans", "メイリオ, Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.price span{
    font-size: 1.3rem;
    margin: 0 4px 0 15px;
}



section.top-products .food-slider .food-card button{
    /* font-family:"Raleway-medium"; */
    color:var(--secondary);
    background:var(--heaven);
    border:2px solid var(--primary);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display:flex;
    align-items: center;
    width:50%;
    font-size:1rem;
    cursor: pointer;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
}

section.top-products .food-slider .food-card button:hover{
    background:var(--primary);
    color:var(--heaven);
}
/* .food-slider .food-card button img{
    background:var(--primary);
    padding:0.50rem;
    height:32px;
    margin-right:1.2rem;
} */

.slick-slide{
    margin:0 5px;
}
.slick-list{
    margin:0 -5px;
}
.top-products .slider-btn{
    width: 30px;
    height:30px;
    border: none;
    background:var(--primary);
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -ms-border-radius:4px;
    -o-border-radius:4px;
    cursor:pointer;
    outline:none;
}

.m-prev-btn{
    position:absolute;
    top:46%;
    left:-3rem;
    z-index: 1;
}
.m-next-btn{
    position:absolute;
    top:46%;
    right:-3rem;
    z-index: 1;
}
.top-products .menu-slider{
    position: relative;
}

.top-products .btn-wrapper{
    margin-top: 3rem;
}

.slick-track{
    padding:1rem 0;
}

section.about-us img{
    width:85%;
}

.flex-1{
    flex:1;
}

section.about-us h2{
    /* font-family: "Raleway-bold"; */
    font-size:1.4rem;
    color:var(--secondary);
    margin-bottom:6rem;
    line-height:1.3;
}

section.about-us h3{
    margin-bottom:2rem;
}

section.about-us p{
    line-height: 1.7;
    /* margin-bottom:4rem; */
}

.delivery-items {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 40px auto;
}

.delivery-items img{
    width: 100px;
    height: 100px;
    box-shadow: 2px 2px 5px 3px rgba(180, 180, 180, 0.8);
}

.delivery-items img:hover{
    border-radius: 50%;
    transform: scale(1.2); 
}

section.big-deal {
    background: linear-gradient(
        rgba(35,43,56,0.8),
        rgba(35,43,56,0.8)
    ), url(../images/empanada-table.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
}
section.big-deal .timer{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* margin-right: -2rem;
    margin-bottom: 2rem; */
}

section.big-deal .timer div{
    margin-right:2rem;
    background: var(--primary);
    width:150px;
    height:150px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.big-deal .timer div span:first-child{
    /* font-family: "Raleway-semibold"; */
    font-size: 2.5rem;
    color: var(--heaven);
    margin-bottom: 0.05rem;
}

section.big-deal .timer div span:last-child{
    /* font-family: "Raleway-medium"; */
    color: var(--heaven);
}

.timer p{
    font-weight: 600;
    text-align: center;
    background: #EEBF00;
    margin:  50px auto;
    padding: 13px 0 0 0;
    width: 500px;
    height: 50px;
    border-radius: 4px;
    color: #ffffff;
}

.text-pure{
    color:var(--pure);
}

section.material{
    background:var(--primary);
}

section.material .container > div:first-child img{
    width:90%;
}

section.material .container div:first-child{
    flex:1;
}

section.material .container div:last-child{
    flex:1;
}

section.material h2{
    font-size: 1.5rem;
    margin-bottom:1.5rem;
    /* font-family: "Raleway-semibold"; */
    font-weight: 600;
    text-align: center;
}

section.material p{
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    /* line-height: 1.5; */
    /* font-family: "Raleway-medium"; */
}

.container .btn-wrapper__reserve{
    text-align: center;
    margin: 50px 0;
}

.container .btn-wrapper a{
    text-align: center;
    text-decoration: none;
    margin: 50px 0;
}

.btn-wrapper__reserve a{
    text-decoration: none;
}

section.contact-us{
    padding-top:0;
    padding-bottom: 0;
}

.contact-info a{
    text-decoration: none;
    color: #f10606;
    font-weight: 600;
}

section.contact-us .contact-info-wrapper {
    padding: 2rem 0;
    flex:1;
}

section.contact-us .map{
    flex:1;
    /* filter:grayscale(100%); */
    /* -webkit-filter:grayscale(100%); */
}

section.contact-us .contact-info{
    display: flex;
    justify-content: center;
}

section.contact-us .contact-info > div > div {
    display:flex;
    align-items:center;
    margin-bottom:2rem;
}

section.contact-us .contact-info > div > div img{
    margin-right: 1rem;
}

section.contact-us .contact-info > div > div > div{
    display:flex;
    flex-direction: column;
}

section.contact-us .contact-info > div > div > div span:first-child{
    /* font-family: "Raleway-bold"; */
    margin-bottom:0.25rem;
}

/*  *************** Shop Detail Start *************/
.shop-detail{
    padding: 30px 0;
    background: var(--light);
}
  
.table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}
  
.table th{
    width: 25%;
    padding: 10px 15px;
    border: 1px solid rgb(197, 196, 196) ;
    color: #3C4449;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
}
  
.table td{
    border: 1px solid rgb(197, 196, 196)  ;
    color: #3C4449;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
}
  
@media  screen and (max-width: 500px) {  
.company-detail .container h2{
    font-size: 26px;
}


}
/*  *************** Shop Detail End *************/
  

/*  *************** Footer Start *************/
footer{
    background:var(--footer);
    padding:4rem 0;
}
footer .container{
    display:flex;
    color:var(--pure);
}

footer .box{
    flex:1;
    margin-right:2rem;
    text-align:center;
}

footer .box ul{
    list-style-type: none;
    text-align: left;
}

footer .box ul li a{
    color:var(--pure);
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.box a img{
 font-size: 5px;
}

footer .box ul li a:hover{
    color:var(--primary);
}
footer .box h3{
    border-bottom:1px solid var(--primary);
    padding-bottom:1rem;
    margin-bottom:1rem;
    text-align: left;
}

footer .box p{
    line-height: 1.6;
    margin-bottom:1rem;
}

footer .box ul li{
    margin-bottom:1rem;
}

footer .box:nth-child(3) > div {
    display:flex;
    justify-content: center;
}
footer .box:nth-child(3){
    text-align: center;
}
footer .box:nth-child(3) h3{
    text-align: center;
}
footer .box:nth-child(3) > div img{
    margin-right:1rem;
}
footer .box:nth-child(3) ul li{
    margin-bottom:1.5rem;
}

footer.copyright{
    padding:1rem 0;
    background: var(--secondary);
    color:var(--pure);
    text-align: center;
    font-size: 0.75rem;
}

footer.copyright a{
    color:var(--primary);
    text-decoration: none;
}
/*  *************** Footer End *************/

.nav-background .mobile-logo{
    padding:1rem;
}

.nav-background .mobile-logo img{
    width: 30%;
}

.nav-background .mobile-nav{
    padding: 1rem;
}

.nav-background .mobile-nav ul{
    list-style-type: none;
}

.nav-background .mobile-nav ul li{
    margin-bottom: 1rem;
}

.nav-background .mobile-nav ul li a{
    text-decoration: none;
    color:var(--secondary);
    /* font-family: "Raleway-medium"; */
}

.nav-background .mobile-nav ul li a:hover{
    color:var(--primary);
}

.nav-background .contact, .nav-background .time{
    padding: 1rem;
    padding-left: 0;
}

.nav-background .contact img, .nav-background .time img{
    margin-right: 1rem;
}

.nav-background .contact h5,.nav-background .time h5{
    /* font-family: "Raleway-bold"; */
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.nav-background .contact h6, .nav-background .contact h6{
    font-size: 0.75rem;
}

.nav-background .cart{
    margin-bottom: 2rem;
}

.nav-background .cart a{
    color:var(--secondary);
    text-decoration: none;
    /* font-family: "Raleway-bold"; */
    margin-bottom: 1rem;
}

.nav-background .cart img{
    margin-right: 0.75rem;
    margin-bottom: 1rem;
    width: 20px;
    height: 20px;
}

@media (max-width:768px){
.nav-trigger{
    display: block;
}

header.topbar, nav{
    display: none;
}

.net-reserv{
    width: 120px;
    padding: 10px 0;
    text-align: center;
}

header.hero {
    margin-top:-4rem;
}

header.hero .hero-image{
    right:-160px;
    top:100px;
}

.top-products .slider-btn{
    display:none!important;
}

.latest-news .article-wrapper{
    flex-direction:column;
}

.latest-news .article-wrapper .card{
    margin-right:0;
    margin-bottom:4rem;
}

footer .instagram-api .post-wrap > div{
    width:calc(1/2*100% - (1 - 1/3)*10px);
}

.about-meal-wrap{
    flex-direction: column;
}

.about-meal-wrap img{
    width: 90%;
    display: block;
    margin: 0 auto 2rem;
}

.flex-1 img{
    display: flex;
    margin: 0 auto;
}

.flex-1 h3{
    width: 90%;
    text-align: center;
    margin: 20px auto 0;
}

.flex-1 p{
    width: 90%;
    margin: 0 auto;
    /* text-align: center; */
}

.btn-secondary{
    /* display: block; */
    width: 10rem;
    margin: 0 auto;  
}
}

@media (max-width:768px){

/* section.our-services .card-wrapper{
    flex-direction: column;
}

section.our-services .card-wrapper .service-card{
    margin-bottom:6rem;
} */

footer .container{
    flex-direction: column;
}

section.big-deal .timer div{
    width: 40%;
    margin: 0 auto 20px;
   
}

footer .box{
    text-align: left;
    margin-right:0;
    margin-bottom:3rem;
}

footer .box:nth-child(3) h3{
    text-align:left;
}

footer .box:nth-child(3) > div{
    display:block;
}
}

@media( max-width:576px){
header.hero .hero-image{
    right:-235px;
    top:150px;
}

header.hero .container{
    padding-left:1rem;
}

header.hero{
    margin-top:-3rem;
}

section.material .container{
    flex-direction: column;
    padding: 0.50rem;
}

.material .container img{
    display: block;
    margin: 0 auto;
}

.material .container h2{
    text-align: center;
    padding-top: 1.5rem;
}

.material .container p{
    padding: 1rem;
}

section.big-deal .timer div{
    margin: 0 auto 10px;
}

section.top-products .food-slider .food-card .price{
    font-size: 24px;
    font-weight: 800;
}

.price span{
    font-size: 1rem;
}

.timer p{
    font-size: 14px;
}

.contact-us{
    flex-direction: column;
}

section.contact-us .map{
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    height: 350px;
}

footer .container{
    padding: 0 20px;
}
}







