﻿
body {
    font-family: 'Urbanist', sans-serif;
    /*Dancing Script*/
    background: #152c29;
}


.full-width {
    width: 100%;
}


@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    /*margin-top: 90px;*/
    min-height: 50vh;
}



@media(max-width: 830px) {
    #main-content {
        margin-top: 0px
    }
}

@media(max-width: 460px) {
    #main-content {
        margin-top: 0px
    }
}


/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
        /*background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(191, 55, 91,1));*/
        /*background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgb(255 255 255));*/
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.fade-gradient-white {
    position: relative;
}

    .fade-gradient-white::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgb(255 255 255));
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background: #7d97c8;*/
    background: #152c29;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.car-image {
    width: auto;
    height: 120px;
}


.loading {
    font-size: 60px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
}

    .loading span {
        display: inline-block;
        margin: 0 -0.05em;
    }

@media (max-width: 460px) {

    .car-image {
        width: 340px;
        height: auto;
    }

    .loading {
        font-size: 50px;
    }
}



/* code #6 */
.loading06 span {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
}

    .loading06 span::after {
        position: absolute;
        top: 0;
        left: 0;
        content: attr(data-text);
        color: #e6b15f;
        opacity: 0;
        transform: rotateY(-90deg);
        animation: loading06 4s infinite;
    }

    .loading06 span:nth-child(2)::after {
        animation-delay: 0.2s;
    }

    .loading06 span:nth-child(3)::after {
        animation-delay: 0.4s;
    }

    .loading06 span:nth-child(4)::after {
        animation-delay: 0.6s;
    }

    .loading06 span:nth-child(5)::after {
        animation-delay: 0.8s;
    }

    .loading06 span:nth-child(6)::after {
        animation-delay: 1s;
    }

    .loading06 span:nth-child(7)::after {
        animation-delay: 1.2s;
    }

@keyframes loading06 {
    0%, 75%, 100% {
        transform: rotateY(-90deg);
        opacity: 0;
    }

    25%, 50% {
        transform: rotateY(0);
        opacity: 1;
    }
}


/*****************************************
* Navbar 
*****************************************/
.navbar {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.5s ease all;
    height: 90px;
    backdrop-filter: blur(9px);
    background-color: #152c29b4;
}

    .navbar .navbar-share {
        position: absolute;
        top: 24px;
        right: 46px;
    }

        .navbar .navbar-share img {
            width: 34px;
        }


    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(230, 177, 95, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    .navbar .navbar-top {
        position: absolute;
        top: 20px;
        right: 24px;
    }

        .navbar .navbar-top .external-link, .navbar .navbar-top .external-link:hover {
            border: 1px solid #45CBCA;
            padding: 5px 13px 4px 13px;
            color: #000000;
            border-radius: 7px;
            font-size: 0.9rem;
            margin: 0px 5px;
            text-decoration: none;
            background: #45CBCA;
            text-transform: uppercase;
        }



    .navbar.bg-transparent {
        background-color: rgba(0, 0, 0, 0);
    }



    .navbar .navbar-brand .navbar-logo {
        height: 70px;
        transition: 0.5s ease all;
    }


.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.3s ease all;
    text-transform: uppercase;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: #e6b15f;
        transition: all 0.2s ease;
    }

    .navbar-light .navbar-nav .nav-link.active {
        color: #e6b15f;
        /*border-bottom: 1px solid #e6b15f;*/
    }

        .navbar-light .navbar-nav .nav-link.active::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            background-color: #e6b15f;
            margin: 3px auto 0;
        }




@media (max-width: 460px) {

    .navbar {
        padding: 0rem 1rem;
        height: 60px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar .navbar-share {
        top: 26px;
        right: 60px;
    }

        .navbar .navbar-share img {
            width: 20px;
        }

    .navbar .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar .navbar-brand {
        top: 8px;
    }


        .navbar .navbar-brand .navbar-logo {
            height: 40px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        letter-spacing: 0px;
    }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }
}


.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border: none;
    outline: none;
    position: absolute;
    right: 0px;
    top: 10px;
}




