*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}

h1,h2, h3, h4, h5, h6{
  font-weight: 600;
  text-transform: uppercase;
  color: #f3f0e5;
}

h1{font-size: 50px;}
h2{font-size: 36px;}
h3{font-size: 28px;}
h4{font-size: 22px;}
h5{font-size: 18px;}
h6{font-size: 16px;}

a{
  text-decoration: none;
  font-weight: 500;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #f3f0e5;
  margin: 0px;
}

section{
  padding: 100px 120px;
}

section p{
  line-height: 2;
  margin: 30px 0;
}


#pop-up img{
  width: 100%;
}

#pop-up{
  color: #000;
}


@media (max-width: 1060px){
  section{
    padding: 80px 40px;
  }
  section p{
    font-size: 14px;
    margin: 12px 0;
  }
  section h1{
    font-size: 40px;
  }
}

.content{
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.main{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.main:before{
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.main .content{
  max-width: 80%;
  z-index: 1;
}

.logo{
  width: 150px;
  margin-left: 20px;
}

@media (max-width: 1060px){
  .main .btn{
    padding: 10px 15px;
    font-size: 20px;
    margin-top: 0px;
    width: 200px;
  }
  #cartas .btn{
    margin: 10px;
  }

  #cartas .content a{
    padding: 15px 5px;
    margin-top: 0px;
    width: 200px;
  }
  #cartas .content h2{
    font-size: 20px;
  }
  #karaoke .btn{
    margin: 10px;
  }
  #karaoke .content h2{
    font-size: 20px;
  }
  #karaoke .content a{
    padding: 15px 5px;
    margin-top: 0px;
    width: 200px;
  }
}

/*===== All Button Style =====*/
  .btn{
    color: #f3f0e5;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 1px;
    padding: 15px 20px;
    margin-top: 20px;
    width: 300px;
    border: solid 4px rgba(243, 240, 229, 1.0);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
  }
  .btn:hover{
    background-color: rgba(0, 0, 0, 0.7);
    border: solid 4px rgba(243, 240, 229, 1.0);
    color: #f3f0e5;
  }
  #reserva {
    color: #000;
    padding: 10px 15px;
    border-radius: 2px;
    background-color: #f3f0e5;
    text-align: center;
  }
  #zona {
    color: #f3f0e5;
    padding: 5px 10px;
    border-radius: 2px;
    background-color: #000;
  }
  @media (max-width: 1060px){
      #zona{
        font-size: 12px;
      }
    }
