body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

a:hover,
a:focus {
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

/* HOME */

.page-case .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation: 1.2s .2s ease-in-out 1 both itemsOpacity;
    animation: 1.2s .2s ease-in-out 1 both itemsOpacity;
}

.page-case .page-case-inner {
    width: 100%;
    height: 100%;
    position: relative;
    background: #FFF;
}

.page-case .image:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all .2s;
    opacity: 0.7;
}

.page-case .content {
    padding: 60px 6%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    color: #fff;
    -webkit-animation: 1.2s .2s ease-in-out 1 both itemsOpacity;
    animation: 1.2s .2s ease-in-out 1 both itemsOpacity;
    max-width: 1000px;
}

.page-case .content .alt {
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}

.page-case .content h1 {
    font-size: 50px;
    font-weight: 400;
}

.page-case .content .logo {
    max-width: 365px;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

.page-case .content .desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 25px;
}

.page-case .page-item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171719;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    -webkit-animation: 1.2s .2s ease-in-out 1 both blockMove;
    animation: 1.2s .2s ease-in-out 1 both blockMove;
}

.page-case .button {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 15px 30px;
    line-height: 1;
    border: 1px solid #ffffff;
    color: #FFF;
    display: inline-block;
    text-align: center;
    transition: all .2s;
    display: block;
    width: 100%;
}

.page-case .button:hover,
.page-case .button:focus {
    color: #000;
    background: #FFF;
}

body.home {
    overflow: hidden;
}

.main-home {
    overflow: auto;
    height: 100vh;
    z-index: 2;
    background: #FFF;
    position: relative;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .085), 0 8px 24px rgba(0, 0, 0, .1);
    transition: transform .4s cubic-bezier(.645, .045, .355, 1);
}

body.home.open-sidebar .main-home {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.footer-home-toggle {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    color: #313135;
    display: block;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 24px;
    line-height: 44px;
    padding: 0;
    border: 0;
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .085), 0 1px 8px rgba(0, 0, 0, .1);
    outline: 0;
}

.footer-home-toggle.close {
    font-size: 24px;
    height: 32px;
    width: 32px;
    line-height: 32px;
    right: 15px;
    top: 15px;
}

.footer-home {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #262626;
    color: #999999;
    visibility: hidden;
    transition: visibility .4s;
}

body.home.open-sidebar .footer-home {
    visibility: visible;
}

.footer-home .footer {
    margin-top: 60px;
    font-size: 14px;
    line-height: 1.4;
}

.footer-home .footer p {
    margin-bottom: 0;
}

.footer-home .footer a {
    color: inherit;
}

.footer-home .footer .footer-legal li a {
    color: #d4d4d4;
}

.footer-home-inner {
    height: 100%;
    overflow-y: auto;
    padding: 50px 31px;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    transition: transform .4s cubic-bezier(.645, .045, .355, 1);
}

body.home.open-sidebar .footer-home-inner {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media (min-width:600px) {
    body.home.open-sidebar .main-home {
        transform: translateX(-400px);
    }

    .footer-home {
        width: 400px
    }
}

@-webkit-keyframes blockMove {
    0% {
        -webkit-transform: translateX(-102%);
        transform: translateX(-102%);
    }

    40% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(102%);
        transform: translateX(102%);
    }
}

@-moz-keyframes blockMove {
    0% {
        -moz-transform: translateX(-102%);
        transform: translateX(-102%);
    }

    40% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -moz-transform: translateX(102%);
        transform: translateX(102%);
    }
}

@keyframes blockMove {
    0% {
        -webkit-transform: translateX(-102%);
        -moz-transform: translateX(-102%);
        transform: translateX(-102%);
    }

    40% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(102%);
        -moz-transform: translateX(102%);
        transform: translateX(102%);
    }
}