/*.navbar {*/
/*border-top: 10px solid #eb7b2e;
    box-shadow: 0px 4px 12px #e8e8e8;
    background: #326b3c;*/
/*border-top: 10px solid #326b3c;
    box-shadow: 0px 4px 12px #e8e8e8;*/
/*background: #eb7b2e;*/
/*}

    .navbar .brand-logo {
        text-align: center;
        width: 100%;
        padding: 10px;
    }

        .navbar .brand-logo img {
            width: 100px;
        }

    .navbar .navbar-nav-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .navbar .navbar-nav-container .navbar-nav {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: row;
            flex-direction: row;
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
        }

            .navbar .navbar-nav-container .navbar-nav .nav-item {
                padding: 10px 20px;
                margin: 0px 10px;
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
            }

                .navbar .navbar-nav-container .navbar-nav .nav-item a {
                    color: #000000;
                }*/


#menuModal {
    background: #152c29;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: #152c29;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                padding-left: 10px;
                margin-bottom: 20px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 30%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 20px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #ffffff;
                    font-size: 1.5rem;
                    letter-spacing: 0px;
                    padding: 2px 0px;
                    text-transform: unset;
                }



/*****************************************
* Welcome Video
*****************************************/
#welcome-video {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #welcome-video {
        padding: 0px;
    }
}

#welcome-video .welcome-message {
    letter-spacing: 2px;
    color: #ffffff;
    position: absolute;
    top: 60%;
    left: 50%;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

    #welcome-video .welcome-message .welcome-message-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

        #welcome-video .welcome-message .welcome-message-logo img {
            width: 150px;
        }

    #welcome-video .welcome-message .welcome-message-headline {
        color: #e6b15f;
        font-family: 'Fraunces', sans-serif;
        font-size: 80px;
        line-height: 86px;
        font-weight: 300;
        margin-bottom: 15px;
        width: 100%;
    }

    #welcome-video .welcome-message .welcome-message-subheadline {
        font-size: 20px;
        line-height: 24px;
        width: 100%;
    }

@media(max-width:460px) {
    #welcome-video .welcome-message {
        top: 50%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #welcome-video .welcome-message .welcome-message-logo {
            margin-bottom: 10px;
        }

        #welcome-video .welcome-message .welcome-message-headline {
            font-size: 40px;
            line-height: 46px;
            margin-bottom: 5px;
        }

        #welcome-video .welcome-message .welcome-message-subheadline {
            font-size: 16px;
            line-height: 20px;
            padding: 0px 20px;
        }
}


/*****************************************
* our-location
*****************************************/
#our-location {
    position: relative;
    padding: 100px 0px;
    background-color: #18312e;
    background-image: url('/upload/location/bg-location-top.png'), url('/upload/location/bg-location-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    background-position: top -20% center, bottom center;
}

    #our-location .title {
        font-family: 'Fraunces', sans-serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 60px;
        text-align: center;
    }

    #our-location .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #e6b15f;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #our-location {
        padding: 50px 0px;
    }

        #our-location .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #our-location .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}


.our-location {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    color: #ffffff;
    background: #1b302e;
    border: 1px solid rgba(224,163,77,0.6);
}


    .our-location:hover {
        border-color: #f2c56b;
        box-shadow: 0 0 20px rgba(242, 197, 107, 0.15);
        transform: translateY(-3px);
        transition: all 0.3s ease;
    }


    .our-location .our-location-photo {
        width: 50%;
    }

    .our-location .our-location-info {
        width: 50%;
        padding: 40px;
        position: relative;
    }


        .our-location .our-location-info .location-name {
            font-family: 'Fraunces', sans-serif;
            color: #e6b15f;
            font-size: 40px;
            line-height: 46px;
            margin-bottom: 20px;
        }

        .our-location .our-location-info .location-description {
        }


        .our-location .our-location-info .btn-ordernow {
            position: absolute;
            bottom: 40px;
            left: 40px;
            display: inline-block;
            vertical-align: top;
            text-align: center;
            text-transform: uppercase;
            color: #000000;
            letter-spacing: 1px;
            font-weight: 700;
            padding: 8px 35px;
            font-size: 12px;
            background: #e6b15f;
            border: 2px solid #e6b15f;
            border-radius: 0px;
            overflow: hidden;
            transition: all 0.3s ease 0s;
        }

            .our-location .our-location-info .btn-ordernow:hover {
                text-decoration: none;
                background-color: #EABA59;
                color: #0f2e26;
                box-shadow: 0 0 15px rgba(234, 186, 89, 0.5);
            }




