@font-face {
    font-family: 'bayshoreregular';
    src: url('fonts/bayshore-webfont.woff2') format('woff2'), url('fonts/bayshore-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('fonts/bebasneue-webfont.woff2') format('woff2'), url('fonts/bebasneue-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    html:before {
        content: ' ';
        display: block;
        background-image: url('../img/chalkboard.jpg');
        background-position: center center;
        background-size: cover;
        height: 100vh;
        width: 100vw;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        position: fixed;
        z-index: -10;
    }
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background-color: #222121;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    transition: all 300ms;
}

h1 {
    font-family: 'bebas_neueregular';
    font-size: 88px;
    margin: 0px;
    letter-spacing: normal;
    font-weight: normal;
    line-height: 0.9em;
}

h2 {
    font-family: 'bayshoreregular', Arial, Helvetica, sans-serif;
    color: #f59f08;
    font-size: 80px;
    letter-spacing: normal;
    font-weight: 400;
    margin: 0;
}

h3 {
    font-family: 'bebas_neueregular', Arial, Helvetica, sans-serif;
    font-size: 40px;
    letter-spacing: normal;
    font-weight: normal;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    font-family: 'bebas_neueregular', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: normal;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
}

h5 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.125em;
    margin: 20px 0 10px 0;
    letter-spacing: normal;
    line-height: 27px;
    display: block;
}

ul {
    margin: 0 0 10px 0;
    padding: 0;
}

li {
    padding: 0;
}

ul li {
    list-style-type: none;
}

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

@keyframes neon-animation {
    0% {
        opacity: 1;
    }
    15% {
        opacity: .5
    }
    25% {
        opacity: 1;
    }
    35% {
        opacity: .5
    }
    45% {
        opacity: 1;
    }
    64% {
        opacity: 1;
    }
    65% {
        opacity: .5
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-img {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}


/* Common */

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 5%;
}

@media screen and (max-width: 991px) {
    h2,
    h1 {
        display: block;
        font-size: 60px;
    }
    p {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
}

/* navigacija */

.panel {
    position: fixed;
    -webkit-transform: translateX(-15.625em);
    -moz-transform: translateX(-15.625em);
    transform: translateX(-15.625em);
    width: 15.625em;
}

@media screen and (min-width: 992px) {
    .hamburger {
        display: none;
    }
    #menu {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .top-menu {
        display: none;
    }
    .wrap {
        position: relative;
    }
}


/* desktop nav */

.top-menu {
    width: 100%;
    padding: 26px 0;
    position: fixed;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 800px;
    z-index: 10;
}

.top-menu ul {
    margin: 0;
}

.top-navbar {
    text-align: center;
}

.top-menu li {
    display: inline-block;
}

.tm-scroll {
    width: 100%;
    box-shadow: 0px 10px 17px 1px rgba(22, 22, 22, 0.7);
    background-color: rgba(59, 59, 59, 0.45);
    border-bottom: 1px solid rgba(20, 20, 20, 0.5);
}

.top-navbar a {
    font: 600 16px/16px 'Catamaran', Arial, sans-serif;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 12px 25px 4px 25px;
    background-color: transparent;
    padding: 23px 0px;
    position: relative;
}

.top-navbar a:hover {
    color: #f59f08;
    transition: all 200ms ease-in;
}

.tm-active a {
    color: #f59f08;
    transition: all 200ms ease-in;
}

.tm-active a:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #f59f08;
}


/* mobile nav */

#menu {
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100;
    background-color: #222;
}

.menu-link {
    position: relative;
    display: inline-block;
}

.mask-active {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 11;
}

.side-navbar {
    width: 85%;
    text-align: center;
    margin: 20px auto 0 auto;
}

.side-navbar li {
    width: 100%;
    border-bottom: 1px solid rgba(102, 102, 102, 0.863);
}

.side-navbar li:last-child {
    border-bottom: none;
}

.side-navbar a {
    display: block;
    box-sizing: border-box;
    color: #e9e9e9;
    font: 600 16px 'Catamaran', Arial, sans-serif;
    letter-spacing: 1.5px;
    background-color: transparent;
    padding: 10px 0;
    -webkit-tap-highlight-color: transparent;
}

.side-navbar a:hover,
.side-navbar a:focus,
.side-navbar a:active {
    color: #f59f08;
}

#side-logo img {
    box-sizing: border-box;
    padding: 0 0 2em 0;
    max-width: 45%;
}

