.hero-section{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0,0.4);
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}
.hero-section h1{
    font-size: 76px;
    color: white;
    margin-top: -20px;
    margin-bottom: 10px;
        font-family: "Domoaregato","Montserrat";
        font-size: 110px;
}
.hero-section .buttons button{
    margin: 5px;
}
.hero-section .buttons .reservation{
    background-color: transparent;
    color: white;
    border: 1px solid white;
}
.hero-section .buttons .contact{
    background-color: white;
}
.hero-section .hero-video{
    position: absolute;
    object-fit: cover;
    z-index: -1;
    bottom:0;
}





h2{
    position: relative;
    display: inline;
    padding: 0 10px;
}
.container h2{
    font-size: 40px;
    margin-top: 0;
        font-family: "Domoaregato","Montserrat";
        font-size: 50px;
        color: var(--secondary-color);
}
.container h2:before{
    content: '';
    background-color: var(--primary-color);
    width: 0%;
    height: 25px;
    position: absolute;
    bottom: 7.5px;
    left: 0;
    transition: 300ms;
    z-index: -1;
}
.container h2:hover:before{
    width: 100%;
    transition: 300ms;
    transition-delay: 200ms;
}
.daily-menu{
    margin-top: 125px;
}
.menu-title{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px ;
}
.menu-title h2{
    margin:0;
}
.menu-title .read-menu{
    text-align: right;
    font-size: 18px; 
}
.menu-slider{
    position: relative;
    overflow: visible;
    user-select: none;
}
.slider-menu-content{
    position: relative;
    overflow: hidden;
}
.slider-content{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    -o-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    position: relative;
    transition: 300ms cubic-bezier(0.6, 0, 0.4, 1);
}
.slider-content::-webkit-scrollbar {
    height: 5px;
  }
.slider-content::-webkit-scrollbar-track {
    background: var(--lightwhite);
}
.slider-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
.slider-content .slider{
    width:225px;
    height:300px;
    background-repeat: no-repeat;
    background-size: 220%;
    background-position: center;
    margin-right: 50px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: 300ms;
}
.slider-content .slider:hover{
    background-size: 225%;
    transition: 300ms;
}
.slider-content .slider .card{
    width:225px;
    height:300px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    transition: 500ms;
    background-color: rgba(0, 0, 0, 0.4);
}
.slider-content .slider .card:hover{
    backdrop-filter: blur(0px);
    transition: 500ms;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
.slider-content .slider .card span{
    font-size: 34px;
    color: white;
    font-weight: 900;
    text-shadow: rgba(0, 0, 0, 0.3) 3px 3px 5px;
    transition: 500ms;
}
.slider-content .slider .card:hover span{
    color: transparent;
    transition: 500ms;
}
.left-arrow, .right-arrow{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 10px 2px;
    padding: 10px 12.5px;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 30px);
    transition: 300ms;
}
.left-arrow:hover, .right-arrow:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 2px 2px 5px 2px;
    transition: 300ms;
    cursor: pointer;
}
.left-arrow{
    left: -20px;
}
.right-arrow{
    right: -20px;
}
.left-arrow svg, .right-arrow svg{
    width: 16px;
    fill:var(--primary-color);   
}

.monday,.tuesday,.wednesday,.thursday,.friday,.saturday,.sunday{
    order:0;
}






.about-us{
    display: flex;
    position: relative;
}
.about-us .bio{
    flex: 1;
}

.about-us .photo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us .photo img{
    width: 350px;
    margin-left: 100px;
    border-radius: 10px;
}
.about-us .plate1{ 
    position: absolute;
    top: -50px;
    right: -50px;
}
.menu-slider .plate2{ 
    position: absolute;
    bottom: -10px;
    left: -50px;
}

@media screen and (max-width: 1000px){
    .container-col{
        flex-direction: column;
    }
    .about-us .photo img{
        width: 100%;
        margin: 0;
        margin-top:20px;
    }
}




.masonry-gallery{
    text-align: center;
    font-size: 20px;
    background-image: url(../img/local8.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.masonry-gallery h2{
    font-size: 80px;
    margin-top: 0;
    font-family: "Domoaregato","Montserrat";
    font-size: 70px;
}
.masonry-gallery .overlay{
    background-color: rgba(255,255,255,0.9);
    width: 100%;
    padding: 100px 0;
}
.masonry-gallery .container{
    margin:0 auto;
}
.image-container{
    columns:4;
    gap:15px;
    margin-top: 50px;
  }
.image-container img{
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
    opacity:1 ;
    transition: 500ms;
}
.image-container img:hover{
    opacity: 0.8;
    transition: 500ms;
}



.where{
    display: flex;
}

.where .box{
    background-color: transparent;
    border-left:white solid 3px; 
    padding: 10px 20px;
    margin:10px 0px;
    cursor: pointer;
    transition: 300ms;
}
.where .box:hover{
    background-color: var(--lightwhite);
    border-left:#d6d6d6 solid 3px;
    transition: 300ms;
}
.where .active{
    background-color: var(--lightwhite) !important;
    border-left:var(--primary-color) solid 3px !important; 
    transition: 300ms;
}
.where .box h3{
    margin:0;
    padding:0;
}
.where .where-sect{
    flex:5;
    margin-right: 50px;
}
.where .map-sect{
    flex:3
}







.banner{
    margin-top: 64px;
    padding: 100px 0;
    background-image: url(../img/menu-banner-op.jpg);
    background-size: cover;
    background-position: center center;
}
.line-div{
  flex: 1; /* flex-grow */
  padding: 0 5px;
}
.the-line{
  height: 50%;
  border-bottom:1px solid #bbb;
}
#audioBtn svg{
    height: 30px;
    fill:var(--primary-color);
}



.grid-prods{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-prods .card:not(.in-edit){
    cursor: pointer;
}
.edit-button{
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 12.5px;
    top: -15px;
    right: -15px;
    border-radius: 100%;
    background-color: white;
    z-index: 2;
    border: 1px solid var(--primary-color);
}
.edit-button:hover{
    background-color: var(--primary-color);
}
.edit-button svg{
    fill: var(--primary-color);
    width: 100%;
}
.edit-button:hover svg{
    fill: white;
    width: 100%;
}
.plato{
    position: relative;
}
.plato.in-edit{
    border:solid 1px var(--primary-color);
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.15) 15px 15px 30px;
    z-index: 9999999;
}
.plato.in-edit .edit-button{
    display: none;
}
.card-img-top{
    max-height: 185px;
    width: auto;
    height: 100%;
    margin: auto;
}
.edit-img svg{
    position: absolute;
    top: 20px;
    right: 20px;
}
.editting.edit-img{
    border: 1px dashed var(--blue);
    border-radius: .25rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:url("https://static.thenounproject.com/png/1156518-200.png");
    background-position: center center;
    background-repeat: no-repeat;
}
.editting.edit-img input{
    opacity: 0;
    height: 200px;
    width: 100%;
    margin: 0;
}
.editting.edit-img img{
    opacity: 0.2;
}
.editting.edit-img:hover{
    background-color: rgba(0, 110, 255, 0.1);
}
.card.in-edit svg{
    fill: gray;
    width: 20px;
    height: 20px;
}
.editting.alergen {
    border: 1px solid var(--blue);
    padding: 10px !important;
    border-radius: .25rem !important;
}
textarea.editting {
    border: 1px solid var(--blue);
    padding: 10px !important;
    border-radius: .25rem !important;
    width: 100%;
    color: #212529;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
textarea:not(.descript).editting{
    height: 41px;
}
.card.borrar{
    filter: saturate(0);
    opacity: 0.2;
}