@media(max-width:460px) {
    .our-location:last-child {
        margin-bottom: 0px;
    }

    .our-location .our-location-photo {
        width: 100%;
    }

    .our-location .our-location-info {
        width: 100%;
        padding: 20px 20px 80px 20px;
    }

        .our-location .our-location-info .location-name {
            font-size: 30px;
            line-height: 36px;
            margin-bottom: 10px;
        }

        .our-location .our-location-info .btn-ordernow {
            bottom: 20px;
            left: 20px;
        }
}


/*****************************************
* menu
*****************************************/
#menus {
    position: relative;
    padding: 100px 0px;
    background-color: #152c29;
}

    #menus .title {
        font-family: 'Fraunces', sans-serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 30px;
        text-align: center;
    }

    #menus .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #e6b15f;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }


@media(max-width:460px) {
    #menus {
        padding: 50px 0px;
    }

        #menus .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #menus .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}

.menus {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .menus .menu-item {
        width: calc(100% / 3 - 30px);
        margin: 15px 15px 40px 15px;
    }

        .menus .menu-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(242,197,107,0.15);
            transition: all 1s ease;
        }

        .menus .menu-item .special-box {
            position: relative;
            display: block;
            text-align: center;
            border-radius: 500px 500px 0 0;
            overflow: hidden;
            border: 1px solid rgba(224, 163, 77, 1);
            border-bottom: none;
        }

            .menus .menu-item .special-box .image img {
                border-radius: 300px 300px 0 0;
                position: relative;
                z-index: 1;
            }


        .menus .menu-item .menu-name {
            color: #ffffff;
            font-size: 20px;
            line-height: 26px;
            text-align: center;
            padding: 30px 20px;
            border: 1px solid rgba(224, 163, 77, 0.6);
            border-top: none;
            text-transform: uppercase;
        }


@media(max-width:460px) {
    .menus .menu-item {
        width: calc(100% / 2 - 20px);
        margin: 10px 10px 30px 10px;
    }

        .menus .menu-item .menu-name {
            font-size: 12px;
            line-height: 16px;
            padding: 20px 10px;
        }
}




/*****************************************
* our-location
*****************************************/
#aboutus {
    position: relative;
    padding: 100px 0px;
    background-color: #18312e;
}

    #aboutus .title {
        font-family: 'Fraunces', sans-serif;
        color: #ffffff;
        font-size: 40px;
        line-height: 46px;
        text-align: center;
        font-weight: 300;
        width: 80%;
        margin: 0px auto 60px auto;
    }

        #aboutus .title span {
            color: #e6b15f;
        }

    #aboutus .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #e6b15f;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #aboutus {
        padding: 50px 0px;
    }

        #aboutus .title {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 40px;
            width: 100%;
        }

        #aboutus .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 10px;
        }
}

