@font-face {
	src: url(../fonts/SharpGroteskSmBold10.ttf);
	font-family: sharp-grotesk;
}

body {
    overflow-x: hidden;
}

.main-menu {
	width: 100%;
	height: 100vh;
	opacity: 0;
    visibility: hidden;
    padding: 155px 0 100px;
}

.nav-open .main-menu {
	opacity: 1;
	visibility: visible;
	background: #D56F3E;
}

.nav-open {
	overflow: hidden;
}

.nav-open .main-menu {
    overflow-y: auto;
}

.main-menu .nav li a {
	color: white;
    font-size: 90px;
    line-height: 80px;
	font-family: "sharp-grotesk", sans-serif;
	text-align: center;
	text-transform: uppercase;
}

.main-menu .nav li {
	opacity: 0;
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
	-webkit-animation-timing-function: cubic-bezier(.45, .005, 0, 1);
	-moz-animation-timing-function: cubic-bezier(.45, .005, 0, 1);
	-o-animation-timing-function: cubic-bezier(.45, .005, 0, 1);
	animation-timing-function: cubic-bezier(.45, .005, 0, 1);
}

.nav-open .main-menu .nav li {
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform .2s, opacity .2s;
	transition: transform .2s, opacity .2s;
}

.main-menu .nav li.delay-1 {
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.main-menu .nav li.delay-2 {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.main-menu .nav li.delay-3 {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.main-menu .nav li.delay-4 {
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.main-menu .nav li.delay-5 {
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.navbar {
    background: transparent !important;
    padding: 30px 15px 0 15px;
}

#nav-icon1 {
    width: 30px;
    height: 12px;
    position: relative;
    z-index: 1111;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
  
#nav-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
  
#nav-icon1 span:nth-child(1) {
    top: 0px;
}
  
#nav-icon1 span:nth-child(2) {
    top: 9px;
}
  
#nav-icon1.open span:nth-child(1) {
    top: 3px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
  
#nav-icon1.open span:nth-child(2) {
    top: 3px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.navbar-brand {
    z-index: 1111;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}  

.navbar .left-menu .nav-link {
    margin-right: 30px;
}

.navbar .nav-link {
    font-size: 24px;
    line-height: 31px;
    color: white !important;
    letter-spacing: 1px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
}

.navbar .btn-book, .main-menu .btn-book {
    display: table-cell;
    vertical-align: middle;
    width: 160px;
    height: 66px;
    padding-top: 12px;
    color: white;
    border: 2px solid white;
    border-radius: 0px;
    font-size: 24px !important;
    line-height: 31px !important;
    color: white !important;
    letter-spacing: 1px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

.navbar .btn-book:hover, .main-menu .btn-book:hover {
    background-color: white;
    color: black !important;
}

.navbar .social-icon {
    margin-top: 10px;
    z-index: 1111;
}

.left-to-right {
    position: relative;
}

.left-to-right:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 1px solid white;
    transition: 0.4s ease-in-out;
}

.left-to-right:hover:after {
    width: 100%;
}

.left-to-right:after {
    border-bottom: 2px solid white;
}

.navbar .social-icon a i {
    font-size: 20px;
    transition: all .3s ease-in-out;
}

.navbar .social-icon a:hover i {
    color: #D56F3E;
}

header {
    background: url(../images/main-header-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    min-width: 100%;
}

header .header-arrow {
    position: relative;
    bottom: 62px;
    cursor: pointer;
    animation-duration: 1.3s;
    animation-delay: .8s;
    animation-iteration-count: infinite;
}

.banner {
    min-height: 808px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner h1 {
    color: #ffffff;
    font-size: 120px;
    line-height: 110px;
    text-transform: uppercase;
    font-family: "sharp-grotesk", sans-serif;
}

.banner h1 span {
    color: #D56F3E;
}

.banner h6 {
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-family: "neue-haas-unica", sans-serif;
}


/* About */
.about {
    background-color: #000000;
    color: white;
    padding: 108px 12px 58px 12px;
}

.about img {
    width: 60%;
    margin-top: 20px;
}

.about .col-lg-6 img:nth-child(2) {
    position: relative;
    z-index: 10;
    margin-top: -20%;
    left: 25%;
}

.about h2 {
    color: white;
    font-family: "sharp-grotesk", sans-serif;
    font-size: 86px;
    line-height: 80px;
    text-transform: uppercase;
}

.about h2 span {
    color: #D56F3E;
}

.about h6 {
    font-family: "neue-haas-unica", sans-serif;
    font-size: 24px;
    line-height: 38px;
    max-width: 460px;
    margin-top: 22px;
}

.about p {
    margin-top: 36px;
    max-width: 460px;
    font-size: 18px;
    line-height: 27px;
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 400;
}


/* Menus */
.menus {
    position: relative;
    background-image: url(../images/eat-menu-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    min-width: 100%;
    color: white;
    transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
}

.menus #second-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all .8s ease-in-out;
}

.menus .row {
    position: relative;
    z-index: 10;
}

.menus h2 {
    font-size: 200px;
    line-height: 150px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
}

.menus p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    max-width: 380px;
    margin: 65px auto 0 auto;
    font-family: "neue-haas-unica", sans-serif;
}

.menus .btn-view {
    background-color: transparent;
    border-radius: 0px;
    border: 2px solid #D56F3E;
    width: 160px;
    height: 66px;
    margin-top: 30px;
    transition: all .2s ease-in-out;
}

.menus .btn-view a {
    font-size: 24px;
    letter-spacing: 1px;
    color: white;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
    text-decoration: none !important;
}

.menus .btn-view:hover {
    background-color: #D56F3E;
}

#eat, #drink {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menus #eat-content, .menus #drink-content {
    opacity: 0;
}

.menus #eat-title, .menus #drink-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.menus #eat-title:after, .menus #drink-title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 70px;
    height: 8px;
    background: #D56F3E;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes moveUp {
    from {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    to {
        left: 50%;
        top: 10%;
        transform: translate(-50%, -10%);
    }
}

@keyframes moveDown {
    from {
        left: 50%;
        top: 10%;
        transform: translate(-50%, -10%);
    }
    to {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        pointer-events: none;
    }
    to {
        opacity: 1;
        pointer-events: all;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        pointer-events: all;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* Opening Hours */
.opening-hours {
    background-image: url("../images/hours-bg.png");
    background-color: rgb(0,0,0);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding: 170px 0;
    min-height: 100vh;
    color: white;
}

.opening-hours h1 {
    font-size: 120px;
    line-height: 100px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
}

.opening-hours .opening-hours-container {
    max-width: 620px;
    margin: 41px auto 0 auto;
}

.opening-hours .opening-hours-container .opening-hours-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.opening-hours .opening-hours-container .opening-hours-item .hr-dashed {
    position: absolute;
    top: 25px;
    left: 80px;    
    right: 160px;
    border-bottom: 1px dashed white;
    opacity: 40%;
}

.opening-hours .opening-hours-container .opening-hours-item:nth-child(1) .hr-dashed {
    right: 90px;
}

.opening-hours .opening-hours-container .opening-hours-item h6 {
    font-size: 32px;
    line-height: 54px;
    text-transform: uppercase;
    font-family: "sharp-grotesk", sans-serif;
}

.opening-hours .opening-hours-container .opening-hours-item h6 span {
    color: #D56F3E;
}


/* Location */
.location .left-side {
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 815px;
    color: white;
    outline: 1px solid #3b3b3b;
    outline-offset: -20px;
}

.location .left-side h2 {
    font-size: 120px;
    line-height: 100px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
}

.location .left-side h6 {
    font-size: 20px;
    line-height: 30px;
    max-width: 374px;
    text-align: center;
    font-family: "neue-haas-unica", sans-serif;
    margin: 36px 0;
}

.location .left-side h6 a {
    color: #D56F3E;
}

.location .left-side .btn-book {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    background-color: transparent;
    border-radius: 0px;
    border: 2px solid #D56F3E;
    width: 160px;
    height: 66px;
    color: white;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    line-height: 31px;
    text-decoration: none !important;
    transition: all .2s ease-in-out;
}

.location .left-side .btn-book:hover {
    background: #D56F3E;
}

#map {
	width: 100%;
	height: 815px;
}

/* Footer */
footer {
    background-color: #242424;
    padding: 80px 0 58px 0;
    color: white;
}

footer h2 {
    font-size: 120px;
    line-height: 100px;
    font-family: "sharp-grotesk", sans-serif;
    text-transform: uppercase;
}

footer p {
    font-size: 20px;
    line-height: 30px;
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 300;
    max-width: 460px;
    margin: 34px auto;
}

footer .input-group {
    max-width: 340px;
    margin: 0 auto;
    border: 1px solid #3b3b3b;
    padding: 15px;
}

footer input {
    border-radius: 0px !important;
    background-color: transparent !important;
    border: none !important;
}

footer input:focus {
	outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

footer input,
footer input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 30px;
	font-family: "neue-haas-unica", sans-serif;
}

footer input {
    color: white !important;
}

footer input::-webkit-input-placeholder {
    color: white;
    opacity: 50%;
}

footer .arrow-btn {
    background-color: transparent;
    border: none;
}

footer .arrow-btn i {
    color: #D56F3E;
}

footer .social-media {
    margin: 41px 0 120px 0;
}

footer .social-media a {
    text-decoration: none !important;
}

footer .social-media i {
    width: 47px;
    height: 47px;
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    padding-top:15px;
    color: white;
    font-size: 17px;
    margin: 0 5px;
    transition: all .2s ease-in-out;
}

footer .social-media a:hover i {
    background: #D56F3E;
}

footer hr {
    background-color: #3b3b3b;
}

footer h6 {
    font-size: 14px;
    line-height: 30px;
    font-family: "neue-haas-unica", sans-serif;
    margin-top: 57px;
    font-weight: 300;
}

footer h6 a {
    color: white !important;
    font-weight: bold;
}

footer .privacy {
    font-family: "neue-haas-unica", sans-serif;
    color: white !important;
    font-size: 14px;
}

footer .alert {
    max-width: 370px;
    margin: 20px auto;
    display: none;
}

.hr-line {
    width: 70px;
    height: 8px;
    background: #D56F3E;
    margin: 0 auto 27px auto;
}

/* Media Queries*/
@media (min-width: 992px) {
    .indicators {
        position: fixed;
        right: 84px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1111;
    }
    .indicators .dot {
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        margin: 34px 0;
        position: relative;
        cursor: pointer;
    }
    .indicators .dot.active:after {
        content: '';
        display: block;
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: -10px;
        right: -10px;
        border-radius: 30px;
        border: 2px solid #D56F3E;
    }
    .about img {
        margin-top: 0px;
        width: 100%;
    }
    .about .col-lg-6 img:nth-child(2) {
        position: relative;
        z-index: 10;
        margin-top: -40%;
        left: 45%;
    }
}

@media (min-width: 769px) {
    @keyframes moveUp {
        from {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        to {
            left: 50%;
            top: 30%;
            transform: translate(-50%, -30%);
        }
    }
    
    @keyframes moveDown {
        from {
            left: 50%;
            top: 30%;
            transform: translate(-50%, -30%);
        }
        to {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }
    #eat, #drink {
        position: relative;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menus:before {
        content: '';
        position: absolute;
        display: block;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 1px;
        height: 480px;
        background: white;
        opacity: 30%;
        z-index: 10;
    }
}

@media (min-width: 1200px) {
    .navbar {
        padding: 50px 78px 0 78px;
    }
    .navbar .social-icon:nth-child(2) {
        margin-right: 40px;
    }
    .navbar .social-icon a i {
        font-size: 25px;
    }
    .banner h1 {
        line-height: 255px;
        font-size: 200px;
    }
    .about {
        padding: 234px 0 195px 0;
    }
    .about h2 {
        font-size: 120px;
        line-height: 153px;
    }
    .about .col-lg-6:nth-child(2) {
        padding-left: 100px;
    }
    .location .left-side {
        outline-offset: -40px;
    }
    .location .left-side h6 {
        max-width: 450px;
    }
    footer {
        padding: 220px 0 80px 0;
    }
    footer .social-media {
        margin: 51px 0 188px 0;
    }
}  

@media (max-height: 900px) {
    .menus #eat-content, .menus #drink-content {
       margin-top: 140px;
    }
    .menus #eat-title:after, .menus #drink-title:after {
        bottom: -40px;
    }
}