.soc-icons a {
    color: #e9e9e9;
    font-size: 1.6em;
    display: inline-block;
    padding: 1em 0.6em;
}

.hamburger {
    height: 30px;
    background-color: transparent;
    position: fixed;
    z-index: 99;
    top: 5px;
    padding-left: 5px;
}

.hamburger i {
    padding: 0.3em;
    color: #e9e9e9;
}

@media screen and (max-width:991px) {
    .body-wrap {
        overflow-x: hidden;
    }
}


/* Hero header */

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(59, 59, 59, 0.45);
}

#myHeader {
    height: 110vh;
    width: 100%;
    position: relative;
}

.intro {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: transparent url('../img/hero-bg.jpg') no-repeat scroll center center;
    background-size: cover;
}

.hero-logo-info h2 {
    text-shadow: 0px 0px 25px #f59f08;
    margin-bottom: 20px;
}

.hero-logo-info {
    text-align: center;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 39%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero-image {
    max-width: 600px;
    -webkit-filter: drop-shadow(0px 0px 5px #222);
    filter: drop-shadow(0px 0px 15px #222);
}

#hero-adress {
    margin-top: 40px;
    width: 100%;
}

.hero-logo-info h5 {
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    text-shadow: 0px 0px 15px #222;
}

.cap {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.cap a {
    display: block;
    box-sizing: border-box;
}

#cap-btn {
    width: 90px;
    animation: pulse 1s infinite both;
}

#cap-btn:hover {
    -webkit-filter: drop-shadow(0px 0px 8px #f59f08);
    filter: drop-shadow(0px 0px 8px #f59f08);
}

@media screen and (max-width: 991px) {
    .hero-logo-info {
        top: 35%;
    }
    .hero-logo-info h1 {
        font-size: 55px;
    }
    .hero-logo-info h2 {
        font-size: 80px;
    }
    .hero-logo-info h3 {
        font-size: 20px;
    }
    .hero-image {
        width: 100%;
    }
    #hero-adress {
        margin-top: 2.5em;
    }
    #hero-adress h5 {
        font-size: 1.2em;
    }
    #cap-btn {
        max-width: 80px;
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .hero-logo-info {
        top: 48%;
    }
    .cap {
        display: none;
    }
}

@media screen and (min-width: 1080px) and (orientation: portrait) {
    #myHeader {
        height: 60vh;
    }
    .cap {
        top: 70%;
    }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    .hero-image {
        max-width: 350px;
    }
    #hero-adress {
        margin-top: 1em;
    }
    .hero-logo-info h2 {
        margin-bottom: -2px;
    }
}


/* chalkboard */

.board {
    width: 100%;
    background: transparent url('../img/chalkboard.jpg') no-repeat fixed;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    .board {
        background-image: none;
    }
}


/* prva tekstura */

.texture-container {
    width: 100%;
    height: 80vh;
    position: relative;
    min-height: 550px;
    margin-top: 3.5rem;
}

.first-container {
    margin-top: -15vh!important;
}

#texture-light {
    background: transparent url('../img/texture-light.jpg') no-repeat scroll center;
    background-size: cover;
}

.texture-bg {
    width: 80%;
    height: 100%;
    min-height: 550px;
    position: relative;
    left: 0;
    box-shadow: 0 5px 150px #000;
}