.aboutus {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .aboutus .aboutus-left {
        width: 46%;
    }

        .aboutus .aboutus-left .aboutus-detail {
            font-size: 16px;
            line-height: 20px;
        }


    .aboutus .aboutus-right {
        width: 46%;
    }

        .aboutus .aboutus-right .special-box {
            position: relative;
            display: block;
            text-align: center;
            border-radius: 500px 500px 0 0;
            overflow: hidden;
            border: 2px solid rgba(224, 163, 77, 1);
        }

            .aboutus .aboutus-right .special-box img {
                border-radius: 300px 300px 0 0;
                position: relative;
                z-index: 1;
            }


@media(max-width:460px) {
    .aboutus .aboutus-left {
        width: 90%;
        order: 2;
        margin: 0px auto;
    }


    .aboutus .aboutus-right {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

        .aboutus .aboutus-right .special-box {
            width: 90%;
            margin: 0px auto 20px auto;
        }
}


.benefit-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 0px;
}

    .benefit-grid .benefit-item {
        width: calc(100% / 2 - 20px);
        transition: all 0.3s ease;
        margin: 10px;
    }

        .benefit-grid .benefit-item .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

            .benefit-grid .benefit-item .header .header-icon {
                width: 50px;
            }


            .benefit-grid .benefit-item .header .header-text {
                width: calc(100% - 65px);
                color: #e6b15f;
                font-size: 16px;
                line-height: 20px;
            }


        .benefit-grid .benefit-item .description {
            color: #ddd;
            font-size: 14px;
            line-height: 20px;
        }

@media(max-width:460px) {
    .benefit-grid {
        padding: 20px 0px;
    }

        .benefit-grid .benefit-item .header .header-icon {
            width: 40px;
        }


        .benefit-grid .benefit-item .header .header-text {
            width: calc(100% - 45px);
            font-size: 14px;
            line-height: 20px;
        }

        .benefit-grid .benefit-item .description {
            font-size: 12px;
            line-height: 16px;
        }
}



/*****************************************
* #menu-flipbook
*****************************************/
#menu-flipbook {
    position: relative;
    padding: 80px 0;
    background-color: #18312e;
    text-align: center;
}

    #menu-flipbook .title {
        font-family: 'Fraunces', sans-serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 30px;
        text-align: center;
    }

    #menu-flipbook .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #e6b15f;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }


@media(max-width:460px) {
    #menus {
        padding: 50px 0px;
    }

        #menus .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #menus .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}


#magazine {
    position: relative;
    width: 1000px;
    height: 707px;
    margin: 0 auto;
    aspect-ratio: auto;
    border-radius: 8px;
    background: #203937;
    background: url('/upload/handbill/bg-handbill.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    #magazine .page img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        background-color: #fff;
    }

        #magazine .page img[data-loaded="true"] {
            opacity: 1;
        }



@media(max-width:860px) {
    #magazine {
        width: 600px !important;
        height: 424px !important;
    }

        #magazine .turn-page-wrapper {
            width: 600px !important;
            height: 424px !important;
        }
}


@media(max-width:460px) {
    #magazine {
        width: 340px !important;
        height: 240px !important;
    }

        #magazine .turn-page-wrapper {
            width: 170px !important;
            height: 240px !important;
        }
}



#flip-controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.flip-btn {
    background: #f2c56b;
    border: none;
    color: #18312e;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .flip-btn:hover {
        background: #e0a34d;
        transform: translateY(-2px);
    }





/*****************************************
* #gurantee-award
*****************************************/
#gurantee-award {
    position: relative;
    padding: 80px 0;
    background-color: #e5e7e6;
    background-image: url(/upload/location/bg-location-top.png), url(/upload/location/bg-location-bottom.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    background-position: top -20% center, bottom center;
}

    #gurantee-award .title {
        font-family: 'Fraunces', sans-serif;
        color: #1b302e;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 30px;
        text-align: center;
    }


    #gurantee-award .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #1b302e;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #gurantee-award {
        padding: 50px 0px;
    }

        #gurantee-award .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #gurantee-award .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}

.gurantee-award {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 90%;
    margin: 40px auto 0px auto;
}

    .gurantee-award .gurantee-award-certificate {
        width: 25%;
    }

        .gurantee-award .gurantee-award-certificate .award-image img {
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .gurantee-award .gurantee-award-certificate .award-image img:hover {
                transform: scale(1.02);
                box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
            }




    .gurantee-award .gurantee-award-right {
        width: 45%;
        padding: 0px;
        color: #000000;
    }

        .gurantee-award .gurantee-award-right .award-heading {
            font-size: 20px;
            line-height: 30px;
            font-weight: 600;
            color: #18312e;
            margin-bottom: 0px;
        }

        .gurantee-award .gurantee-award-right .award-heading-text {
            font-family: 'Fraunces', sans-serif;
            font-size: 36px;
            line-height: 40px;
            font-weight: 600;
            color: #18312e;
            margin-bottom: 15px;
        }

        .gurantee-award .gurantee-award-right p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 400;
        }

        .gurantee-award .gurantee-award-right .award-signature {
            margin-top: 20px;
            font-style: italic;
        }

        .gurantee-award .gurantee-award-right .award-qoute {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.5);
            border-left: 4px solid #a48f65;
            padding: 15px 20px;
            margin-top: 25px;
            font-style: italic;
            font-weight: 500;
            color: #18312e;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }


@media(max-width:460px) {
    .gurantee-award {
        width: 100%;
    }

        .gurantee-award .gurantee-award-certificate {
            width: 50%;
            margin-bottom: 40px;
        }

        .gurantee-award .gurantee-award-right {
            width: 100%;
        }
}


/*****************************************
* footer
*****************************************/
#footer {
    position: relative;
    padding: 50px 0px 30px 0px;
    background-color: #203c39;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .footer .footer-panel {
        width: calc(100%/4);
    }

        .footer .footer-panel .header {
            position: relative;
            text-transform: uppercase;
            font-weight: 700;
            color: #e6b15f;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0.20em;
            margin-bottom: 5px;
        }


@media(max-width:460px) {
    .footer .footer-panel {
        width: 100%;
    }
}


.company-info {
    text-align: center;
}

    .company-info .brand-logo {
        margin-bottom: 10px;
    }

        .company-info .brand-logo img {
            width: 30%;
        }

    .company-info .brand-name {
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        font-size: 20px;
        line-height: 26px;
        font-weight: 300;
        margin-bottom: 10px;
    }


@media(max-width:460px) {
    .company-info {
        text-align: left;
    }
}


.followus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .followus .follow-us {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .followus .follow-us .follow-us-item {
            width: 40px;
            height: 40px;
            margin-right: 5px;
        }

            .followus .follow-us .follow-us-item:hover {
                transform: translateY(-2px);
            }

.company-location {
    padding: 0px 10px;
}

    .company-location .location-name {
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        font-size: 26px;
        line-height: 30px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .company-location .location-item {
        display: flex;
        justify-content: flex-start;
        color: #ffffff;
        margin-bottom: 10px;
    }

        .company-location .location-item .location-item-icon {
            width: 20px;
        }

        .company-location .location-item .location-item-text {
            width: calc(100% - 26px);
            padding-left: 10px;
        }




/*****************************************
* Fancybox
*****************************************/
.fancybox-infobar {
    color: #fed035;
    left: 30px;
    top: 20px;
    font-size: 2rem;
}

    .fancybox-infobar span {
        font-size: 2rem;
    }

.fancybox-toolbar {
    right: 30px;
    top: 20px;
}


.fancybox-slide--image {
    padding: 80px 0;
}

.fancybox-button {
    margin-right: 10px;
    background: transparent;
}

    .fancybox-button.fancybox-button--zoom img {
        width: 40px;
    }

    .fancybox-button.fancybox-button--close img {
        width: 36px;
    }

    .fancybox-button.fancybox-button--arrow_left img {
        width: 24px;
    }

    .fancybox-button.fancybox-button--arrow_right img {
        width: 24px;
    }

.fancybox-navigation .fancybox-button--arrow_left {
    left: 20px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 40px;
}


@media(max-width: 460px) {
    .fancybox-infobar {
        left: 10px;
        top: 10px;
        font-size: 1.5rem;
    }

        .fancybox-infobar span {
            font-size: 1.5rem;
        }

    .fancybox-toolbar {
        right: 5px;
        top: 10px;
    }


    .fancybox-slide--image {
        padding: 44px 0;
    }

    .fancybox-button {
        margin-right: 0px;
        background: transparent;
    }

        .fancybox-button.fancybox-button--zoom img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--close img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--arrow_left img {
            width: 24px;
        }

        .fancybox-button.fancybox-button--arrow_right img {
            width: 24px;
        }


    .fancybox-navigation .fancybox-button--arrow_left {
        left: 0px;
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        right: 0px;
    }
}





/*****************************************
* #contact-branch
*****************************************/
#contact-branch {
    position: relative;
    padding: 80px 0;
    background-color: #18312e;
    background-image: url(/upload/location/bg-location-top.png), url(/upload/location/bg-location-bottom.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    background-position: top -20% center, bottom center;
}

    #contact-branch .title {
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 30px;
        text-align: center;
    }


    #contact-branch .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #ffffff;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #contact-branch {
        padding: 50px 0px;
    }

        #contact-branch .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #contact-branch .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}

