
body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: white;
    height: 100%;
    background-color: black;
    letter-spacing: 0.05rem;
    font-weight: 200;
    margin: 0;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
    font-size: 1.2rem;
}

p {
    font-size: 0.95rem;
    line-height: 1.1rem;
    font-weight: 100;
}

a {
    color: white;
    text-decoration: none;
}

@-webkit-keyframes smoke {
    0% {
        opacity: .6;
    }
    90% {
        opacity: .6;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 0;
    }
}

@keyframes smoke {
    0% {
        opacity: .6;
    }
    90% {
        opacity: .6;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 0;
    }
}

.smoke {
    background: #7b7b7b;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all 2s ease-in-out;
    -webkit-animation: smoke 2s 1;
    animation: smoke 2s 1;
    animation-direction: reverse;
    z-index: 2;
}


/* home */

.logo {
    width: 100%;
    margin-bottom: 25px;
    animation-name: appear;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: both;
    animation-delay: 0.3s;
}

@keyframes appear {
    from {
        left: 0;
        top: 15px;
        opacity: 0;
    }
    to {
        left: 0;
        top: 0;
        opacity: 1;
    }
}


#home {
    width: 100%;
    height: 100vh;
    box-shadow: 0 0 300px 50px rgba(0, 0, 0, 0.63) inset;
    background-image: url(home_05.jpg);
    background-position: center center;
    background-size: cover;
}


.home-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    z-index: -2;
}

.image {
    padding: 37%;
    z-index: -2;
}

.nav-link {
    position: absolute;
    top: 10%;
    display: block;
    transition: color ease 0.3s;
}


.nav-link a {
    display: block;
    float: inherit;
    padding: 1.2rem 0 1.2rem 0;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.1rem;
    position: relative;
    -webkit-transition: width 0.2s ease-in-out; /* Safari */
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
    top: 0;
    color: rgb(255, 255, 255);
}

.nav-link a:hover {
    color: rgba(255, 255, 255, 0.51);
}


/*.nav-link a:before {*/
/*content:"";*/
/*position:absolute;*/
/*width:100%;*/
/*height:1px;*/
/*bottom:8px;*/
/*left:0;*/
/*background-color: rgba(255, 255, 255, 0.51);*/
/*visibility: hidden;*/
/*-webkit-transform:scaleX(0);*/
/*transform:scaleX(0);*/
/*-webkit-transition:all 0.2s ease-in-out 0s;*/
/*transition:all 0.2s ease-in-out 0s;*/
/*}*/

/*.nav-link a:hover:before{*/
/*visibility:visible;*/
/*-webkit-transform: scaleX(0.6);*/
/*transform: scaleX(0.6)*/
/*}*/


/* about */
#about {
    position: relative;
    color: white;
    max-width: 800px;
    margin-bottom: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.intro {
    line-height: 1.6rem;
    margin-bottom: 90px;
}

/* gallery */

img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
}

.mySlides {
    display: none;
    box-shadow: 0 0 80px 40px rgba(0, 0, 0, 1) inset;
    border: 5px solid black;
}

.slideShow-container {
    opacity: .5;
}

.row-dot {
    text-align: center;
    letter-spacing: 0;
    margin-top: -100px;
}

.dot {
    height: 3px;
    width: 33px;
    background-color: rgba(184, 184, 184, 0.54);
    display: inline-block;
    transition: background-color ease;
    position: relative;
    z-index: 11;
}

.dot.active, .dot:hover {
    background-color: #e2e2e2;
}

#menu .title {
    padding-left: 40px;
    font-family: "Avenir Next", sans-serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* menu */
#menu {

    max-width: 1225px;

    height: 580px;
}

#menu ::-webkit-scrollbar {
    width: 5px;
}

#menu ::-webkit-scrollbar-track {
    background: black;
    border-radius: 10px;
}

#menu ::-webkit-scrollbar-thumb {
    background: #737373;
    border-radius: 10px;
}

#menu ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.column {
    width: 50%;
    float: left;
    line-height: 2rem;
}