.beerglass {
    width: 25%;
    height: 80vh;
    min-height: 550px;
    max-height: 120%;
    position: absolute;
    right: 0;
    top: -10%;
    z-index: 5;
    background: transparent url('../img/glass.png') no-repeat;
    background-size: contain;
    -webkit-filter: drop-shadow(0 5px 150px #000);
    filter: drop-shadow(0 5px 50px #000);
}

.beerbottle {
    width: 25%;
    height: 90vh;
    min-height: 550px;
    max-height: 120%;
    position: absolute;
    right: 0;
    top: -10%;
    z-index: 5;
    background: transparent url('../img/bottle.png') no-repeat;
    background-size: contain;
    -webkit-filter: drop-shadow(0 5px 150px #000);
    filter: drop-shadow(0 5px 50px #000);
}

.content-bckg {
    position: absolute;
    height: 90%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    margin-right: 5%;
}

.about-bckg {
    background-image: url('../img/chick.png');
    width: 40%;
}

.events-bckg {
    background-image: url('../img/events-draw.png');
    width: 40%;
}

.texture-content {
    position: absolute;
    z-index: 4;
    max-width: 50%;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.texture-content h2 {
    text-shadow: 0px 0px 22px #42210B;
}

.texture-content p {
    font-weight: 600;
    letter-spacing: 1px;
}

@media screen and (max-width: 991px) {
    .first-container {
        margin-top: -100px!important;
    }
    .beerglass {
        width: 25%;
        background-size: cover;
        height: 110%;
    }
    .beerbottle {
        width: 25%;
        background-size: cover;
        height: 110%;
    }
    #texture-light {
        width: 100%;
    }
    .texture-content {
        max-width: 70%;
    }
    .content-bckg {
        display: none;
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .first-container {
        margin-top: 0!important;
    }
}

@media screen and (max-width: 1024px) {
    .texture-container {
        height: 550px;
    }
}


/* text */

.text {
    color: #fff;
    margin-top: 3em;
    position: relative;
    z-index: 2;
}

.text:after {
    content: "";
    clear: both;
    display: table;
}

.col-50 {
    width: 45%;
    float: left;
    display: block;
    padding: 0 5% 0 0;
}

@media screen and (max-width: 767px) {
    .col-50 {
        width: 90%;
    }
    .first-container {
        margin-top: -100px;
    }
}

@media screen and (max-width: 991px) {
    .text {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    .col-50 {
        width: 45%;
    }
}


/* About + Neon */

#about {
    background: transparent url('../img/hrana.JPG') no-repeat scroll center;
    background-size: 1150px 738px;
}

.neon {
    float: left;
    position: relative;
    margin-left: 0;
}

.neon img {
    animation: neon-animation 2s infinite;
    animation-delay: 5s;
    position: absolute;
}

.present-container {
    width: 90%;
    margin: 3.5rem auto 0 auto;
    height: 80vh;
    min-height: 550px;
}

.present-container::after {
    content: '';
    display: table;
    clear: both;
}

.photo-title {
    width: 100%;
    max-width: 400px;
    float: right;
    position: relative;
    max-height: 100%;
}

.photo-title h1 {
    color: #fff;
    text-shadow: 0px 0px 25px #222;
    display: block;
}

.photo-title h2 {
    text-shadow: 0px 0px 10px #000;
    display: block;
}

@media screen and (max-width:1366px) {
    .neon img {
        width: 350px;
    }
}

@media screen and (max-width:991px) {
    .photo-title {
        width: 280px;
    }
    .neon img {
        width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .photo-title {
        padding: 10% 0 0 0;
        margin: 0;
        float: none;
    }
    .neon {
        float: none;
    }
    .neon img {
        width: 200px;
        position: static;
    }
    #about {
        background-size: cover;
        background-position: center;
    }
    .present-container {
        width: 90%;
        margin: 2rem auto 0 auto;
        filter: none;
        -webkit-filter: none;
    }
    .text {
        width: 95%;
    }
}

@media screen and (max-width: 1024px) {
    .present-container {
        height: 550px;
    }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
    .present-container {
        height: 600px!important;
    }
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    .photo-title {
        padding: 0;
    }
}


/* Drinks */

#drinks h1 {
    color: #fff;
}

#drinks p {
    color: #fff;
}

#texture-board {
    background: transparent url('../img/texture-right.jpg') no-repeat scroll center center;
    background-size: cover;
    z-index: 1;
}

.beer-doodle {
    width: 25%;
    height: 80vh;
    max-height: 100%;
    position: absolute;
    right: 2%;
    top: 0;
    background: transparent url('../img/ice-glass.png') no-repeat scroll;
    background-size: contain;
}

@media screen and (max-width:991px) {
    #texture-board {
        width: 100%;
        margin-top: 2rem;
    }
    .beer-doodle {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
    #texture-board {
        height: 600px!important;
    }
    .beer-doodle {
        width: 35%;
    }
}


/* Beer Grid */

.beer-section {
    display: block;
    margin: 3.5rem auto 0 auto;
    max-width: 1150px;
    width: 90%;
    position: relative;
    z-index: 1;
}

.grid {
    transition: height 300ms ease-in-out;
}

.piva {
    width: 28%;
    background-color: transparent;
    padding: 0;
}

.piva h3 {
    border-bottom: 4px solid #fff;
}

.piva p {
    color: #fff;
    margin-bottom: 20px;
}

.grid-sizer {
    width: 28%;
}

.gutter-sizer {
    width: 8%;
}

.beer-section-title {
    border-bottom: 3px solid #fff;
    margin-bottom: 10px;
}

.beer-section-title h1 {
    color: #fff;
}

.beer-section-title h2 {
    text-shadow: 0px 0px 25px #f59f08;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 30px;
}

.button {
    font-family: 'bebas_neueregular', Arial, Helvetica, sans-serif;
    font-size: 40px;
    letter-spacing: normal;
    font-weight: normal;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 0 10px 0 0;
    margin: auto;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.button:hover {
    color: #f59f08;
    transition: all 200ms ease-in;
}

.is-checked {
    color: #f59f08;
}

@media screen and (max-width: 991px) {
    .button-group {
        margin-bottom: 20px;
    }
    .button {
        margin-top: 5px;
        margin-bottom: 0;
    }
    .beer-section {
        margin: 2rem auto 0 auto;
    }
    .button-group {
        flex-flow: row wrap;
        align-content: flex-start;
        justify-content: flex-start;
    }
    .button {
        padding: 0 10px;
    }
    .first-btn {
        margin-left: auto !important;
    }
    .last-btn {
        margin-right: auto !important;
    }
    .piva {
        width: 45%;
    }
    .piva h3 {
        margin-top: 0;
    }
}

@media screen and (max-width: 550px) {
    .piva {
        width: 100%;
    }
}

.karta-pica p {
    color: #fff;
    font-style: italic;
}

.karta-pica a {
    color: #fff;
    text-decoration: underline;
}
/* Food Pic */

#food {
    background: transparent url('../img/kuhinja.jpg') no-repeat center;
    background-size: 1150px 738px;
}

@media screen and (max-width:768px) {
    #food {
        background-size: cover;
        background-position: center;
    }
}