.contact-branch {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 40px auto 60px auto;
}

    .contact-branch:last-child {
        margin: 40px auto 0px auto;
    }

    .contact-branch .contact-branch-left {
        width: 40%;
    }

        .contact-branch .contact-branch-left .award-image img {
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .contact-branch .contact-branch-left .award-image img:hover {
                transform: scale(1.02);
                box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
            }

    .contact-branch .contact-branch-right {
        width: 55%;
        padding: 0px;
        color: #ffffff;
        position: relative;
    }

        .contact-branch .contact-branch-right .award-heading {
            font-size: 12px;
            line-height: 30px;
            font-weight: 600;
            margin-bottom: 0px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .contact-branch .contact-branch-right .award-heading-text {
            font-family: 'Fraunces', sans-serif;
            font-size: 36px;
            line-height: 40px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-branch .contact-branch-right p {
            font-size: 18px;
            line-height: 24px;
            font-weight: 400;
        }


        .contact-branch .contact-branch-right .contact-branch-location {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 10px;
        }

            .contact-branch .contact-branch-right .contact-branch-location .branch-location-icon {
                width: 20px;
            }

            .contact-branch .contact-branch-right .contact-branch-location .branch-location-text {
                width: calc(100% - 26px);
                padding-left: 10px;
            }

        .contact-branch .contact-branch-right .button-action {
        }

            .contact-branch .contact-branch-right .button-action .btn-ordernow {
                margin-top: 40px;
                display: inline-block;
                vertical-align: top;
                text-align: center;
                text-transform: uppercase;
                color: #000000;
                letter-spacing: 1px;
                font-weight: 700;
                padding: 8px 35px;
                font-size: 12px;
                background: #e6b15f;
                border: 2px solid #e6b15f;
                border-radius: 0px;
                overflow: hidden;
                transition: all 0.3s ease 0s;
                margin-right: 5px;
            }

                .contact-branch .contact-branch-right .button-action .btn-ordernow:hover {
                    text-decoration: none;
                    background-color: #EABA59;
                    color: #0f2e26;
                    box-shadow: 0 0 15px rgba(234, 186, 89, 0.5);
                }


@media(max-width:460px) {
    .contact-branch {
        width: 90%;
    }

        .contact-branch .contact-branch-left {
            width: 100%;
            margin-bottom: 40px;
        }

        .contact-branch .contact-branch-right {
            width: 100%;
        }

            .contact-branch .contact-branch-right .btn-ordernow {
                bottom: 20px;
                left: 20px;
            }
}



/*****************************************
* #contact-branch
*****************************************/
#contact-followus {
    position: relative;
    padding: 80px 0;
}

    #contact-followus .title {
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 30px;
        text-align: center;
    }


    #contact-followus .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #ffffff;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #contact-followus {
        padding: 50px 0px;
    }

        #contact-followus .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #contact-followus .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}

.contact-followus {
    border: 1px solid red;
}

    .contact-followus .contact-followus-left {
        border: 1px solid red;
        width: 50%;
    }


    .contact-followus .contact-followus-right {
        border: 1px solid red;
        width: 50%;
    }


.fb-page,
.fb-page span,
.fb-page span iframe[style] {
    width: 100% !important;
}




/*.map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40%;  16:9 aspect ratio 
    height: 0;
    overflow: hidden;
}

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (max-width: 768px) {

    .map-container {
        padding-bottom: 75%;  taller map for mobile 
    }
}*/