.menu-display {
    height: 460px;
    overflow: auto;
}

.menu-item {
    font-size: 1.1rem;
    line-height: 2.4rem;
    font-weight: 100;
    margin-left: -40px;
    display: none;
}

.menu-item.active {
    display: block;
}

.menu-title {
    width: 90%;
    display: inline-block;
}

.menu-price {
    display: inline;
    float: right;
}

.menu-image {
    max-width: 600px;
}

li {
    border-bottom: 1px solid #181818;
    list-style-type: none;
}

li:hover {
    border-radius: 0.2rem;
    background-color: rgba(255, 255, 255, 0.1);
}

#pagination {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 200;
}

#prevPage {
    padding: 0 15px;
}

#nextPage {
    padding: 0 15px;
}

.disabled {
    opacity: .3;
}


.order-button {
    display: flex;
    justify-content: center;
}

button {
    background-color: transparent;
    width: 200px;
    height: 50px;
    font-family: 'Raleway', sans-serif;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    letter-spacing: 0.05rem;
    border-radius: 0.2rem;
    border: 1px solid #4d4d4d;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.11);
    transition: 0.3s;
    color: white;
    border: 1px solid #ffffff;
}

button:after {
    content: "\2192";
    position: relative;
    opacity: 0;
    left: -8px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

button:hover:after {
    opacity: 1;
    left: 10px;
}

.button-mobile {
    display: none;
}


/* Location */
#googleMap {
    width: 100%;
    height: 500px;
    color: black;
}

#googleMap img {
    z-index: 1;
}

#googleMap:focus {
    z-index: 1;
}

.location-info {
    max-width: 1225px;
    height: 400px;
    margin: auto;
}

.column.contact-image {
    float: left;
    display: inline-block;
    max-width: 600px;
    max-height: 300px;
    opacity: .5;
}

.contact-image-wrap {
    display: block;
    width: auto;
    box-shadow: 0 0 80px 40px rgba(0, 0, 0, 1) inset;
}

.contactImage {
    z-index: -33;
}

.column.location-contact-hours {
    width: 50%;
    margin-right: auto;
    display: inline-block;
}

.Location-Contact {
    margin-top: -20px;
}

.hours {
    margin-top: 30px;
    margin-bottom: 60px;
}

.scrollTop {
    font-size: 0.8rem;
    display: block;
    margin-top: 60px;
    width: 100px;
}

.backToTop {
    display: block;
    font-weight: 200;
}

.upward {
    padding: 9px 12px 6px 12px;
    width: 20px;
    height: 20px;
    border: 1px solid #4d4d4d;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 0.2rem;
    margin-right: 5px;
    transition: 0.2s;
    color: rgba(255, 255, 255, 0.64);
}

.upward:hover {
    background-color: rgba(255, 255, 255, 0.11);
    border: 1px solid #ffffff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: white;
}