@-webkit-keyframes itemsOpacity {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes itemsOpacity {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes itemsOpacity {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width:1199px) {
    .page-case .button {
        font-size: 13px;
        padding: 15px 15px;
    }
}

.page-case {
    position: fixed;
    height: 100%;
    width: 100%;
}

.page-case .page-item {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (min-width:992px) {}

@media (max-width:991px) {

    .page-case .image {
        position: absolute;
        left: 0;
        top: 0;
    }


    .page-case .content .desc {
        display: none;
    }

    .page-case .content .logo {
        margin-right: auto;
        margin-left: auto;
        display: block;
        margin-bottom: 50px;
        width: 70%;
    }

    .buttons .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .buttons .row .col-xs-6 {
        padding-right: 5px;
        padding-left: 5px;
    }

    .page-case .button {
        font-size: 12px;
        margin-top: 15px;
    }
}

#wrapper {
    position: relative;
}

#cookies {
    background: #262626;
    color: #c1c1c1;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
}

.cookie {
    display: table;
    width: 100%;
    z-index: 5;
    position: relative;
}

.cookie .text,
.cookie .cookie-buttons {
    display: table-cell;
    vertical-align: middle;
}

.cookie .cookie-buttons {
    width: 1px;
    padding-left: 30px;
    white-space: nowrap;
}

.cookie .text p {
    margin: 0;
    line-height: 22px;
    font-size: 13px;
}

.cookie .text p a {
    color: #FFF;
}

.cookie .config {
    color: #FFF;
    padding: 8px 0;
    border-bottom: 1px solid #5d5d5d;
    margin-right: 20px;
}

.cookie .btn {
    border: 0;
    color: #FFF;
    background: #333333;
}

#cookies.remove .cookie {
    z-index: 0;
    position: static;
}

@media (max-width:991px) {

    .cookie,
    .cookie .text,
    .cookie .cookie-buttons {
        display: block;
    }

    .cookie .cookie-buttons {
        padding-left: 0;
        margin-top: 20px;
    }
}

/* HEADER */
.header {
    background-color: #333;
    position: relative;
}

.header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.header-index {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 5;
}

.header-index:before {
    content: none;
}

