﻿body {
    background: #ffffff;
    color: #3b2314;
    font-size: 16px;
    font-family: "Lora", "HelveticaNeue", "Helvetica Neue", sans-serif;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

.flex-spacer {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


.btn-box {
    position: relative;
    border: 3px solid #bc4542;
    padding: 10px 30px;
    color: #bc4542;
    background: transparent;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

    .btn-box:hover {
        background: #bc4542;
        color: #fff;
    }

        .btn-box:hover:before, .btn-box:hover:after {
            width: 100%;
            height: 0;
        }

        .btn-box:hover:before {
            left: 0;
        }

        .btn-box:hover:after {
            right: 0;
        }

    .btn-box:before, .btn-box:after {
        position: absolute;
        content: "";
        width: 15px;
        height: 15px;
        border: 3px solid #bc4542;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .btn-box:before {
        left: -10px;
        bottom: -10px;
        border-top: none;
        border-right: none;
    }

    .btn-box:after {
        right: -10px;
        top: -10px;
        border-bottom: none;
        border-left: none;
    }

.box-square,
.box-6x4,
.box-16x9 {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    margin: 0;
    background-color: #ccc;
}

.box-6x4 {
    padding-bottom: 66.6666666667%;
}

.box-16x9 {
    padding-bottom: 56.25%;
}

.bg-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font: 0/0 small;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .container {
        max-width: none !important;
    }
}



/*
    #region ---=== Header
*/

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    animation: smoothScroll 1s forwards;
}

    .fixed-header .navbar {
        padding: 14px 0;
        background-color: #fff;
        border-bottom: 2px solid #e8e8e8;
        z-index: 99;
    }

        .fixed-header .navbar .navbar-collapse {
            background: #ffffff;
        }

    .fixed-header .navbar-brand {
        margin: 0 20px;
        padding: 0;
        text-align: center;
    }

    .fixed-header .nav-item {
        position: relative;
        opacity: .8;
    }

        .fixed-header .nav-item:after {
            position: absolute;
            content: '';
            width: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            -webkit-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
            height: 1px;
            bottom: 0;
            background: #bc4542;
        }

        .fixed-header .nav-item:hover:after {
            width: calc(100% - 40px);
            opacity: 1;
        }

        .fixed-header .nav-item .nav-link {
            font-family: "Oswald", "HelveticaNeue", "Helvetica Neue", sans-serif;
            font-size: 20px;
            text-transform: uppercase;
            text-align: center;
            color: #333;
            padding: 15px 20px !important;
        }

@media (max-width: 767.98px) {

    .navbar-header {
        position: relative;
        width: 100%;
        min-height: 50px;
    }

        .navbar-header .navbar-brand {
            height: 50px;
            position: absolute;
            left: 25px;
            margin: 0;
        }

            .navbar-header .navbar-brand img {
                width: auto !important;
                height: 100% !important;
            }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        padding: 9px 25px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .mobile-nav-toggle .hamburger {
            cursor: pointer;
            width: auto;
            margin: 0 auto;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .mobile-nav-toggle .hamburger .bar {
                display: block;
                height: 3px;
                width: 25px;
                background: #bc4542;
                margin: 5px auto;
                -webkit-transition: all 500ms ease;
                transition: all 500ms ease;
            }

            .mobile-nav-toggle .hamburger .middle {
                margin: 0 auto;
                opacity: 1;
                -webkit-transition: all 250ms ease;
                transition: all 250ms ease;
            }

    .fixed-header .navbar .navbar-collapse.show {
        margin-top: 15px;
        box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);
        -webkit-animation: fadeInHeader 0.5s both;
        animation: fadeInHeader 0.5s both;
    }
}
/*#endregion*/



/*
    #region ---=== Footer
*/

footer {
    background-color: #1d262d;
    color: #ffffff;
    padding-top: 30px;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo > img {
        width: auto;
        height: 100%;
        display: block;
        margin: auto;
    }

.footer-place {
    margin-bottom: 10px;
}

    .footer-place > a {
        color: #ffffff;
    }

.connect-us {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bc4542;
}

.social-item {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    opacity: 1;
}

    .social-item:hover {
        opacity: .8;
    }

    .social-item > i {
        display: block;
        width: 40px;
        height: 40px;
        font: 0/0 small;
        background-image: url(../images/ic_social.png);
        background-repeat: no-repeat;
        background-position: left center;
    }

    .social-item > .ico-instagram {
        background-position-x: -40px;
    }

    .social-item > .ico-twitter {
        background-position-x: -80px;
    }

    .social-item > .ico-youtube {
        background-position-x: -120px;
    }


.copyright {
    border-top: 1px solid #dbd4d4;
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
}


@media (max-width: 767.98px) {
    .connect-us {
        text-align: center;
    }

    .social-nav {
        -ms-flex-pack: center;
        justify-content: center;
    }
}


@media (max-width: 575.98px) {
    .footer-place {
        text-align: center;
    }
}

/*#endregion*/



/*
    #region ---=== Main
*/

main {
    padding-top: 80px;
}

.section-wrapper {
    padding: 60px 0;
}

.page-heading {
    text-align: center;
}

    .page-heading .title {
        margin-bottom: 50px;
    }

        .page-heading .title h1 {
            font-weight: 700;
            font-size: 50px;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 10px;
        }

@media (max-width: 991.98px) {
    .page-heading .title {
        margin-bottom: 30px;
    }

        .page-heading .title h1 {
            font-size: 32px;
        }
}


.ic-dish {
    display: block;
    width: 39px;
    height: 27px;
    background: url(../images/ic_dish.png) center no-repeat;
    margin: auto;
}
/*#endregion*/


/*
    #region ---=== Home Page
*/

.home-page .title {
    margin-bottom: 40px;
}

    .home-page .title > p {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .home-page .title > h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

.home-page .content {
    max-width: 500px;
    margin: 0 auto;
}

/* ---=== Home Slider ===--- */
.home-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
}

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev {
        width: 36px;
        height: 54px;
        background: rgba(0, 0, 0, 0.4);
        margin: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .home-slider .swiper-button-next {
        right: 0px;
        border-radius: 5px 0px 0px 5px;
    }

    .home-slider .swiper-button-prev {
        left: 0px;
        border-radius: 0px 5px 5px 0px;
    }

        .home-slider .swiper-button-next:hover,
        .home-slider .swiper-button-prev:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .home-slider .swiper-button-next .ico,
        .home-slider .swiper-button-prev .ico {
            display: block;
            position: relative;
            height: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

    .home-slider .swiper-button-next .ico {
        right: 0px;
        border-radius: 5px 0px 0px 5px;
        background-image: url(../images/ic_arrow_right.png);
    }

    .home-slider .swiper-button-prev .ico {
        left: 0px;
        border-radius: 0px 5px 5px 0px;
        background-image: url(../images/ic_arrow_left.png);
    }

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
    font: 0/0 small;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: .8;
    margin: 8px !important;
}

.swiper-pagination-bullet-active {
    background: #bc4542;
}

/* ---=== Home Banner ===--- */
.home-banner .banner-wrapper {
    padding-bottom: 66.6666666667%;
    margin-bottom: 25px;
}

    .home-banner .banner-wrapper .banner-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .home-banner .banner-wrapper:hover .banner-mask {
        -webkit-transform: translate(0) !important;
        -ms-transform: translate(0) !important;
        transform: translate(0) !important;
    }

    .home-banner .banner-wrapper .banner-mask .banner-content {
        color: #fff;
        text-align: center;
        padding: 30px 15px 0;
        margin: 0;
    }

        .home-banner .banner-wrapper .banner-mask .banner-content > span {
            display: block;
            height: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .home-banner .banner-wrapper .banner-mask .banner-content .btn-box {
            margin-top: 15px;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
        }


    .home-banner .banner-wrapper .banner-footer {
        position: absolute;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50px;
        line-height: 50px;
        color: #fff;
        z-index: 999;
    }

        .home-banner .banner-wrapper .banner-footer:before {
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            content: "";
            background: #bc4542;
            opacity: .8;
        }

        .home-banner .banner-wrapper .banner-footer > span {
            position: relative;
            text-transform: uppercase;
        }



@media (min-width: 1200px) {
    .home-banner .banner-wrapper .banner-mask.mask-left {
        -ms-transform: translate(-100%, -100px) rotate(-180deg);
        -webkit-transform: translate(-100%, -100px) rotate(-180deg);
        transform: translate(-100%, -100px) rotate(-180deg);
    }

    .home-banner .banner-wrapper .banner-mask.mask-right {
        -ms-transform: translate(100%, -100px) rotate(179deg);
        -webkit-transform: translate(100%, -100px) rotate(179deg);
        transform: translate(100%, -100px) rotate(179deg);
    }
}

@media (max-width: 991.98px) {
    .home-banner .banner-wrapper {
        padding-bottom: 75%;
    }
}


@media (max-width: 767.98px) {
    .home-banner .banner-wrapper {
        padding-bottom: 100%;
    }

    .home-slider .swiper-button-next, .home-slider .swiper-button-prev {
        width: 26px;
        height: 42px;
    }


    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 5px !important;
    }
}


/* ---=== Home Booking ===---*/
.booking {
    padding-top: 50px;
}

    .booking .time-opening {
        padding: 30px;
    }

.time-opening-content {
    border: 1px solid #eee;
    height: 100%;
    padding: 15px;
    text-align: center;
}

    .time-opening-content .title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 50px;
    }

    .time-opening-content .content {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .time-opening-content hr {
        border-top: 1px solid #eee;
        width: 60%;
        margin-top: 30px;
        margin-bottom: 50px;
        display: block;
    }

    .time-opening-content .hotline {
        font-size: 20px;
        margin-bottom: 0;
    }

.booking-form {
    padding: 50px;
}

    .booking-form .header {
        margin-bottom: 40px;
    }

        .booking-form .header > h2 {
            font-weight: 700;
            font-size: 30px;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
        }

    .booking-form form input {
        width: 100%;
        padding: 8px 5px;
        border-bottom: 2px solid #bc4542;
        border-left: none;
        border-top: none;
        border-right: none;
        font-size: 15px;
        font-family: "Lora", "HelveticaNeue", "Helvetica Neue", sans-serif;
        font-style: italic;
        margin-bottom: 50px;
        border-radius: 0;
    }

        .booking-form form input:focus {
            box-shadow: none;
            background: transparent;
        }

    .booking-form .btn-box {
        margin-top: 30px;
    }

@media (max-width: 767.98px) {

    .booking-form {
        padding: 0px;
    }
}
/*#endregion*/



/*
    #region ---=== Menu Page
*/

.nav-menu {
    margin: 30px auto 0;
    border-bottom: 2px solid #bc4542;
}

    .nav-menu .nav-link {
        text-transform: uppercase;
        text-align: center;
        color: #333;
    }

        .nav-menu .nav-link:hover {
            border-color: #bc4542;
            border-bottom-color: #ffffff;
        }

        .nav-menu .nav-link.active {
            color: #ffffff;
            background-color: #bc4542;
            border-color: #bc4542;
        }


.menu-panel {
    margin: 30px auto 35px;
}

.menu-body {
    background: #ffffff;
    margin-left: 0;
    margin-right: 0;
}

.menu-footer {
    position:relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.menu-footer .comment {
    width:auto;
    background: url(../images/ic_chili.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left:20px;
    color: red;
}
.menu-footer .subcomment {
    width:auto;
    color: red;
}

.menu-special-food-name {
    font-family: "Oswald", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #bc4542;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
}
.menu-special-food-desc {
    position: relative;
    font-size: 20px;
    margin-bottom: 0px;
    padding-right: 5px;
    background: #ffffff;
    text-transform: uppercase;
    text-align: center;
}
.menu-header-desc {
    position: relative;
    font-size: 20px;
    margin-bottom: 0px;
    padding-right: 5px;
    background: #ffffff;
    text-align: center;
    font-style:italic;
    font-weight: bold;
}


.menu-header {
    font-family: "Oswald", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #bc4542;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}

.menu-list {
    counter-reset: my-awesome-counter;
    list-style: none;
    padding: 0;
}

    .menu-list li {
        counter-increment: my-awesome-counter;
        position: relative;
        padding-left: 50px;
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 500;
        color: #333;
    }

        .menu-list li::before {
            content: counter(my-awesome-counter) ".";
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            text-align: right;
        }

        .menu-list li.ic-chili::before {
            background: url(../images/ic_chili.png);
            background-repeat: no-repeat;
            background-position: left center;
        }

        .menu-list li.ic-chili-green::before {
            background: url(../images/ic_chili_green.png);
            background-repeat: no-repeat;
            background-position: left center;
        }

        .menu-list li:after {
            width: calc(100% - 100px);
            overflow: hidden;
            position: absolute;
            right: 30px;
            top: 20px;
            border-bottom: 2px dotted #333;
            display: block;
            content: "";
        }

        .menu-list li p.menu-name {
            position: relative;
            float: left;
            margin-bottom: 0px;
            padding-right: 5px;
            z-index: 2;
            background: #ffffff;
            text-transform: uppercase;
        }

        .menu-list li p.menu-price {
            margin-bottom: 0px;
            color: #333;
            z-index: 2;
            background-color: #ffffff;
            padding-left: 5px;
            display: inline-block;
            position: absolute;
            right: 0;
        }

        .menu-list li p.menu-sub {
            clear: both;
            color: #333;
            font-size: 16px;
            font-weight: 400;
            margin: 0;
        }


.frame {
    position: relative;
}

    .frame:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid #bc4542;
        border-radius: 15px;
    }

    .frame:after {
        content: "";
        position: absolute;
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border: 1px solid #bc4542;
        border-radius: 10px;
    }

    .frame .corner {
        position: absolute;
        left: 9px;
        bottom: 9px;
        width: 120px;
        height: 120px;
        z-index: 0;
        background: url(../images/border_corner.png) center no-repeat;
        background-size: contain;
        font: 0/0 small;
    }

        .frame .corner.top-left {
            top: 9px;
            bottom: auto;
            -ms-transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
        }

        .frame .corner.top-right {
            top: 9px;
            right: 9px;
            left: auto;
            bottom: auto;
            -ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }


        .frame .corner.bottom-right {
            right: 9px;
            left: auto;
            -ms-transform: rotate(270deg);
            -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
        }

    .frame .menu-body {
        position: relative;
        background: transparent;
        padding: 45px;
        z-index: 99;
    }

    .frame .menu-header {
        margin-bottom: 10px;
    }

    .frame .sub-header {
        font-family: "Oswald", "HelveticaNeue", "Helvetica Neue", sans-serif;
        font-size: 24px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .frame .text-price {
        display: -webkit-flex;
        -webkit-align-items: baseline;
        align-items: baseline;
        font-size: 24px;
        font-weight: 700;
        color: #bc4542;
        margin-bottom: 25px;
    }

        .frame .text-price .price {
            font-size: 30px;
            margin-right: 8px;
        }

    .frame .text {
        font-size: 20px;
        max-width: 500px;
        margin: 10px auto;
        text-align: center;
    }


@media (max-width: 767.98px) {

    .tab-content > .tab-pane {
        display: block !important;
        opacity: 1 !important;
    }

    .menu-header {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .menu-list li {
        padding-left: 40px;
        margin-bottom: 10px;
        font-size: 15px;
    }

        .menu-list li::before {
            width: 30px;
        }

        .menu-list li p.menu-sub {
            font-size: 13px;
        }


    .frame .corner {
        width: 90px;
        height: 90px;
    }

    .frame .menu-body {
        padding: 40px 30px;
    }


    .frame .sub-header {
        font-size: 18px;
    }

    .frame .text-price {
        font-size: 18px;
    }

        .frame .text-price .price {
            font-size: 22px;
        }

    .frame .text {
        font-size: 18px;
    }
}

/*#endregion*/
/*
    #region ---=== About Page
*/
.about-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

    .about-wrapper .card-item {
        position: relative;
        background: #fff;
        z-index: 99;
        margin-bottom: 30px;
    }

        .about-wrapper .card-item h2 {
            font-weight: 700;
            font-size: 23px;
            text-align: center;
            color: rgb(166, 120, 64);
            margin-top: 0;
        }

        .about-wrapper .card-item p {
            margin-bottom: 10px;
        }

@media (min-width: 768px) {
    .about-wrapper .card-item {
        padding: 30px 50px;
        margin: -70px 30px 30px;
        box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.15);
    }
}

@media (min-width: 992px) {
    .about-wrapper .card-item {
        max-width: 550px;
        margin-top: -200px !important;
    }

        .about-wrapper .card-item.left {
            float: left;
            margin-left: 30px;
        }

        .about-wrapper .card-item.right {
            float: right;
            margin-right: 30px;
        }
}

@media (max-width: 767.98px) {
    .about-wrapper .card-item {
        margin-top: 15px;
    }
}

/*#endregion*/



/*
    #region ---=== About Page
*/
.map-container {
    padding: 30px;
}

.map-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-form {
    padding: 50px 30px;
}

    .contact-form .header {
        margin-bottom: 40px;
    }

        .contact-form .header > h2 {
            font-weight: 700;
            font-size: 30px;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
        }

    .contact-form form input {
        width: 100%;
        padding: 8px 5px;
        border-bottom: 1px solid #bc4542;
        border-left: none;
        border-top: none;
        border-right: none;
        font-size: 15px;
        font-family: "Lora", "HelveticaNeue", "Helvetica Neue", sans-serif;
        font-style: italic;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .contact-form form textarea {
        width: 100%;
        padding: 8px 5px;
        border-color: #bc4542;
        font-size: 15px;
        font-family: "Lora", "HelveticaNeue", "Helvetica Neue", sans-serif;
        font-style: italic;
        margin-bottom: 20px;
        border-radius: 0;
    }

        .contact-form form input:focus,
        .contact-form form textarea:focus {
            box-shadow: none;
            background: transparent;
        }

    .contact-form .btn-box {
        margin-top: 10px;
    }

.contact-info {
    padding: 50px;
}

    .contact-info > p {
        margin-bottom: 25px;
    }

    .contact-info .icons {
        float: left;
        width: 24px;
        height: 24px;
        background: url(../images/icons.png);
        background-repeat: no-repeat;
    }

        .contact-info .icons.ic-address {
            background-position: 0px 0px;
        }

        .contact-info .icons.ic-phone {
            background-position: -24px 0px;
        }

        .contact-info .icons.ic-email {
            background-position: 0 -24px;
        }

        .contact-info .icons.ic-facebook {
            background-position: -24px -24px;
        }

    .contact-info .text {
        display: block;
        padding-left: 36px;
        color: #333;
    }


@media (max-width: 767.98px) {
    .map-container {
        padding: 0px;
    }

    .contact-info {
        padding: 30px;
    }
}
/*#endregion*/