/*===== Header NavBar =====*/
  header{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:  rgba(0, 0, 0, 0.0);
    padding: 20px 100px;
    transition: 0.6s;
  }
  header .navigation{
    position: relative;
    line-height: 75px;
    transition: 0.6s;
    transition-property: line-height;
  }
  header .navigation .menu{
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
  }
  header.sticky .navigation{
    line-height: 60px;
  }
  header.sticky .menu-item .sub-menu{
    top: 60px;
  }
  header.sticky{
  background: #000;
  padding: 15px 100px;
  }
  .menu-item a{
    color: #f3f0e5;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin: 0 20px;
    padding: 5px 10px;
    border-radius: 2px;
    transition: 0.3s;
    transition-property: color, background;
  }
  .menu-item a:hover{
  color: #000;
  background: #f3f0e5;
  }
  .menu-item .sub-menu{
    position: absolute;
    top: 70px;
    line-height: 40px;
    list-style: none;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
  }
  .menu-item:hover .sub-menu{
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
  }
  .menu-item .sub-menu .sub-item{
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    padding: 5px 0;
    background: rgba(0, 0, 0, 1);
  }
  .menu-item .sub-menu .sub-item a{
    color: #f3f0e5;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 15px 30px;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.0);
  }
  .menu-item .sub-menu .sub-item:hover{
    background: #ff4500;
    border-radius: 2px;
  }
  .menu-item .sub-menu .sub-item a:hover{
    color: #f3f0e5;
  }
  .menu-item .sub-menu .sub-item:last-child:hover{
    border-radius: 2px;
  }
  .menu-btn{
    display: none;
  }
  @media (max-width: 1500px){
    .menu-item a{
      font-size: 14px;
      margin: 0 10px;
      padding: 5px 10px;
    }
    .menu-item .sub-menu .sub-item{
      padding: 0;
    }
    .menu-item .sub-menu .sub-item a{
      font-size: 12px;
      padding: 5px 10px;
    }
  }
  @media (min-width: 1060px){
    .close-btn i{
      color: rgba(0, 0, 0, 0.0);
    }
  }
  @media (max-width: 1060px){
    header{
      padding: 15px 20px;
    }
    header.sticky{
      padding: 10px 20px;
    }
    header.sticky .navigation{
      line-height: 75px;
    }
    header.sticky .menu-item .sub-menu{
      top: 0;
    }
    header .navigation .menu{
      position: fixed;
      display: block;
      background: #ff4500;
      min-width: 350px;
      height: 100vh;
      top: 0;
      left: -100%;
      padding: 80px 40px;
      visibility: hidden;
      overflow-y: auto;
      transition: 0.5s;
      transition-property: left, visibility;
    }
    header .navigation .menu.active{
      left: 0;
      visibility: visible;
    }
    .menu-item{
      position: relative;
    }
    .menu-item .sub-menu{
      width: 60%;
      margin-left: 20px;
      opacity: 1;
      position: relative;
      top: 0;
      transform: translateX(30px);
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      overflow: hidden;
      display: none;
    }
    .menu-item:hover .sub-menu{
      transform: translateX(20px);
    }
    .menu-item .sub-menu .sub-item{
      background: rgba(0, 0, 0, 0.0);
      box-shadow: none;
    }
    .menu-item .sub-menu .sub-item:hover{
      background: none;
    }
    .menu-item .sub-menu .sub-item a:hover{
      color: #000;
      transition: 0.3s;
    }
    .close-btn{
      position: absolute;
      color: #f3f0e5;
      font-size: 40px;
      top: 0;
      left: 0;
      margin: 25px;
      cursor: pointer;
    }
    .menu-btn{
      color: #f3f0e5;
      font-size: 40px;
      cursor: pointer;
      display: block;
    }
  }

/*===== Home Slider =====*/
  .home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #000;
  }
  .home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
    text-transform: uppercase;
  }
  .home .content.active{
    display: block;
  }
  .home .content h1{
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 20px;
  }
  .home .content p{
    margin-bottom: 25px;
  }
  .home .content a{
    background: #f3f0e5;
    padding: 20px 40px;
    color: #ff4500;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    border-color: rgba(243, 240, 229, 1.0);
  }
  .home .content a:hover{
    background: rgba(0, 0, 0, 0.7);
    color: #f3f0e5;
    border-radius: 2px;
  }
  .home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
  }
  .home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
  }
  .home .media-icons a:not(:last-child){
    margin-bottom: 20px;
  }
  .home .media-icons a:hover{
    transform: scale(1.3);
  }
  .home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 0px;
  }
  .slider-navigation .nav-btn{
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
  }
  .slider-navigation .nav-btn.active{
    background: #ff4500;
  }
  .slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
  }
  .slider-navigation .nav-btn:hover{
    transform: scale(1.2);
  }
  .video-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
  }
  .video-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
  }
  @media (max-width: 1400px){
    .home .content .btn{
      padding: 10px 15px;
      font-size: 20px;
      margin-top: 0px;
      width: 200px;
    }
    .home .media-icons{
      right: 15px;
    }
  }
  @media (max-width: 560px){
    .home .content h1{
      font-size: 3em;
      line-height: 60px;
    }
  }