.header-primary {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-primary .header-logo {
    display: block;
    float: left;
    margin: 25px 0;
}

.header-primary img {
    height: 60px;
}


.reservar {
    display: block;
    font-weight: 600;
    line-height: 14px;
    outline: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #FFF;
    padding: 13px 25px;
    font-size: 11px;
    border: 2px solid #FFF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    float: right;
    margin: 33px 0px 33px 20px;
    transition: all .2s;
}

.reservar:hover,
.reservar:focus {
    background: #FFF;
    color: #000;
}

.header-toggle {
    display: none;
}

.header-mb-header {
    display: none;
}

@media (min-width:768px) {
    .header-primary nav {
        float: right;
    }

    .header-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0;
    }

    .header-menu>li {
        display: inline-block;
        font-size: 16px;
        position: relative;
        vertical-align: middle;
    }

    .header-menu>li>a {
        color: #FFF;
        display: block;
        font-size: 20px;
        line-height: 1.4;
        padding: 33px 20px;
    }

    .header-menu>li>a small {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .7);
    }

    .header-menu li:hover>ul {
        opacity: 1;
        visibility: visible;
    }

    .header-menu ul {
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        padding: 10px 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transition: all .2s;
        z-index: 5;
        list-style: none;
    }

    .header-menu ul a {
        display: block;
        padding: 7px 20px;
        color: #333;
        font-size: 15px;
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    .header-primary .header-logo {
        margin: 0;
    }

    .header-primary img {
        height: 38px;
    }

    .header-navbar {
        padding: 15px 0;
    }

    .header-navbar:after,
    .header-navbar:before {
        content: '';
        display: table;
    }

    .header-navbar:after {
        clear: both;
    }

    .reservar {
        margin: 0;
        padding: 10px 12px;
    }

    .header-toggle {
        float: right;
        display: block;
        color: #333;
        border: 0;
        background: #FFF;
        width: 38px;
        height: 38px;
        font-size: 24px;
        text-align: center;
        line-height: 38px;
        padding: 0;
    }

    .header nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        background-color: #fff;
        pointer-events: none;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: hidden;
        opacity: 0;
    }

    .open-menu .header nav {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .header-mb-header {
        display: block;
        position: absolute;
        width: 100%;
        height: 81px;
        text-align: center;
        z-index: 5;
        background: #FFF;
        padding: 29px 0;
        border-bottom: 1px solid #e5e5e5;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        transition: -webkit-transform .8s cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform .8s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .header-mb-header span {
        text-transform: uppercase;
        font-family: 'Roboto';
        letter-spacing: 2px;
        font-size: 15px;
        font-weight: 600;
    }

    .header-mb-header .close {
        background: transparent;
        border: 0;
        width: 80px;
        height: 80px;
        font-size: 40px;
        position: absolute;
        right: 20px;
        top: 1px;
        padding: 0;
        outline: 0;
    }

    .open-menu {
        overflow: hidden;
    }

    .open-menu .header-mb-header {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .header-mb-body {
        top: 0;
        position: absolute;
        padding: 130px 0 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }

    .header-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
        -webkit-transition: opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
        transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1000ms;
        transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    }

    .open-menu .header-menu {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    .header-menu>li {
        padding: 0px 25px;
        margin-bottom: 38px;
    }

    .header-menu>li+li {
        padding-top: 38px;
        border-top: 1px solid #efefef;
    }

    .header-menu>li>a>small {
        display: block;
        color: #333333;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin: 0;
        line-height: 1.2;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .header-menu>li>a>span {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.1;
        color: #333;
        display: block;
    }

    .header-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .header-menu ul a {
        display: block;
        color: #676767;
        font-size: 17px;
        padding: 8px 0px;
    }

    .header-menu ul a:before,
    .header-menu>li>a>span:before {
        content: '\f287';
        font-family: 'Ionicons';
        font-weight: 400;
        float: right;
        color: #555;
        opacity: .7;
        font-size: 16px;
    }
}

.header-title {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.header-title .desc {
    color: #FFF;
    font-size: 21px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header-title .btn {
    background: #FFF;
    color: #333;
}

.header-title h1 {
    color: #FFF;
    font-size: 59px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 0;
}

.header-title .breadcrumb {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-top: 25px;
}

.header-title .breadcrumb li {
    display: inline-block;
}

.header-title .breadcrumb li+li:before {
    content: '/';
    color: rgba(255, 255, 255, .7);
    margin: 0 10px;

}

.header-title .breadcrumb li a {
    color: #FFF;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.header-title .breadcrumb li a:hover {
    color: #FFF;
}

@media (max-width:767px) {
    .header-title {
        padding: 60px 0
    }

    .header-title h1 {
        font-size: 40px;
    }
}

/* CARTA */
.heading {
    max-width: 615px;
    margin: 0 0 70px;
}

.heading.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.heading .subtitle {
    color: #333333;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.heading .title {
    font-size: 52px;
    line-height: 1.1;
}

.heading p {
    font-weight: 300;
    color: #555;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 17px;
}

@media (max-width:991px) {
    .img-restaurant {
        margin-bottom: 30px;
    }
}

section {
    padding: 90px 0;
}

.parallax {
    height: 550px;
    width: 100%;
}

/* BUTTON */
.btn {
    display: inline-block;
    font-weight: 600;
    line-height: 14px;
    padding: 13px 25px;
    font-size: 11px;
    outline: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}


.btn-primary {
    color: #ffffff;
    background-color: #333333;
    border-color: #333333;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #333333;
    background-color: #ebebeb;
    border-color: #ebebeb;
}

/* BACKGROUND */
.bg-white {
    background-color: #FFF;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top 0 left 0;
}

@media (min-width:992px) {
    .bg-white {
        background-attachment: fixed;
    }
}

.page-el-restaurante .bg-white {
    background-image: url('../img/textura.svg');
}

.page-el-menjador .bg-white {
    background-image: url('../img/textura-2.svg');
}

.bg-light {
    background: #f8f8f8;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* INICIO */
.cart-gallery img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}

/* SPACING */
.p-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* SLIDER */
.slider {
    padding: 0;
}

.slider .slide {
    height: 650px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slider .slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.slide-heading {
    text-align: center;
    margin-top: 250px;
    margin-right: auto;
    margin-left: auto;
    max-width: 615px;
    color: #FFF;
    position: relative;
}

.slide-heading .subtitle {
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.slide-heading .title {
    font-size: 56px;
    line-height: 1.1;
}

.slide-heading p {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 17px;
}

@media (max-width:767px) {
    .slider .slide {
        height: 350px;
    }

    .slide-heading {
        margin-top: 110px;
    }

    .slide-heading .title {
        font-size: 40px;
    }

    .slide-heading p {
        font-size: 15px;
    }
}

.chef {
    padding: 0;
}

.chef .heading {
    margin-top: 60px;
    margin-bottom: 0;
}

/* FOOTER */
.footer-primary {
    background: #262626;
    color: #999999;
    padding: 60px 0;
}

footer h3 {
    font-family: 'Roboto';
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #FFFF;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-primary ul li {
    margin-bottom: 5px;
}

footer ul a {
    display: block;
    color: inherit;
}

.footer-secondary {
    color: #999999;
    border-top: 1px solid #444;
    background: #1b1b1b;
    padding: 20px 0;
    font-size: 13px;
}

.footer-secondary .copyright {
    float: left;
}

.footer-secondary .copyright p {
    margin-bottom: 0
}

.footer-secondary .firma {
    float: right;
}

.footer-secondary a {
    color: inherit;
}

footer a:hover,
footer a:focus {
    color: #FFF;
}

.footer-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact:after,
.footer-contact:before {
    content: '';
    display: table;
}

.footer-contact::after {
    clear: both;
}

.footer-home ul.footer-contact li {
    width: 100%;
}

ul.footer-contact li {
    position: relative;
    padding-left: 46px;
    color: #FFF;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-contact li i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1b1b1b;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
}

.footer-contact li i:before {
    line-height: 30px;
}

.footer-contact span {
    display: block;
    font-size: 11px;
    color: #999999;
}

.footer-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 7px;
}

.footer-legal li {
    display: inline-block;
    margin-right: 10px;
}

.footer-legal li a {
    color: #d4d4d4;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social:after,
.footer-social:before {
    content: '';
    display: table;
}

.footer-social:after {
    clear: both
}

.footer-social li {
    float: left;
    margin-bottom: 0;
    margin-right: 17px;
}

.footer-social li a {
    font-size: 27px;
    line-height: 1;
}

@media (max-width:991px) {
    footer h3 {
        margin-top: 30px;
    }
}

.language-switch {
    margin-bottom: 20px;
    position: relative
}

.language-switch>a {
    display: block;
    padding: 8px 15px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    border: 1px solid #444;
}

.language-switch>a i {
    margin-right: 10px;
}

.language-switch>a .arrow {
    float: right;
    margin-right: 0;
    margin-top: 3px
}

.language-switch ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #FFF;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}

.language-switch:hover ul {
    opacity: 1;
    visibility: visible;
}

.language-switch ul li {
    margin-bottom: 0
}

.language-switch ul a {
    padding: 7px 18px;
    display: block;
    color: #333;
}

.language-switch ul .is-active a {
    font-weight: 500
}

.language-switch ul .is-active a:before {
    content: "\f14a";
    font-family: Ionicons;
    margin-right: 8px;
    font-weight: 400;
}

@media (max-width:600px) {
    ul.footer-contact li {
        width: 100%;
    }

    .footer-secondary .copyright,
    .footer-secondary .firma {
        float: none;
    }
}

/* RESERVAR */
.modal,
.modal-open {
    padding-right: 0 !important;
}

.modal-content {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    height: 100%;
}

.modal.in .modal-header {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.modal-header {
    position: absolute;
    width: 100%;
    height: 81px;
    text-align: center;
    z-index: 5;
    background: #FFF;
    padding: 29px 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: -webkit-transform .8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform .8s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-header .modal-title {
    text-transform: uppercase;
    font-family: 'Roboto';
    letter-spacing: 2px;
    font-size: 15px;
}

.modal-header .close {
    background: transparent;
    border: 0;
    width: 80px;
    height: 80px;
    font-size: 40px;
    position: absolute;
    right: 20px;
    top: 1px;
    padding: 0;
    outline: 0;
}

.modal-reservar .modal-dialog {
    width: 100%;
    margin: 0;
    height: 100%;
}

.modal-body {
    top: 0;
    position: absolute;
    padding: 130px 0 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.reservas-list {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}

.reservas-list::after,
.reservas-list::before {
    content: '';
    display: table;
}

.reservas-list::after {
    clear: both;
}

.reservas-list li {
    width: 50%;
    float: left;
    padding: 0 15px;
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transition: opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1000ms;
    transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1000ms, -webkit-transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition-delay: 0;
    transition-delay: 0;
}

.reservas-list a {
    position: relative;
    display: block;
}

.reservas-list a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.reservas-list .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.reservas-list .text .logo {
    width: 70%;
    max-width: 300px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

.modal.in .reservas-list li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.modal.in .reservas-list li:nth-child(1) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.modal.in .reservas-list li:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.modal.in .reservas-list li:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.modal.in .reservas-list li:nth-child(4) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

@media (max-width:767px) {
    .reservas-list li {
        width: 100%;
    }
}

/* LOCAL */
.local .col {
    position: static;
}

.local .text {
    padding-right: 50px
}

.local .text h2 {
    font-size: 22px
}

.local .text p {

    font-weight: 300;
    color: #555;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 17px;
}

.local .gallery img {
    margin-bottom: 15px
}

.local .text blockquote {
    margin: 0;
    padding-bottom: 30px;
}

.local .text blockquote p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.9;
}

.local .text blockquote p:last-child {
    margin-top: 8px;
    font-weight: 500;
    font-size: 16px;
}

.local .text blockquote p:last-child:before {
    content: '';
    width: 25px;
    height: 1px;
    background: #333;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

/* resume */
.resume {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0;
    margin: 0 -10px;
}

.resume p {
    line-height: 1.5;
    margin-bottom: 0;
}

.resume li {
    display: inline-block;
    margin-top: 22px;
    width: 50%;
    vertical-align: top;
    padding: 0 10px;
}

.resume .year {
    font-size: 13px;
    color: #888888;
}

.resume .work {
    font-size: 17px;
    font-weight: bold;
}

.resume .work small {
    white-space: nowrap;
}

.resume .position {
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.resume .place {
    font-size: 14px;
}

@media (max-width:1199px) {
    .resume li {
        margin-top: 0;
        margin-bottom: 15px;
    }

}

@media (max-width:600px) {
    .resume li {
        width: 100%;
    }
}

.legal {
    font-size: 17px;
    line-height: 1.7;
}

.legal h3 {
    text-transform: none;
    font-family: 'Roboto', sans-serif;
    margin-top: 30px;
}

.legal table {
    width: 100%;

}

table {
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

table th,
table td {

    padding: 12px;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.construccion {
    text-align: center;
    max-width: 800px;
    border: 1px solid #DDD;
    padding: 28px 10px;
    background: #FFF;
    margin: 0 auto;
    box-shadow: 0 1px 31px #efefef;
}

.construccion i {
    font-size: 55px;
    line-height: 1;
    vertical-align: middle;
    color: #c5c5c5;
}

.construccion h2 {
    font-size: 36px;
    vertical-align: middle;
}

.construccion .btn {
    margin-top: 10px;
}

.popup-info {
    min-height: 450px;
    background: #FFF;
    position: relative;
}

.popup-info .image {
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d8d8d8;
    display: block;
    position: absolute;
}

.popup-info .texto {
    width: 60%;
    float: right;
    padding: 70px 30px;
    line-height: 1.7;
    position: relative;
}

.popup-info .subtitle {
    color: #333333;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.popup-info .texto h2 {
    margin-bottom: 21px;
    font-size: 30px;
    line-height: 1.2;
}

.popup-info .texto .btn {
    margin-top: 15px
}

.popup-info .close {
    background: #333;
    color: #fff;
    border: 0;
    position: absolute;
    right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
    top: 0;
    padding: 0;
}

@media (max-width:767px) {
    .popup-info {
        min-height: auto;
    }

    .popup-info .image {
        width: 100%;
        height: 250px;
        width: 100%;
        position: static;
    }

    .popup-info .texto {
        float: none;
        width: auto;
        padding: 30px;
    }

    .popup-info .close {
        background: #fff;
        color: #333;
    }
}

.menus {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}

.menus>li {
    float: left;
    width: 33.333333%;
    padding: 0 15px;
}

.menu-item {
    background: #FFF;
    padding: 30px;
    border: 1px solid #DDD;
    box-shadow: 0 1px 31px #efefef;
    margin-bottom: 30px;
}

.menus>li .title {
    margin-bottom: 14px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}


.menus>li .description {
    margin-bottom: 15px;
}

.menus>li .description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menus>li .description li {
    padding: 8px 0;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    margin-bottom: -1px;
}

.menus>li .postdata {
    margin: 0;
    font-size: 12px;
}

@media (max-width:992px) {
    .menus>li {
        width: 100%;
    }
}


.carta,
.carta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carta ul {
    margin-bottom: 40px;
}

.carta .section+.section {
    margin-top: 50px;
}

.carta h2 {
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #000;
}

.carta h3 {
    color: #000;
    font-size: 19px;
}

.carta .plato {
    display: table;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

.carta .plato>div {
    display: table-cell;
    vertical-align: top;
}

.carta .plato .half-price,
.carta .plato .price {
    width: 100px
}

.plato-with-title .title {
    font-weight: 600;
    color: #000;
}

.plato-with-title p {
    margin-bottom: 0;
}

@media (max-width:767px) {

    .carta .plato .half-price,
    .carta .plato .price {
        width: 60px
    }
}

/**/

.jarallax {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.jarallax {
    min-height: 600px;
}

@media (max-width:991px) {

    .jarallax {
        min-height: 400px;
    }
}

@media (max-width:767px) {

    .jarallax {
        min-height: 300px;
    }
}

.section-videos {
    padding: 0;
}

.section-videos .container-fluid {
    padding: 0!important;
}
.section-videos .container-fluid .row{
    margin: 0;
}

.section-videos .container-fluid .row>* {
    padding: 0;
}

.jarallax:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.jarallax a {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    width: 90px;
    font-size: 90px;
    margin-top: -47px;
    margin-left: -45px;
    line-height: 1;
    text-align: center;
}

.horario ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0
}

.reconocimiento {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.banners {
    padding: 0;
}

.banners:after,
.banners:before {
    content: '';
    display: table;
}

.banners:after {
    clear: both;
}

.banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: block;
    position: relative;
    text-align: center;
}

.banner-pos {
    position: absolute;
    bottom: 40px;
    width: 100%;
    left: 0;
    text-align: center;
}

.banner-btn {
    padding: 14px 28px;
    background: #FFF;
    display: inline-block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.banner-btn i {
    margin-left: 8px;
    transition: all .2s;
}

.banner:hover .banner-btn i {
    transform: translateX(6px);
}

@media (min-width: 768px) {
    .banner {
        float: left;
        height: 430px;
        width: 33.3333333333%;
    }
}




#CookieDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483631;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.4);
}

#CookieDialog * {
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: inherit;
    font-size: 15px;
    line-height: 26px;
    color: inherit;
    vertical-align: baseline;
}

#CookieDialogContent {
    max-width: 640px;
    top: 8%;
    position: relative;
    margin: 0 auto 30px;
    line-height: 24px;
    background-color: #ffffff;
    color: #141414;
    border: 1px solid #d6d6d6;
    overflow: hidden;
    /* border-radius: 5px; */
}

#CookieDialogNav {
    border-bottom: 1px solid #d6d6d6;
}

#CookieDialogNavList {
    display: table;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

#CookieDialogNavList li {
    display: table-cell;
}

#CookieDialogNavList li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    text-align: center;
    color: #141414;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#CookieDialogNavList li a.active {
    border-bottom-color: #3d7dbb;
    color: #3d7dbb;
}

#CookieDialogBody .CookieDialogTabContent {
    padding: 24px;
    display: none;
}

#CookieDialogBody {
    max-height: 446px;
    overflow: auto;
}

#CookieDialogBody .CookieDialogTabContent.active {
    display: block;
}

#CookieDialogConsent h2 {
    font-weight: 600;
    margin-bottom: 8px;
}

#CookieDialogConsent p {
    margin-bottom: 10px;
}

#CookieDialogConsent a {
    color: #3d7dbb;
    text-decoration: underline;
}

#CookieDialogFooter {
    border-top: 1px solid #d6d6d6;
    padding: 15px 20px;
}

#CookieDialogFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
    table-layout: fixed;
}

#CookieDialogFooter ul li {
    display: table-cell;
    padding: 0 4px;
}