/* Food Grid */

.menu-section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding-bottom: 150px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, 300px);
    grid-column-gap: 8%;
    grid-row-gap: 50px;
    -webkit-margin-collapse: separate;
}

.menu-section div,
h3,
h4,
p {
    -webkit-margin-collapse: separate;
}

.dish {
    background-color: transparent;
    padding: 0;
    cursor: default;
}

.dish:nth-child(3n+2) {
    position: relative;
    top: 100px;
}

@media screen and (min-width:992px) {
    .dish:hover {
        background: transparent url('../img/burger.jpg') no-repeat;
        background-size: contain;
        width: 120%;
        height: 400px;
        margin-left: -10%;
        animation: fade-img .5s ease-in;
    }

    .cepkana:hover {
        background: transparent url('../img/cepkana.jpg') no-repeat;
    }

    .rebarca:hover {
        background: transparent url('../img/rebarca.jpg') no-repeat;
    }

    .vesalica:hover {
        background: transparent url('../img/vesalica.jpg') no-repeat;
    }

    .burger:hover {
        background: transparent url('../img/burger.jpg') no-repeat;
    }

    .gulas:hover {
        background: transparent url('../img/gulas.jpg') no-repeat;
    }

    .krilca-sos:hover {
        background: transparent url('../img/krilca-sos.jpg') no-repeat;
    }

    .krilca-dimljena:hover {
        background: transparent url('../img/krilca-dimljena.jpg') no-repeat;
    }

    .batak:hover {
        background: transparent url('../img/batak.jpg') no-repeat;
    }

    .kobaja-dimljena:hover {
        background: transparent url('../img/kobaja-dimljena.jpg') no-repeat;
    }

    .kobaja-konjska:hover {
        background: transparent url('../img/kobaja-konjska.jpg') no-repeat;
    }

    .kobaja-mangulica:hover {
        background: transparent url('../img/kobaja-mangulica.jpg') no-repeat;
    }

    .kobaja-pileca:hover {
        background: transparent url('../img/kobaja-pileca.jpg') no-repeat;
    }

    .kobaja-sir:hover {
        background: transparent url('../img/kobaja-sir.jpg') no-repeat;
    }

    .pastrmka:hover {
        background: transparent url('../img/pastrmka.jpg') no-repeat;
    }
    
    .mirocki:hover {
        background: transparent url('../img/mirocki.jpg') no-repeat;
    }

    .nacosi:hover {
        background: transparent url('../img/nacosi.jpg') no-repeat;
    }

    .luk:hover {
        background: transparent url('../img/luk.jpg') no-repeat;
    }

    .krompir:hover {
        background: transparent url('../img/krompir.jpg') no-repeat;
    }

    .dish:hover>.acc-title {
        opacity: 0;
    }
    .dish:hover>.accordion-content {
        opacity: 0;
    }
    .img-dish {
        display: none;
    }
    .accordion-content {
        display: block!important;
    }
}