/*****************************************
* #contact-branch
*****************************************/
#special-month {
    position: relative;
    padding: 80px 0;
}

    #special-month .title {
        font-family: 'Fraunces', sans-serif;
        color: #ffffff;
        font-size: 60px;
        line-height: 66px;
        margin-bottom: 60px;
        text-align: center;
    }


    #special-month .subtitle {
        position: relative;
        text-transform: uppercase;
        font-weight: 700;
        color: #e6b15f;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.20em;
        margin-bottom: 10px;
        text-align: center;
    }



@media(max-width:460px) {
    #special-month {
        padding: 50px 0px;
    }

        #special-month .title {
            font-size: 46px;
            line-height: 56px;
            margin-bottom: 40px;
        }

        #special-month .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0px;
        }
}

.special-month {
    display: flex;
    justify-content: flex-start;
    align-self: center;
    flex-wrap: wrap;
    color: #ffffff;
    background: url('/upload/menu/bg-special-menu.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px;
    position: relative;
}

    .special-month .vertical-title {
        position: absolute;
        top: 0px;
        right: 30px;
        transform: translateY(-50%) rotate(-90deg);
        transform-origin: right center;
        font-size: 130px;
        text-transform: uppercase;
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        white-space: nowrap;
        line-height: 1;
        z-index: 2;
        pointer-events: none;
    }


    .special-month .special-month-info {
        width: 45%;
        margin-right: 5%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .special-month .special-month-info p {
            max-width: 700px;
            margin: 0 auto 20px;
            max-width: 700px;
            margin: 0 auto 20px;
            font-size: 20px;
            line-height: 30px;
        }

        .special-month .special-month-info strong {
            color: #d2b48c;
            font-weight: 600;
        }

        .special-month .special-month-info .button-action {
            color: #d2b48c;
            font-weight: 600;
            margin-top: 20px;
        }

            .special-month .special-month-info .button-action .btn-ordernow {
                left: 40px;
                display: inline-block;
                vertical-align: top;
                text-align: center;
                text-transform: uppercase;
                color: #000000;
                letter-spacing: 1px;
                font-weight: 700;
                padding: 8px 35px;
                font-size: 12px;
                background: #e6b15f;
                border: 2px solid #e6b15f;
                border-radius: 0px;
                overflow: hidden;
                transition: all 0.3s ease 0s;
                margin-bottom: 15px;
            }

                .special-month .special-month-info .button-action .btn-ordernow:hover {
                    text-decoration: none;
                    background-color: #EABA59;
                    color: #0f2e26;
                    box-shadow: 0 0 15px rgba(234, 186, 89, 0.5);
                }

    .special-month .special-month-photo {
        width: 40%;
    }


@media(max-width:460px) {
    .special-month {
        padding: 30px;
    }

        .special-month .vertical-title {
            font-size: 70px;
            right: 15px;
        }

        .special-month .special-month-info {
            width: 100%;
            order: 2;
        }

        .special-month .special-month-photo {
            width: 100%;
            order: 1;
        }

        .special-month .special-month-info p {
            font-size: 16px;
            line-height: 24px;
        }
}


.special-menu-item {
    width: 100%;
}

    .special-menu-item img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(242,197,107,0.15);
        transition: all 1s ease;
    }

    .special-menu-item .special-box {
        position: relative;
        display: block;
        text-align: center;
        border-radius: 500px 500px 0 0;
        overflow: hidden;
        border: 1px solid rgba(224, 163, 77, 1);
        border-bottom: none;
    }

        .special-menu-item .special-box .image img {
            border-radius: 300px 300px 0 0;
            position: relative;
            z-index: 1;
        }


    .special-menu-item .menu-name {
        font-family: 'Fraunces', sans-serif;
        color: #e6b15f;
        font-size: 50px;
        line-height: 56px;
        margin-bottom: 20px;
        padding: 30px 10px;
        text-align: center;
    }


@media(max-width:460px) {
    .special-menu-item .menu-name {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 0px;
        padding: 20px 0px;
    }

}