/*===== Menu and Restaurant Section =====*/
  #cartas{
    position: relative;
    min-height: 100vh;
    background: url(images/barra-libre.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #mesas{
    position: relative;
    min-height: 100vh;
    background: url(images/reserva.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #bl{
    position: relative;
    min-height: 100vh;
    background: url(images/barra-libre.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #comida{
    position: relative;
    min-height: 100vh;
    background: url(images/comida.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #b-friday{
    position: relative;
    min-height: 100vh;
    background: url(images/fondo.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #new-year{
    position: relative;
    min-height: 100vh;
    background: url(images/ny-fondo.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .info-local{
    position: relative;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #000;
    padding: 50px 60px;
  }

/*===== Karaoke Section =====*/
  #terrazas video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  #karaoke{
    position: relative;
    min-height: 100vh;
    background: url(images/fondo-box.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #karaoke img{
    width: 150px;
  }
  #salon{
    background-color: #FF5400;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
  }
  #salon h1{
    font-size: 70px;
  }
  #salon h4{
    font-size: 30px;
  }
  #salon .row{
    vertical-align: middle;
    justify-content: center;
    align-items: center;
  }
  #salon img{
    transform: scale(1.5, 1.5);
    -webkit-animation-name: zoomin;
      -webkit-animation-duration: 40s;
      animation-name: zoomin;
      animation-duration: 40s;
  }
  #slide-box{
    width: 40%;
  }
  @-webkit-keyframes zoomin {
    from {transform: scale(1, 1);}
    to {transform: scale(1.5, 1.5);}
  }
  @keyframes zoomin {
    from {transform: scale(1, 1);}
    to {transform: scale(1.5, 1.5);}
  }
  @media (max-width: 1400px){
    .main #salon{
      min-height: 70vh;
    }
    #salon h1{
      font-size: 50px;
    }
    #salon h4{
      font-size: 30px;
    }
    #salon h5{
      font-size: 16px;
      font-weight: 400;
    }
    #slide-box{
      padding: 20px;
      width: 50%;
    }
  }
  @media (max-width: 767px){
    #salon h1{
      font-size: 40px;
    }
    #salon h4{
      font-size: 20px;
    }
    #slide-box{
      padding: 20px;
      width: 100%;
    }
  }

/*===== Reservation Section =====*/
  #reservation{
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url(images/reserva.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
  }
  #thanks{
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url(images/fondo.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
  }
  #reservation img{
    width: 100%;
  }
  #reservation p{
    margin: 10px 0;
  }
  @media (max-width: 1060px){
    #reservation img{
      width: 100%;
    }
    #reservation .row{
      padding-bottom: 20px;
    }
    #reservation .btn{
      width: 80%;
      padding: 5px 0px;
      margin-bottom: 10px;
    }
    #reservation h2{
      font-size: 20px;
    }
  }

  #reservation-box{
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url(images/fondo-box.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
  }
  
  #reserva-box {
    color: #f3f0e5;
    padding: 10px 15px;
    border: solid 2px rgba(243, 240, 229, 1.0);
    background-color: rgba(0, 0, 0, 0.0);
  }
  #reservation-box h6{
    color: #f3f0e5;
    font-size: 12px;
    margin: 10px 0;
  }

  #reservation-box a{
    color: #f3f0e5;
    font-size: 12px;
    margin: 10px 0;
  }

  #reservation-box p{
    font-size: 12px;
    margin: 10px 0;
  }


/*===== Footer =====*/
  footer {
    background: #000;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .footer-logo{
    margin: 0 auto;
    max-width: 150px;
    margin-bottom: 30px;
  }
  footer .footer-logo img{
      width:100%;
  }
  footer .sociales{
    padding-bottom: 30px;
  }
  footer .sociales li{
    display: inline-block;
    margin: 0 7px;
  }
  footer .sociales li a{
    font-size: 24px;
  }
  footer .container{
    max-width: 1400px;
  }
  footer p{
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
  }
  @media only screen and (max-width: 500px){
    footer p {
      word-break: break-word;
      font-size: 12px;
      margin-top: 5px;
    }
  }
  .footer-menu {
    list-style: none;
    margin: 0;
  }
  .footer-menu li {
    padding: 70px 20px 20px 0;
    display: inline-block;
  }
  .footer-menu li a {
    color: #FF4500;
    letter-spacing: 2px;
    opacity: 0.6;
    text-transform: uppercase;
  }
  .footer-menu li a:hover {
    opacity: 1;
    transition: 0.5s ease;
  }
  @media only screen and (max-width: 767px){
    .footer-menu {
      padding: 40px 0 0 0;
      }
    .footer-menu li {
      padding: 10px;
    }
  }
  @media only screen and (max-width: 768px){
    footer .contenido .col-md-4{
      margin-bottom: 10px;
    }
    .footer-menu {
      padding: 20px 0 0 0;
    }
  }
  .overhidden{
    position: relative;
    overflow: hidden;
  }
  .sociales .fab{
    font-size: 30px;
    color: #f3f0e5;
  }