.dish h3 {
    border-bottom: 4px solid #fff;
}

.dish p {
    color: #fff;
}


@media screen and (max-width: 991px) {
    .menu-section {
        display: block;
        padding: 0;
    }
    .dish {
        width: 100%;
    }
    .dish:nth-child(3n+2) {
        position: static;
    }
    .dish h3 {
        margin: 0;
        padding: 6px 0;
    }
    .accordion-content {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .dish h3::after {
        content: "+";
        color: #f59f08;
        font-size: 1.2em;
        font-weight: bold;
        position: absolute;
        right: 0;
    }
    .img-dish {
        width: 100%;
        height: auto;
    }
}


/* Events */

#events {
    margin-top: 3.5rem;
}

.e-heading {
    position: relative;
    margin-left: 5%;
    top: 100px;
}

.e-heading h2 {
    text-shadow: 0px 0px 25px #f59f08;
}

.e-slider-wrapper {
    margin-left: 5%;
    margin-bottom: 5%;
}

.e-img {
    width: 70%;
}

.slide-description {
    margin-top: 100px;
    width: 28%;
    float: left;
    padding-right: 2%;
}

.slide-description h1 {
    color: #fff;
}

.slide-description p {
    color: #fff;
}

.e-slide {
    margin-right: 20px;
    width: 90%;
    max-width: 1150px;
    float: left;
    opacity: 0.4;
}

.e-slide img {
    box-shadow: 0 5px 50px #000;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.is-selected {
    opacity: 1;
}

.is-selected img {
    -webkit-filter: none;
    filter: none;
}

@media screen and (max-width: 991px) {
    #events {
        margin-top: 2rem;
    }
    .e-heading {
        top: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .e-slider-wrapper {
        margin-bottom: 0;
    }
    .e-slide {
        width: 95%;
    }
    .e-slide img {
        box-shadow: none;
    }
    .slide-description {
        margin: 0;
        width: 100%;
    }
    .slide-description p {
        margin: 5px 0;
    }
    .e-img {
        margin-top: 15px;
        width: 100%;
    }
}


/* Gallery */

.gallery-wrapper {
    margin-top: 12rem;
    height: 80vh;
    min-height: 600px;
    position: relative;
    box-shadow: 0 5px 150px #000;
    background: transparent url('../img/gallery-bg.png') no-repeat scroll 0 center;
    background-size: cover;
}

.gallery-title {
    position: absolute;
    top: -130px;
    width: 100%;
    z-index: 8;
}

.gallery-title img {
    width: 100%;
    margin: 0 auto;
    animation: neon-animation 2s infinite;
    animation-delay: 5s;
}

.gallery-slider {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.g-slide {
    margin-right: 50px;
    opacity: 0.6;
}

.is-selected {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .gallery-wrapper {
        margin-top: 4.5rem;
        box-shadow: none;
    }
    .gallery-title {
        top: -20px;
    }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
    .gallery-wrapper {
        max-height: 650px;
    }
}

.contact {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 3.5rem;
    z-index: 1;
}

.contact h1 {
    color: #fff;
}

.map-container {
    height: 65vh;
    width: 90%;
    max-width: 1150px;
    margin: 3.5rem auto 0 auto;
    position: relative;
}

.map {
    width: 90%;
    margin: 0;
    padding: 0;
    height: 100%;
    min-width: 300px;
    position: absolute;
    right: 0;
    background-color: transparent;
}

.contact-content {
    float: left;
    position: relative;
    width: 300px;
}

.contact-content h1,
.contact-content h3 {
    color: #fff;
    text-shadow: 0px 0px 25px #000;
}

.contact-content h2 {
    text-shadow: 0px 0px 25px #f59f08;
}

@media screen and (max-width: 768px) {
    .map-container {
        height: auto;
    }
    .map {
        height: 500px;
        width: 100%;
        position: relative;
    }
    .contact-content {
        text-align: center;
        float: none;
        margin: 0 auto;
        top: 20px;
    }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
    .map-container {
        height: 550px;
    }
}


/* Footer */

#myFooter {
    background-color: transparent;
    width: 100%;
    margin-top: 3.5rem;
    padding-bottom: 30px;
}

