/* CSS IBERNET CLOUD - CARTA DIGITAL DEMO */

/* CUERPO */

body {  
    margin: 0;
    background-color: #FFFFFF;
    font-family: Helvetica;
}

/* COOKIES */

#avisoCookies {
    display: none;
    background: #fff;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    padding-top: 60px;
    box-shadow: 0px 0px 15px #888888;
    text-align: center;
}

#avisoCookies.activo {
    display: block;
}

#avisoCookies #galleta {
    max-width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

#avisoCookies #tituloCookies {
    font-weight: bold;
}

#avisoCookies #tituloCookies, #avisoCookies #parrafoCookies {
    margin-bottom: 15px;
}

#avisoCookies #botonCookies {
    width: 100%;
    background-color: rgb(44, 44, 44);
    border:2px solid black;
    border-radius: 0px;
    color : #FFFFFF;
    text-align: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: .3s ease all;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

#avisoCookies #botonCookies:hover {
    background-color:#BEDFFB;
    color:black;
}

#avisoCookies #enlaceCookies {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

#avisoCookies #enlaceCookies:hover {
    text-decoration: underline;
}

#fondoAvisoCookies {
    display: none;
    background: rgba(0,0,0,.20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

#fondoAvisoCookies.activo {
    display: block;
}

/* CABECERA */

header {
    width: 100%;
    height: 70vh;
    background-color: #B5B5B5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Merriweather;
}

header h1 {
    font-size: 50px;
}

#contenedorVideo {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
  
#video {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
  
#texto-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #FFFFFF;
    z-index: 1; 
    margin-top: 50px;
}

/* SECCIÓN CARTA DIGITAL DEMO */

/* CARTA DIGITAL DEMO CABECERA */

section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
}

.section-header p span {
    color: #57C5B6 !important;
}

/* CARTA DIGITAL DEMO MENÚS */

.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-item a {
    color: #111111 !important;
}

.menu .nav-item a:hover {
    color: #57C5B6 !important;
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
}

/* SECCIÓN CONTACTO */

#contacto {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* @MEDIAS */

@media only screen and (max-width: 1100px) {

    header h1{
        font-size: 35px;
    }
}

@media only screen and (max-width: 450px) {

    #contacto{
        text-align: center;
    }
}