/*****custom properties****/
:root {
    --first-color:#ff4e02 ;
    --second-color: #fff;
    --third-color: #000;
    --black-alpha-color: rgba(0, 0, 0, 0.9);
    --white-alpha-color: rgba(255, 255, 255, 0.7);
    --naranja-alpha-color:rgba(232, 191, 155, 0.14);
    --gray-dark-color: #666;
    --gray-light-color: #f3f3f3;
    --font: "Poppins", sans-serif;
    --max-width: 1200px;
    --header-height: 6rem;



}

@font-face {
    font-family: 'Caveat';
    src: url('source/fonts/Caveat-Regular.woff2') format('woff2'),
        url('source/fonts/Caveat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CaveatBold';
    src: url('source/fonts/Caveat-Bold.woff2') format('woff2'),
        url('source/fonts/Caveat-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/****Resert****/
html{
    box-sizing: border-box;
    font-family: var(--font);
    font-size: 16px;
    scroll-behavior: smooth;
}

*,*::after,*::before{
    box-sizing: inherit;
}

body{
    margin: 0;
    overflow-x:hidden ;
    background-color: var(--third-color);
    

}

a{
   /* color: var(--link-color);*/
   text-decoration: none;
    transition: all 0.5 ease-out;
}

a:hover{
    opacity: 0.75;
}

h1{
    margin: 0;
    font-size: 2rem;
}


h2{
    margin: 0;
    font-size: 1.5rem;
}


h3{
    margin: 0;
    font-size: 1.25rem;
}


h4{
    margin: 0;
    font-size: 1rem;
}


h5{
    margin: 0;
    font-size: 0.85rem;
}


h6{
    margin: 0;
    font-size: 0.7rem;
}

img{
    max-width: 100%;
    height: auto;
}

p{
    line-height: 1.6;
}

li{
    text-decoration: none;
}

/****index**/

.container{
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width);
}
section{
    margin-top: 0;
    padding-top: 0;
}

.header{
    position:absolute;
    /*left: 0;
    bottom: 0;*/
    top: 0;

    z-index: 999;
    padding: 1rem;
    width: 100%;
    height:var(--header-height) ;
}

.header > .container{
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.logo img{
    width: 100px;
  margin-top: -1rem;
     /* padding-top: 0.5rem;*/
}


.menu_desk{
    display: none;
}

.menu-btn svg{
    fill: var(--first-color);
}


.menu-btn {
    /* outline: thin solid var(--first-color); */
    margin-top: -1rem;
    border: 0;
    cursor: pointer;
    background: none;
    border:none
    /* border-radius:5px */
}

.menu{
    position: fixed;
    top:var(--header-height);
    left: 0;
    /*bottom: var(--header-height);*/
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;/*para quitar el cursor de links**/
    transition: opacity .5s ease;
    background-color: var(--black-alpha-color); 
    text-align: center;
    padding-top:20px
}


.none{
    display: none;
}
.menu.is-active{
    opacity: 1;
    pointer-events: auto;
}
.insta-feed{
    width:100%;
}

.menu li{ padding: 0.5rem;}

.menu a{
    color: var(--first-color);

}

.menu ul{
    display: none;
}

/***dropdown****/

.dropdown {
  position: relative;
  display: block;
  margin-bottom:10px;

}

.dropdown-content {
  display: none;
  /* position: absolute; */
  text-decoration: none;
  min-width: 160px;
  z-index: 1;
  margin-bottom:20px;
  background-color: #000;
  margin-right:40px;
  margin-left:40px;
  border-top-color: var(--first-color);
  border-top-width:1px;
  border-top-style:solid;
  padding-bottom:20px
}

.dropdown-content a {
  color: var(--first-color);
 padding: 7px 10px;
  text-decoration: none;
  display: block;
}

/* .dropdown-content a:hover {color: var(--second-color);} */

/* .dropdown:hover .dropdown-content {display: block;} */

/* When checkbox is checked, show the dropdown */
.dropdown-toggle:checked + .dropdown-label + .dropdown-content {
    display: block;
  }
  label.dropdown-label{
    background: none;
    padding-bottom: 10px;
  }

  .dropdown-toggle {
    display: none;
  }

.menu img{
    width: 20px;
    height: 20px;
    margin-right:20px
}
.menu img.non-pad{
    margin:0;
}
.menu a:hover{
    color: var(--second-color);
   
}

.tabcontent h1{
    color:#ff4e02;
}

td.money span{
  display:inline;
  font-size: .9rem;
}




.tabcontent p{
    color:#FFF;
    margin-top:10px;
    padding-top:10px
}



    .video_bg {
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }


.hero-image-content{
    width:100%;
    position:absolute;
    z-index:1;
    /* border: 1px solid #000; */
}

.menu_tap td{
   border-bottom:dashed #666 1px;
   width:50%;
}

.hero-image-title{
    font-family: CaveatBold;
}


@media screen and (min-width:768px){

     .menu-btn, .logo, .logo img, .menu{
        display: none;
    }

    .video_bg {
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }
.wrap_about img {
    order: 2 !important;
}


    section img{
        width:100%;
    }

        .menu_desk {
            position: static;
            width: var(--max-width);
            display: flex;
            flex-direction: row;
            gap: 0.5rem;
            justify-content: center;
            align-items: center;
    
        }

    .menu_desk a{
          color: var(--first-color);
          font-size: 0.9rem;
    }
    .menu_desk a svg{
        margin-top:10px;
          }


    .menu_desk a:hover{
          color: var(--second-color);
          
    }


    .menu_desk li{
        list-style: none;
    }


   .menu_desk  img{
        width:200px;
    }

    .menu_desk ul{
        display: none;
    }



.slide, .slider{
    height:800px !important;
}
.controls{
    top:700px !important;
}

} 

    /* Gradient Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.0));
  z-index: 3;
  /* border: 1px solid #FFF; */
}

.no_itbis {
    color: #535353;
    text-align: right;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 3rem;
}

@media screen and (min-width:1024px) {

    .menu_desk {
        gap: 1rem;
    }

    .video_bg {
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .menu_desk a {
        color: var(--first-color);
        font-size: 1rem;
    }

    .menu_desk a svg {
        margin-top: 10px;
    }

    .slide, .slider{
    height:800px !important ;
}
.controls{
    top:700px !important;
}
}

.hero img{
   background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-image-title{
    font-weight: 400;
    text-align: center;
    font-size: 8.5vw;
    color: var(--second-color);
    line-height: 1.2;
  margin-top: -15rem;
  position:relative;
  z-index: 10;

}
.slider{
    /* position:relative; */
    width:100%;
    height:350px;
}
.slide{
    position:absolute;
    width:100%;
    height:350px;
    top:0;
    left:0;
    opacity:0;
    transition: opacity 0.7s ease;
    z-index:0

}
.slide.active{
    opacity:1;
    z-index:1;
}

.slide video, .slide img{
    width:100%;
    height:100%;
    object-fit:cover
}

.controls{
    position: absolute;
    width:100%;
    /* bottom:30px; */
    top:290px;
    text-align:center;
    z-index:2;
}

.controls button{
    font-size:2em;
    margin: 0 20px;
    background: rgba(0, 0, 0, 0.5);
    color:white;
    border:none;
    padding:10px 10px;
    cursor:pointer;
    border-radius: 10px;
}

.content{
    position: absolute;
    z-index: 3;
    top:50%;
text-align:center;
transform:translateY(-50%);
color:white;


}

@media screen and (min-width:768px){
    .hero-image-title{
        margin-top: -30rem;
         font-size: 4.5vw;
    }

    
h2.hero-image-title span{
    /* display: block; */
    /* text-decoration: underline; */
    font-size: 8rem;
    /* font-weight: bold; */
}

    /* Gradient Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:300px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.0));
  z-index: 3;
}


}


@media screen and (min-width:1024px){
    .hero-image-title{
        margin-top: -35rem;
        width:100%
         /* margin-top: -23rem */
    }
}




.hero-image-title span{
    display: block;
    text-decoration: underline;
    font-size: 3rem;
    font-weight: bold;
}

.info{
    padding-top: 3rem;
   padding-bottom: 2rem;
   margin-top: 2rem;
}

.info p{
    color: var(--second-color);
    text-align: center;
    margin-top:3.5rem;
    margin-right:1rem;
    margin-left:1rem;
            text-align: justify;
    /* font-size: 0.70rem; */
    
}
.info p.order_title{
 text-align: center;
 margin-top:6rem;
}


.info p:last-of-type{
    color:#06C167 ;

}
.info h1{
    color: var(--first-color);
    text-align: center;
    /* font-size: 1rem; */
}

.info h1 span{
    font-weight: lighter;
}

.css-1dhgbe8.e1k35x2c0{
    background-color:#000;
}


@media screen and (min-width:768px){
    .info h1{
        font-size: 3rem;
        margin-top: .5em;
    }
        section.info h2{
        font-size: 2.5rem;
        /* margin-top: 3.5em; */
    }

    .info p{
        font-size: 1rem;
        margin-left:auto;
        margin-right: auto;
        max-width:800px;
        margin-top:2rem;

    }
    
}

@media screen and (min-width:1024px){
    .info{
        margin-top: 3rem;
    }
}

.info h2{
    color: var(--first-color);
    text-align: center;
    font-size: 1.5rem;
    font-weight: lighter;
}

.ordena_btn{
    display: flex;
   flex-direction: row;
   /**/justify-content: center;
   align-items: center;
   gap: 2rem;
   

}

.info button{
    width:80px;
    height: 80px;
    border: 0;
    outline: none;
    background: none;
}

.food_links{
    display: flex;
    /* flex-direction: column; */
margin-top: 4rem;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;

 
}

.food_links a{
    flex: 0 0 calc(80% - 16px);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}


@media screen and (min-width:768px){
    .food_links{
        flex-direction: row;
        flex-wrap:nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin-top: 4rem;
    }
        .food_links a{
        flex: 0 0 calc(20% - 16px);
        display:flex;
        flex-direction:column;
        scroll-snap-align: start;
    }


    aside p{
        /* margin-top: -1000px; */
    }
}
.food_links img{
    width: 100%;
    height: 100%;
    object-fit: cover;}



.inf_food{
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: block;

}

.titulo_food{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
   /* background-color: var(--white-alpha-color);*/
    background-color: #f06d0680;
    /*color: var(--first-color);*/
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

.inf_food:hover .titulo_food{
    opacity: 1;
    pointer-events: auto;
}
 aside p{
    font-weight: bold;
    text-align: center;
    font-size: 1.5rem;
    /* margin-top: 100px; */
    align-self: center;
 }

 .social{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
   
 }

 @media screen and (min-width:1024px){

 .social{
    flex-direction: row;
   
 }

 }


 .social div{
    margin: 0;
 }

  .map iframe{
      overflow: hidden;
        width: 100%;
    }

  @media screen and (min-width:1024px){
    .map iframe{
        width: 100%;
    }
  }


 
 .review {
    background-color:#FFF;
    padding-top:2rem;
     padding-bottom:2rem;
     height: 500px;
    /* background-image: url(img/map_white.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
 }
 .review h1{
    padding-top: 1rem;
   padding-bottom: 2rem;
    color: var(--first-color);
    text-align: center;
    /* font-size: 1rem; */
 }

.review h1 span{
 font-weight: lighter;
}

.review_carrusel{
    margin: 0 auto;
    width: 300px;
    height: 150px;
}

footer{
    display: flex;
    flex-direction: column;
}
@media screen and (min-width:768px){
    footer{
        flex-direction: row;
        gap: 2rem;
    }

   
}

 @media screen and (min-width:1024px){
     footer{
         margin-left: auto;
        margin-right: auto;
        width: var(--max-width);
          justify-content: center;
       align-items: center;
       gap: 3rem;
       
    }
 }


.footer_logo{
   text-align: center;
   margin-left: 1rem;
}

.footer_logo img{
    height: 150px;
    padding-top: 1.5rem;

}

.media{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.media img{
    margin-top: -2rem;
    width: 30px;
    height: 50px;
}

.footer_info{
    /* background-image: url(img/BG_MENU.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 1.2rem;
    font-size: 0.8rem;

}

.whatsapp_icon{
margin-top:20px
}


@media screen and (min-width:768px){

    .footer{
        padding-top: 1rem;
        
    }

    .footer_logo{
        margin-left: 1.5rem;
     }

    .footer_info{
        flex-direction: row;
        gap:0.5rem;
    }

    .copy{
        padding-top: 3rem;
    }
}


@media screen and (min-width:1024px){

     .footer_logo{
        margin-left: 0;
     }

    .footer_info{
        gap:3rem;
    }
}



.footer_info h1{
    color: var(--first-color);
    font-size: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.footer_info h1 span{
    font-weight: lighter;
}

.footer_info  p{
    color: var(--second-color);
    line-height: 0.80;
}


.footer_info input, .footer_info button{
    border: 1px solid #ff4e02 ;
    border-radius: 5px;
    padding: 0.5rem;
    color: var(--second-color);
    background-color: black;

}

 .footer_info button{
     border: thin solid var(--gray-dark-color);
 }



.footer_info img{
    width: 100px;
    display: block;
    margin: 0 auto;
    padding-top: 2rem;
}

.copy{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    border-top-color:#272727;
    border-top-width:.25px;
    border-top-style:solid;
    margin-top:30px;
    padding-bottom:20px
}

.copy p{
    color: var(--second-color);
    font-weight: lighter;
    font-size: 0.8rem;
    line-height: 0.5;

}

.copy img{
    width: 40px;
}
.media_img{
    border-color: var(--first-color); 
    
}


/********menu*****/



.menu_tap{
     background-color: #000;
    /* background-image: url(img/BG_MENU.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;

}
.tap{ 
    overflow-x:auto;
    /* margin-top: 3rem; */
    margin-left: 0;
    display: flex;
    /* flex-direction: row; */
    /* width:600px; */
    scroll-behavior: smooth;
    gap:10px;
    padding:0 20px;
    border-bottom-color: #ff4e02;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.tap::-webkit-scrollbar{
    height:8px;
}


.tap button{
     border: none;
  outline: none;
background-color: black;
white-space: nowrap;;
padding:5px 10px;;
}

.tap button:hover {
  background-color: var(--second-color)
}


.tap button.active {
  background-color:var(--second-color);
}

 .wrap_contenido{
    line-height: 0.35;
    padding-bottom: 2rem;
    /*margin-top: 1rem;*/
 }



.tablinks{
    color: var(--first-color);
    font-size:1rem ;

}

.tabcontent {
     display: none;
    margin-left: 0.5rem;
    /* padding-bottom: 3rem; */
}


.tabcontent h2{
   
    color: var(--second-color);
    text-align: center;
    border-bottom: 1px solid var(--first-color);
    padding-top: 2rem;
    /* width: 20rem;*/
}

        table {
            width:100%; /* O cualquier ancho */
        }
       

 .plato, td{ 
      color: var(--first-color);
      font-family: 0.9rem;
      padding: 0.7rem;
}
#drinks th{
   color:#FFF;
   font-weight: normal;
   text-align: right;
   padding:.7rem
}

td span{
    display: block;
      color: white;
    font-size: 0.7rem;
}

.tabcontent  .detalle{
    color: white;
    font-size: 0.7rem;
}
.money{
    text-align: right;
    width:26%
}

.daily h1{
    margin-top:2rem;
}
@media screen and (min-width:768px){

    .tap{ 
   /* margin-top: 7rem; */
   justify-content: center;
   align-items: center;
   gap: 2rem;
}

.tabcontent {
   text-align: left;
   /* width:70%; */
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
   padding-top:20px;
   /* margin-left: 4rem; */
}
}

@media screen and (min-width:1024px){

       .tap{ 
   /* margin-top: 15rem; */
  
}

.tabcontent {
 
   /* margin-left: 23rem; */
}
}

/****Daylis***/

.daily{
    background-image: url(img/BG_MENU.png);
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
   
}


.detalle_wrap{
      /* margin-top: 4rem; */
    display: grid;
      align-content: center;
     justify-content: center;
    padding-bottom: 1rem;
}

@media screen and (min-width:768px){
   .detalle_wrap{
    width:75%;
       /*  margin-top: 8rem;
       margin-left: 4rem; */
        display: grid;
      grid-template-columns: repeat(2, 1fr);
     align-content: center;
     justify-content: center;
     margin-left: auto;
     margin-right: auto;
}


    .daily{
        padding-bottom: 3rem;
        /* margin-top: 15rem; */
    }





    }

@media screen and (min-width:1024px){


    .detalle_wrap{
        /* margin-left: 12rem; */
    }


    .detalle{
        /* margin-left: 2rem; */
    }
}



.detalle{  padding-bottom: 1rem;}

.daily h1{
    color: var(--first-color);
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  
}


.detalle p{
    line-height: 0.7;
}


.detalle h2{
    color: var(--first-color);
    font-size: 1rem;
  
}


.detalle h2 span{
   font-weight: lighter;
}


.detalle p{
    color: var(--second-color);
}


/******catering containe*****/

.catering{
    background-color: var(--third-color);
       background-image: url(img/BG_MENU.png);
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* padding-top: 3rem; */
    padding-bottom: 4rem;

}

.catering p{
    /* padding: 1rem; */
    color: var(--second-color);
    text-align: center;
}

.catering a{
    color: var(--first-color);
    right: 3rem;
    padding: 0.6rem;
    margin-right: 5rem;
}
.catering a:hover{
    border-bottom: thin solid var(--gray-dark-color);;
}


form{
     margin: 2rem auto;
    padding: 1rem;
    max-width: 800px;
}

 textarea, select{
    background-color: var(--third-color);
    color: var(--first-color);
     border: thin solid var(--gray-dark-color);
    resize: none;/*para que no crezca*/
}

form > *{
    padding: 0.5rem;
    margin: 1rem auto;
    display: block;
    width: 100%;
   /* background-color: var(--gray-light-color);*/
}

label{
     background-color: var(--third-color);
    color: var(--first-color);
    border: 0;
}

input, button{ 
    background-color: var(--third-color);
    color: var(--first-color);
    border: 0;
    border-bottom: thin solid var(--gray-dark-color);
}

 input[type="submit"], button{
    margin-top: 0;
     border:thin solid var(--gray-dark-color);
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.btn{
    border-radius: 0.5rem;
     padding: 1rem;
    display: inline-block;
    width: 200px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

@media screen and (min-width:768px){
    .catering{
        /* padding-top: 8rem; */

    }

    .catering a{
   margin-left: 38rem;

   
}

}

@media screen and (min-width:1024px){
   
   
    .catering{
        /* padding-top: 12rem; */

    }
.catering p{
    /* padding: 4rem; */
   
}

.catering a{
   margin-left: 53rem;

   
}
}
    

/*******abut us***/


.about{
    margin-top: 4rem;
    padding-bottom: 3rem;
}


.wrap_about{
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}


.wrap_about h1{
    color: var(--first-color);
    font-size: 1.5rem;
}

.wrap_about h1 span{
     font-weight: lighter;
}

.wrap_about p{
    color: var(--second-color);
    text-align: justify;
}
.wrap_about img{
    order:-1
}




.staff{
    padding: 0.5rem;

}


.staff h2{
 color: var(--first-color);
    font-size: 1rem;
}


.staff ul li{
     color: var(--second-color);
     list-style: none;
     
}
.left_text p{
font-family: CaveatBold;
font-size: 1.5rem;
}


@media screen and (min-width:768px){
    .about{
    /* margin-top: 7rem; */
}

.wrap_about{
    padding: 1.5rem;
    flex-direction: row;
    align-items: center;
}
.left_text{
width:80%;
margin-right: 20px;;
}

}

@media screen and (min-width:1024px){
    .about{
    /* margin-top: 11rem; */
}

.wrap_about{
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}
.left_text{
    width:70%
}

.staff{
    margin-left: 1rem;
    margin-top: -2rem;
}
}


/***contact***/

.contact{
    /* margin-top: 3rem; */
    padding-bottom: 3rem;
}

.contact h1{
    color: var(--first-color);
    font-size: 1.5rem;
    padding-left: 0.7;
}

.contact h1 span{
    font-weight: lighter;
}


.wrap_contact{
    display: flex;
    flex-direction: column;
    padding: 0.7rem;
}

@media screen and (min-width:768px){

    .contact{
    /* margin-top: 6rem; */
    text-align: center;
   
}
}


@media screen and (min-width:1024px){

    .contact{
    /* margin-top: 11rem; */
    text-align: center;
   
}


.wrap_contact{
    flex-direction: row;
    gap: 1rem;
   
}

.wrap_contact .btn{
    margin-left: 30rem;
}
}

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}


/****deals 2******/

.card{
    width: 90%;
    /* height: 250px; */
    /* border-radius: 15px;
    border: 1px solid #FFF; */
    /* margin-bottom: 3rem; */
    margin-top: 3.5rem;
    position: relative;
    margin-left: auto;
    margin-right:auto;
}

.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 15px; */
    border: 1px solid #FFF;
    border-radius: 15px;
    margin-top:2rem;
    /*
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    */

}
.card.title img{
    border:none;
}

.head_card{
    position: absolute;
    /* border: 1px solid #FFF; */
    top: 0;
    background-color:#F47E3E; 
    width: 100%;
    height: 3rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
     border-top: 1px solid #FFF;
      border-left: 1px solid #FFF;
       border-right: 1px solid #FFF;
    
    /*margin-top: -10rem;*/
}

.head_card h1{
    color: #FFF;
    font-size: 1.2rem;
    margin-top: 0.5rem;
   
}

.head_card h1 span{
    font-weight: lighter; ;
}

.card_inf{
    /* margin-top: -5rem; */
     position: absolute;
     top:3rem;
    /* margin-left: 1rem; */
    padding-left:1rem;
    padding-right:1rem;
    background-color: #000;
    width:100%;
    border-right: 1px solid #FFF;
    border-left: 1px solid #FFF;
    padding-bottom: .5rem;
    padding-top:.5rem

}
.row_daily{
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* align-content: space-around; */
    justify-content:space-between;
}
.card p{
    color: #FFF;
    margin: 0;
   
}

.card_inf span{
    text-align: right;


}