@media (max-width: 820px){
  section .content{
    padding-top: 60px;
  }
}

#modal-bl h3,
#modal-comida h3{
  color: #660d01;
}
#modal-bl p,
#modal-comida p{
  color: #000;
  font-weight: 300;
  font-size: 15px;
}

@media (max-width: 820px){
  #bl h4,
  #comida h4{
    font-size:15px;
    font-weight: 400;
  }
}

  .content-bottom{
    text-transform: uppercase;
    margin-top:100px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .content-bottom p{
    letter-spacing: 2px;
    font-size: 16px;
    margin: 0;
  }
  #home:before{
    content: '';
    display: flex;
    background: linear-gradient(to top, #000, transparent);
    width: 100%;
    height: 100%;
  }
 @media only screen and (max-width: 1300px){
    .content-bottom p{
      font-size: 12px;
    }
    .content-bottom{
      margin-top: 60px;
    }
  }


#whatsapp {
  color: #000;
  padding: 10px 15px;
  border-radius: 2px;
  background-color: #25d366;
}


.btn-wsp a,
.btn-ig a{
  color: #fff;
  text-decoration: none;
}

.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:100px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
    text-decoration: none;
}
.btn-ig{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#ff4500;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
    text-decoration: none;
}

@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
  }
    .btn-ig{
        width:63px;
        height:63px;
        line-height: 66px;
  }
}

.btn-ig:hover,
.btn-wsp:hover{
    background: #fff;
    color: #000;
}



#mesas .container {
    position: relative;
    padding-top: 10px;
    text-align: left;
    z-index: 10;
}


.nota p, th, tr{
    font-size: 12px;
    color: #fff;
}

.form-label, .form-control{
    color: #fff;
}
label, .form-control, placeholder{
    font-size: 12px;
    background-color: rgb(0,0,0,0);
    color: #fff;
}
h6{
    font-size: 14px;
    color: #fff;
}


.card{
    display:table;
    width:100%;
    background-color:rgba(0,0,0,0.4);
    border-radius:1rem;
    border-style: none;
    color: #fff;
}

.card__content{
    width:70%;
    display:table-cell;
    vertical-align:middle;
    padding: 15px;
}

#box .card{
    display:table;
    width:100%;
    background-color:rgba(255,255,255,0.13);
    border-radius:1rem;
    border-style: none;
    color: #fff;
}
#card-box{
    padding-top: 15px;
    padding-bottom: 20px;
    text-align: center;
}
#mesas p{
  margin: 10px 0;
}

@media only screen and (max-width: 768px){
    .reserva-mesa{
        padding: 0 15px 0 15px;
    }
    .card{
        display:flex;
        flex-direction:column;
        overflow:hidden;
        width: 100%;
    }
    .card__content{
        display:block;
        width:100%;
        padding:10px 10px 15px 10px;
    }
    .titulo-card i {
        font-size: 50px;
    }
    .card-title{
        font-size: 16px;
    }
    .card__content p{
        font-size: 10px;
        margin-bottom: -6px;
    }
    .card__content h6,
    .card__content table{
        font-size:10px;
    }
    .card__content table thead,
    .card__content table tbody{
        margin: 0px 0px;
    }
    .nota{
        margin-top: 12px;
    }
    .nota h5{
        font-size: 12px;
    }
    form{
        margin-top: 5px;
    }
    form h6{
        font-size: 12px;
        padding-top: 2px;
    }
    th, tr{
    font-size: 10px;
    }
  }



 