#CookieDialogFooter button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    background-color: #ffffff;
    border: 2px solid #3d7dbb;
    color: #141414;
    font-weight: 500;
    /* border-radius: 5px; */
}

#CookieDialogSave.hide,
#CookieDialogCustom.hide {
    display: none;
}

#CookieDialogAccept button {
    background-color: #3d7dbb;
    border-color: #3d7dbb;
    color: #ffffff;
}

#CookieDialog .CookieCard+.CookieCard {
    border-top: 1px solid #d6d6d6;
    margin-top: 20px;
    padding-top: 20px;
}

.CookieCardHeader:after,
.CookieCardHeader:before {
    content: '';
    display: table;
}

.CookieCardHeader:after {
    clear: both;
}

.CookieCardButton {
    float: left;
}

.CookieCardSwitch {
    float: right;
}

#CookieDialog .CookieCardBody {
    padding-top: 15px;
}

#CookieDialog .CookieCardSwitch input {
    width: 50px;
    height: 28px;
    border-radius: 32px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-position: left center;
    transition: background-position .15s ease-in-out;
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #141414;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#CookieDialog .CookieCardSwitch input:checked {
    background-color: #3d7dbb;
    border-color: #3d7dbb;
    background-position: right center;
}

#CookieDialog .CookieCardSwitch input:disabled {
    background-color: #d6d6d6;
    border-color: #d6d6d6;
}