/* Responsive */
/* mobile */
@media only screen and (max-width: 576px) {
    .smoke {
        display: none;
    }

    #home {
        margin-left: -10px;
    }

    .logo {
        width: 25%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link {
        max-width: none;
        display: inline;
        width: 100%;
        right: auto;
        left: auto;
        top: 5%;
    }

    .nav-link a {
        display: inline;
        padding: 0.5rem;
        letter-spacing: 0.1rem;
        font-size: 0.8rem;
    }

    .link-title {
        display: flex;
        justify-content: center;
    }

    h1 {
        font-weight: 600;
        font-size: 1.5rem;
    }

    h2 {
        font-weight: 500;
        font-size: 1.2rem;
    }

    p.intro {
        font-size: 0.85rem;
        line-height: 1.2rem;
        font-weight: 200;
        letter-spacing: 0.05rem;
        margin-bottom: 40px;
    }

    #about {
        margin-bottom: 40px;
    }

    .row-dot {
        margin-top: -50px;
    }

    .dot {
        height: 2px;
        width: 30px;
        margin: 1px;
    }

    button:after {
        display: none;
    }

    .mySlides {
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 1) inset;
    }

    .column.location-contact-hours {
        padding-top: 20px;
        width: 100%;
        height: 400px;
        line-height: 2rem;
    }

    #menu {
        margin: 50px -20px 0 15px;
    }

    .menu-display {
        height: 340px;
    }

    .column.menu {
        width: 95%;
    }

    .pagination {
        font-size: 1rem;
        font-weight: 200;
    }

    .menu-title {
        width: 88%;
    }

    .menu-item {
        font-size: 0.85rem;
        line-height: 1.75rem;
    }

    .menu-image {
        display: none;
    }

    .button-mobile {
        display: inline;
        float: right;
        width: 150px;
        font-size: 0.9rem;
    }

    .column.contact-image {
        display: none;
    }

    .location-info {
        margin: 10px 15px 0 15px;
        height: 400px;
    }

    #googleMap {
        height: 200px;
    }

    p {
        font-size: 0.85rem;
        line-height: 1.15rem;
        font-weight: 200;
        letter-spacing: 0.05rem;
    }

    .back {
        display: inline-flex;
        width: 100%;
        margin-top: 0;
    }

    .footer {
        margin: 10px;
    }

    .upward {
        margin-left: 0;
    }

    .footer-left {
        max-width: 100%;
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .footer-right {
        max-width: 100%;
        float: left;
        text-align: left;
        margin-top: 20px;
        font-size: 0.75rem;
        letter-spacing: 0;
        margin-bottom: 20px;
    }
}


/* tablet */
@media only screen and (min-width: 576px) and (max-width: 1200px) {
    .nav-link {
        max-width: 150px;
        position: absolute;
        top: 5%;
        right: 17%;
        display: block;
    }

    .nav-link a {
        padding: 1rem 0 1rem 0;
    }

    .intro {
        margin-bottom: 60px;
    }

    .mySlides {
        box-shadow: 0 0 48px 30px rgba(0, 0, 0, 1) inset;
    }

    .row-dot {
        margin-top: -70px;
    }

    .dot {
        height: 2px;
        width: 30px;
        margin: 1px;
    }

    #menu {
        margin: 10% 7% 25% 7%;
        height: 400px;
    }

    .menu-item {
        font-size: 0.95rem;
        line-height: 2rem;
    }

    .column.menu {
        width: 60%;
    }

    .column.menu-image {
        width: 36%;
        float: right;
    }

    .menu-display {
        height: 390px;
    }

    #googleMap {
        height: 400px;
    }

    .back {
        font-size: 0.8rem;
        display: block;
        margin-top: 10px;
        width: 100px;
    }
}

/* large screen */
@media only screen and (min-width: 1200px) {

    .thumb1:hover::before {
        content: url('thumb/thumb1.png');
        top: -100px;
        left: -55px;
        height: 84px;
        position: absolute;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.88);
    }

    .thumb2:hover::before {
        content: url('thumb/thumb2.png');
        top: -100px;
        left: -55px;
        height: 84px;
        position: absolute;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.88);
    }

    .thumb3:hover::before {
        content: url('thumb/thumb3.png');
        top: -100px;
        left: -55px;
        height: 84px;
        position: absolute;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.88);
    }

    .thumb4:hover::before {
        content: url('thumb/thumb4.png');
        top: -100px;
        left: -55px;
        height: 84px;
        position: absolute;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.88);
    }
}
#location {
    margin-top: 100px;
}
.location-info {
    margin-top: 40px;
}

.location-contact-hours p {
    font-size: 1.1rem;
    line-height: 34px;
}

.location-contact-hours p {
    line-height: 34px;
    letter-spacing: 0;
}

.footer {
    display: flex;
    max-width: 1225px;
    margin: auto;
    margin-top: 40px;
    border-top: 1px #ffffff solid;
}

.footer .footer-item {
    width: 50%;padding: 20px 0 ;
    font-size: 20px;
}

.text-right {
    text-align: right !important;
}