.foo-wrapper {
    margin: 0 auto;
    width: 90%;
    max-width: 1150px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 25%;
    max-width: 250px;
    min-width: 120px;
    margin-top: 30px;
    text-align: justify;
}

.logo img {
    max-height: 220px;
}

#food-icon {
    margin: 50px 0;
    text-align: center;
}

#food-icon i {
    color: #ffffff;
    padding: 0 10px;
}

.hours {
    width: 35%;
    max-width: 400px;
    min-width: 300px;
}

.hours h3 {
    text-align: center;
}

.hours p {
    margin: 5px 0;
}

.hours h4 {
    display: block;
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
    text-align: center;
    padding-top: 3px;
}

.day,
.hour {
    color: #ffffff;
    font-weight: 600;
    display: block;
}

.day:after {
    content: "";
    height: 3px;
    width: 50%;
    background-color: #ffffff;
    position: relative;
    display: block;
    bottom: 15px;
    margin: 0 auto;
    clear: both;
}

.hour {
    color: #ffffff;
    float: right;
}

.get-social {
    color: #ffffff;
    width: 300px;
    text-align: center;
}

.get-social a,
.get-social h4 {
    display: inline-block;
    color: #ffffff;
}

.get-social h4 {
    padding-left: 10px;
}

.get-social a:hover>i,
.get-social a:hover>h4 {
    color: #f59f08;
    transition: all 200ms ease-in;
}

.footer-si {
    margin-top: 30px;
}

@media screen and (max-width: 1080px) {
    .logo {
        max-width: 170px;
    }
    .fa-3x {
        font-size: 2em;
    }
    #food-icon h4 {
        font-size: 18px;
        ;
    }
}

@media screen and (max-width:767px) {
    .footer-si {
        margin-top: 0;
    }
    .foo-wrapper {
        justify-content: center;
    }
    .logo {
        display: none;
    }
    .hours {
        width: 100%;
    }
}

.copy {
    font-size: 12px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.copy button {
    background-color: transparent;
    border: #ffffff solid 4px;
    border-radius: 10px;
    position: absolute;
    right: 5%;
    bottom: 20px;
}

.copy i {
    color: #ffffff;
    padding: 8px 6px;
}

.copy button:hover {
    border-color: #f59f08;
    transition: all 200ms ease-in;
}

.copy button:hover>a>i {
    color: #f59f08;
    transition: all 200ms ease-in;
}

@media screen and (max-width: 991px) {
    #myFooter {
        margin-top: 2rem;
    }
    .copy button {
        bottom: 0;
    }
    .copy p {
        font-size: 12px;
        line-height: 12px;
    }
}


/*! Flickity v2.1.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.flickity-button {
    position: absolute;
    cursor: pointer;
    border: none;
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none
}

.flickity-button-icon {
    fill: none;
    display: none;
}

.flickity-prev-next-button {
    width: 100px;
    height: 45px;
    left: 0;
}

#gallery .flickity-prev-next-button {
    left: 20%;
    bottom: 35px;
}

.flickity-prev-next-button:active {
    opacity: 0.4;
}

.flickity-prev-next-button.previous {
    background: transparent url('../img/arrow-prev.png') no-repeat scroll center;
    background-size: contain;
}

.flickity-prev-next-button.next {
    margin-left: 120px;
    background: transparent url('../img/arrow-next.png') no-repeat scroll center;
    background-size: contain;
}

.flickity-page-dots {
    display: none;
}

.jelovnik {
    margin: 0 auto;
    /*padding: 100px 0 20px 0; */
    width: 90%;
    max-width: 1150px;
}

.menu-page {
    padding: 100px 0 50px 0;
    margin: 0 auto;
    text-align: left;
    width: 90%;
    max-width: 890px;
}

.menu-page p {
    color: #ffffff;
}

.jelovnik img {
    width: 100%;
    margin-bottom: 50px;
    box-shadow: 0 5px 150px #000;
}

@media screen and (max-width: 560px) {
.menu-page {
    padding: 40px 0 20px 0;
}

.jelovnik {
    width: 96%;
    padding: 0 0 10px 0;
}
.jelovnik img {
    margin-bottom: 10px;
}
}