#CookieDialog .CookieCardButton {
    background: none;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    color: #141414;
    padding-right: 11.25px;
    font-size: 16px;
}

.CookieCardTableResponsive {
    margin-top: 16px !important;
}

.CookieCardTable {
    width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 26px;
}

.CookieCardTable>thead {
    vertical-align: bottom;
}

.CookieCardTable>tbody {
    vertical-align: top;
}

.CookieCardTable th {
    font-weight: 500;
    color: #797979 !important;
    padding: 2px 8px !important;
    border: 1px solid #dee2e6;
    text-transform: uppercase;
    font-size: 11px !important;
    background: whitesmoke;
}

.CookieCardTable td {
    padding: 4px 8px !important;
    border: 1px solid #dee2e6;
}

.CookieCardTableResponsive {
    overflow: auto;
}

@media (max-width:767px) {
    #CookieDialogContent {
        top: 1.8%;
        width: 93.33%;
        height: 96.4%;
        margin-bottom: 0;
    }

    #CookieDialogBody {
        height: 62%;
        height: calc(100% - 232px);
        max-height: none;
    }

    #CookieDialogFooter ul li {
        display: block;
    }

    #CookieDialogFooter ul li button {
        padding: 5px 15px;
        margin: 7px 0;
    }
}

.section-banner {
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    background: #262626;
    color: #FFF;
}

.section-banner p,
.item-banner p {
    margin: 0;
}

.item-banner {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
}