@font-face {
    font-family: 'DeliciousHandrawn';
    src: url('../fonts/BigFish.ttf') format('truetype');
    /* You can also include other font formats like woff or woff2 for better cross-browser support */
}

@font-face {
    font-family: 'Sunbeat';
    src: url('../fonts/Sunbeat.ttf') format('truetype');
    /* You can also include other font formats like woff or woff2 for better cross-browser support */
}

@font-face {
    font-family: 'Kavivanar';
    src: url('../fonts/Colby-CdMed.ttf') format('truetype');
    /* You can also include other font formats like woff or woff2 for better cross-browser support */
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideOut {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
html, body * {
    font-size: 23px;
    font-family: "Kavivanar", sans-serif;
    background-color: #ffffff;
}

ul {
    padding: 0;
    background: transparent;
}

li {
    list-style: none;
    float: left;
    position: relative;
    background: transparent;
}

a {
    text-decoration: none!important;
    background: transparent;
}

header {
    position: absolute;
    z-index: 2;
    max-width: 1600px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 25px;
    background-color: transparent;
}

    .logo {
        overflow: hidden;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: -161px -56px;
        width: 82px;
        height: 82px;
        display: block;
        float: left;
        margin-right: 50px;
        /* obrisati */
        background-color: red;
        align-self: center;
    }

    .nav-trigger {
        display: none;
    }

    .nav-main, .nav-foot {
        float: left;
        margin-top: 24px;
        background: transparent;
    }

    .nav-main a, .nav-foot a {
        padding: 0 15px;
        color: rgb(255 255 255);
        font-size: 1rem;
        background: transparent;

        transition: font-size .2s;
    }

    .nav-main a:hover {
        font-size: 1.05rem;
    }

    .nav-main .sub-menu {
        z-index: 200;
        top: 34px;
        left: 0;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        width: 275px;
        padding-top: 40px;
        padding-bottom: 20px;
        background-image: url(../img/nav-bg.svg);
        background-repeat: no-repeat;
        background-position-Y: 20px;
        background-color: transparent;
    }

    .nav-main .sub-menu a {
        color: rgba(255 255 255);
    }
    
    .menu-item-has-children:hover .sub-menu {
        visibility: visible;
        opacity: 1;
    }

    .sub-menu li {
        width: 100%;
    }
    
    /* main */

    .hero {
        background-image: url("../img/pizza.jpg");
        height: 700px;
        background-size: cover;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
        .hero .decor {
            width: 150px;
            height: 100px;
            position: absolute;
            background-image: url(../img/bg-main-white.svg);
            background-color: transparent;
            background-repeat: no-repeat;
        }
        .hero .decor:nth-of-type(2) {
            bottom: 40px;
            left: 34%;
            transform: rotate(210deg);
        }
        .hero .decor:nth-of-type(3) {
            width: 120px;
            height: 80px;
            bottom: 70px;
            left: 39%;
            transform: rotate(260deg);
        }
        .hero .hero-text {
            display: flex;
            justify-content: center;
            flex-direction: column;
            margin: 0 auto;
            text-align: center;
            color: rgb(255 255 255);
            background: transparent;
            text-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
        }

            .hero-text h1 {
                font-size: 3rem;
                background: transparent;
                font-family: 'Sunbeat';
            }

            .hero-text p {
                font-size: 1.5rem;
                background: transparent;
                font-family: "DeliciousHandrawn";
            }
        
            .separator-bottom {
                position: absolute;
                bottom: 0;
                width: 100%;
                height: 130px;
                background-image: url(../img/separator.svg);
                background-size: cover;
                background-position: top;
                background-color: transparent;
            }
    
    #about-us-section {
        color: #840506;
        padding: 70px 0;
        position: relative;
        z-index: 1;
    }

    #about-us-section > img {
        width: 100%;
    }

    .istaknuto-1 {
        font-size: 2.5rem;
        text-transform: uppercase;
        text-align: center;
        margin: 0;
        line-height: 2.4rem;
        position: relative;
        z-index: 1;
        font-family: 'Sunbeat';
    }
    
    .istaknuto-2 {
        font-size: 2rem;
        line-height: 1.8rem;
        margin: 0;
        text-align: center;
        font-family: 'DeliciousHandrawn';
        position: relative;
        z-index: 1;
    }

    .opisni-text {
        max-width: 500px;
        width: 100%;
        margin-top: 70px;
        margin: 75px auto 20px auto;
        text-align: center;
        position: relative;
        z-index: 1;
        background-color: transparent;
    }

    .opisni-text-2 {
        width: 100%;
        text-shadow: 1px 1px 1px #000000;
        display: flex;
        color: #ffffff;
        margin: 0;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        position: relative;
        z-index: 1;
        background-color: transparent;
    }

    .grid-view {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
    div[class*='grid-item-'] {
        position: relative;
        overflow: hidden;
        background-size: cover;
        height: 300px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }
    
    .grid-item-1 { grid-area: 1 / 1 / 2 / 2; }
    .grid-item-2 { grid-area: 1 / 2 / 2 / 3; }
    .grid-item-3 { grid-area: 1 / 3 / 2 / 4; }
    .grid-item-4 { grid-area: 2 / 1 / 3 / 2; }
    .grid-item-5 { grid-area: 2 / 2 / 3 / 3; }
    .grid-item-6 { grid-area: 2 / 3 / 3 / 4; }

    .grid {
        padding-bottom: 50px;
        position: relative;
    }

    footer, footer * {
        background-color: #676d75;
        position: relative;
    }

    .separator-top {
        position: absolute;
        top: 0;
        z-index: 2;
        bottom: auto;
        width: 100%;
        transform: rotate(180deg);
        height: 50px;
        background-image: url(../img/separator-r.svg);
        background-size: cover;
        background-position: top;
        background-color: transparent;
    }

    .f {
        display: flex;
        padding: 75px 25px 50px 25px;
        box-sizing: content-box;
        max-width: 1100px;
        margin: auto;
        width: 100%;
    }
    
    .f-right {
        display: flex;
        position: relative;
        z-index: 3;
        justify-content: space-between;
        flex-direction: row;
        width: calc(100% - 135px);
    }
    
    .pz-info p {
        color: #ffffff;
        margin: 0;
        font-size: 0.7rem;
    }
    
    .pz-info .socials {
        margin-top: 20px;
    }

    .pz-info a {
        font-size: .7rem;
        color: lightpink;
        float: left;
        margin-right: 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }

    .pz-info i {
        font-size: 2rem;
        color: #fff;
        background-image: url(../img/red-sprite.svg);
        padding: 4px;
        background-size: 100% 60%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .pz-info img {
        width: 50px;
    }
    
    .pz-info {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .f-nav {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .wg {
        display: flex;
        color: #fff;
        margin-top: 20px;
    }
    
    .wg p {
        padding: 0 15px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        background-image: url("../img/nav-foot.svg");
        color: #ffffff;
        font-family: 'DeliciousHandrawn';
    }
    
    .wg a {
        width: 100px;
        margin: 0 15px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .wg a:last-of-type {
        width: 140px;
    }

    #newsl {
        background: #841618;
        background-size: 530px;
        background-position: center;
        background-repeat: no-repeat;
    }

    #newsl .container {
        background-color: transparent;
        overflow: hidden;
    }

    .newsletter {
        margin: 0 auto;
        width: 100%;
        text-align: center;
        max-width: 300px;
        padding: 50px 25px;
        box-sizing: content-box;
        background-color: transparent;
        position: relative;
    }
    
    .newsletter form {
        display: flex;
        justify-content: center;
        flex-direction: column;
        border: none;
        outline: none;
        box-shadow: none;
        background-color: transparent;
    }
    
    .newletter input {
        width: 300px;
    }
    
    .newsletter input {
        max-width: 300px;
        width: 100%;
    }
    
    .newsletter .nbtn {
        width: 150px;
        align-self: center;
        margin-top: 25px;
        background-image: url('../img/bg-main-white.svg');
        background-color: transparent;
        color: #000;
        border:none;
    }

    .newsletter .decor-pizza {
        background-image: url(../img/pizza-icon.svg);
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        top: 0;
        margin: auto;
        right: -150px;
        width: 150px;
        height: 150px;
        background-color: transparent;
        background-size: contain;
    }
    
    .newsletter p {
        background: transparent;
        color: #fff;
        margin: 0;
    }
    
    .newsletter h2 {
        background-color: transparent!important;
        color: #fff;
        font-size: 2rem;
        text-transform: uppercase;
    }
    #copyright {
        background-color: #841618;
    }
    .disclaimer {
        font-size: 0.75rem;
        line-height: 1.222em;
        font-weight: 500;
        text-transform: none;
        text-decoration: none;
        font-style: normal;
        letter-spacing: 0.021em;
        background-color: transparent;
        margin: 0;
        color: #ffffff;
        padding: 5px;
        text-align: center;
    }

    .accordion-item {
        width: 100%;
    }
    
    div#meni-hrana {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .accordion-body {
        margin-top: 0;
        margin-bottom: 75px;
    }

    button.accordion-button h3, button.accordion-button {
        border: none;
        font-size: 1.5rem;
        font-family: 'Sunbeat';
        color: #ffffff;
        background-color: transparent;
        padding: 10px 40px;
        margin: 0;
        width: 100%;
        text-align: left;
    }
    
    .accordion-collapse img {
        max-width: 100%;
    }

    .accordion-header {
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    button:focus {
        outline: none!important;
    }

    .accordion-button h3:after {
        overflow: hidden;
        content: '';
        display: block;
        width: 17px;
        height: 10px;
        background-repeat: no-repeat;
        background-position: -422px -124px;
        float: right;
    }

    .pizze, .accordion-collapse, .accordion-body {
        background-color: #840506;
    }

    .pizze li {
        position: relative;
        width: 200px;
        height: 200px;
        background-size: cover;
        margin: 20px;
        cursor: pointer;
    }

    .pizze li h3 {
        position: absolute;
        background-color: transparent;
        color: #fff;
        text-shadow: 1px 1px 5px #000000;
        margin: auto;
        text-align: center;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0);
        padding: 10px;

        transition: all .5s;
    }

    .pizze li h3 + span {
        opacity: 0;
        position: absolute;
        background-color: transparent;
        bottom: 10px;
        right: 10px;

        transition: all .5s;
    }

    .pizze li:hover h3 {
        padding-top: 20px;
        text-align: center;
        background-color: rgba(0,0,0,.5);
    }

    .pizze li:hover h3 + span {
        opacity: 1;
        color: #ffffff;
    }

    .accordion-item .accordion-collapse {
        max-height: 0;
        overflow: hidden;

        transition: max-height .75s;
    }

    .accordion-item.show .accordion-collapse {
        max-height: 1000px;
    }

    .style-btn, .style-btn:hover {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        height: 75px;
        width: 300px;
        margin: 100px auto;
        color: #ffffff!important;
        background-image: url(../img/sprite-containers.svg);
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: 300% 300%;
        background-position: 100% 50%;

        transition: background-position .5s;
    }

    .style-btn:hover {
        background-position: 50% 50%;
    }

    div#location-intro {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }
    
    .data {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding: 0 50px 50px 0;
    }
    
    .image {
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        max-width: 650px;
    }
    
    .data h1 {
        font-size: 2.5rem;
    }
    
    .data a {
        color: #ffffff;
        font-size: 1.3rem;
        background-image: url(../img/sprite-containers.svg);
        background-repeat: no-repeat;
        background-position: 100% 50%;
        background-size: 300% 300%;
        padding: 10px 20px;
    }

    div#single-pizza {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #fff;
        top: 0;
        z-index: 9;
        padding: 100px;
        overflow: auto;
        transform: scale(0);
        opacity: 0;

        transition: transform .25s, opacity 1s;
    }

    div#single-pizza.scaled {
        transform: scale(1);
        opacity: 1;

        transition: transform .25s, opacity 1s;
    }
    
    .col-2-3 {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .col-2-3 .desc {
        width: 34%;
    }
    
    .col-2-3 .img {
        width: 66%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .col-2-3 .desc h1 {
        font-size: 3rem;
        color: #840506;
    }
    
    .overnone {
        overflow: hidden;
    }

    .col-2-3 .desc p {
        margin: 50px 0;
    }
    
    .col-2-3 .desc h2 {
        font-size: 1.8rem;
    }

    .col-2-3 .desc ul li {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .col-2-3 .desc ul li > div {
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 100% 50%;
        background-repeat: no-repeat;
        min-width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    #close-icon {
        position: absolute;
        top: 25px;
        right: 25px;
        cursor: pointer;
        font-size: 3rem;
    }

    .loc-filt {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .loc-filt li {
        padding: 5px 15px;
        font-size: 1.8rem;
        cursor: pointer;
    }
    
    .loc-filt li.active {
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 100% 50%;
        background-repeat: no-repeat;
        color: #fff;
    }
    
    div#locations {
        margin: 25px auto;
    }

    .secondary-container {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .loc .foto {
        max-width: 100%;
        overflow: hidden;
        position: relative;
        height: 350px;
        width: 100%;
    }
    
    .loc .foto .loc-photo-cont {
        margin: 1%;
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        float: left;
        cursor: pointer;
    }
    
    .loc .foto .loc-photo-cont:nth-of-type(1) {
        width: 64%;
        height: 100%;
        margin: 0 1% 0 0;
    }
    
    .loc .foto .loc-photo-cont:nth-of-type(2) {
        width: 34%;
        height: 48%;
        margin: 0 0 1% 1%;
    }
    
    .loc .foto .loc-photo-cont:nth-of-type(3) {
        width: 34%;
        height: 48%;
        margin: 1% 0 0 1%;
    }
    
    .loc .foto .loc-photo-cont img {
        position: absolute;
        min-height: 100%;
        min-width: 100%;
        max-width: 200%;
        max-height: 150%;
    }

    .loc .foto h2 {
        z-index: 9;
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 1.8rem;
        color: #ffffff;
        background: transparent;
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: block;
        margin: 0;
        padding: 10px 30px;
    }

    .loc-list {
        width: 69%;
    }

    .loc-u-gradu {
        width: 29%;
    }

    .loc-list .loc {
        margin: 50px 0;
    }

    .loc-list .loc:nth-of-type(1) {
        margin-top: 0;
    }

    .loc .info {
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        justify-content: space-between;
        background-color: transparent;
        padding: 25px;
        margin-top: 15px;
    }
    
    .loc .info .loc-contact {
    }
    
    .loc .info .loc-time, .loc .info .loc-contact {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding: 15px;
        margin: 0;
    }

    .loc .info li {
        margin: 5px 0;
    }
    
    .loc .info a {
        color: #ffffff;
    }

    .loc .info a i {
        background: transparent;
        margin-right: 10px;
        display: inline-block;
        width: 30px;
        text-align: center;
    }

    .loc-u-gradu h3 {
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 0% 50%;
        background-repeat: no-repeat;
        color: #ffffff;
        background-color: transparent;
        padding: 10px 30px;
    }

    .loc-u-gradu li {
        background-color: transparent;
        margin: 10px 0;
        cursor: pointer;
    }

    .loc-u-gradu ul {
        display: flex;
        flex-direction: column;
    }

    .loc-u-gradu > div {
        position: sticky;
        top: 10px;
    }

    .clear {
        display: none;
        clear: both;
    }
    #lightbox {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        z-index: 0;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        animation: fadeOut 0.3s ease;
      }

      #lightbox.show {
        z-index: 20;
        display: flex;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.8);
        animation: fadeIn 0.3s ease;
      }

      #lightbox .controller {
        display: flex;
        flex-direction: row;
        justify-content: center;
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: auto;
        max-width: 250px;
        background-color: transparent;
        z-index: 23;
      }

      .slider-overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 21;
        top: 0;
        background: transparent;
    }

      .lightbox-next, .lightbox-prev {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        cursor: pointer;
        padding: 10px;
        margin: 10px;
        background-color: transparent;
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        color: #fff;
        z-index: 23;
    }

    #lightbox i {
        background-color: transparent;
    }

      body.fix {
        overflow: hidden;
      }
      
      #lightbox img {
        max-width: 80%;
        max-height: 80%;
      }

      #lightbox img.prev {
        animation: slideIn 0.3s ease;
      }

      #lightbox img.next {
        animation: slideOut 0.3s ease;
      }
      
      .lightbox-close {
        position: absolute;
        top: 30px;
        right: 20px;
        color: #fff;
        cursor: pointer;
        width: 50px;
        height: 50px;
        background: transparent;
        font-size: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 22;
      }
      .pizze li {
        margin: 0;
      }

      ul.pizze {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        grid-auto-rows: 200px 200px;
    }
    #about h2 {
        font-size: 3rem;
        color: #ffffff;
        background: transparent;
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: block;
        margin: 0;
        padding: 10px 30px;
        text-align: center;
        width: 250px;
        margin: 25px auto;
    }
    #about .style-btn:hover {
        background-size: 300% 300%;
        background-position: 100% 50%;
    }
    #about p {
        text-align: center;
    }
    #about .col-2-3 .desc ul li {
        width: 100%;
    }
    .col-2-3 .desc ul li .style-btn {
        margin: 0 auto;
    }
    .about-job {
        width: 768px;
        margin: 0 auto;
        margin-top: 50px;
    }
    #about p.istaknuto-1 {
        margin-top: 0;
        color: #841618;
    }
    #about .img {
        padding: 0 0 25px 25px;
    }
    #fcf-button {
        padding: 20px 100px;
        background-image: url(../img/sprite-containers.svg);
        background-size: 300% 300%;
        background-position: 0% 50%;
        width: 100%;
        max-width: 250px;
        padding: 20px 20px;
        margin-right: auto;
        margin-left: 0;
        margin-top: 10px;
    }

    .fcf-form-group {
        margin-bottom: 1rem;
    }
    
    .fcf-input-group {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
    }
    
    .fcf-form-control {
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        outline: none;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
    .fcf-form-control:focus {
        border: 1px solid #313131;
    }
    
    select.fcf-form-control[size], select.fcf-form-control[multiple] {
        height: auto;
    }
    
    textarea.fcf-form-control {
        font-family: -apple-system, Arial, sans-serif;
        height: auto;
    }
    
    label.fcf-label {
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    .fcf-credit {
        padding-top: 10px;
        font-size: 0.9rem;
        color: #545b62;
    }
    
    .fcf-credit a {
        color: #545b62;
        text-decoration: underline;
    }
    
    .fcf-credit a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    
    .fcf-btn {
        display: inline-block;
        font-weight: 400;
        color: #212529;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.25rem;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .fcf-btn {
            transition: none;
        }
    }
    
    .fcf-btn:hover {
        color: #212529;
        text-decoration: none;
    }
    
    .fcf-btn:focus, .fcf-btn.focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
    
    .fcf-btn-primary {
        color: #fff;
        text-align: center;
    }
    
    .fcf-btn-primary:hover {
        color: #fff;
    }
    
    .fcf-btn-primary:focus, .fcf-btn-primary.focus {
        color: #fff;
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }
    
    .fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
        padding: 0.5rem 1rem;
        font-size: 1.25rem;
        line-height: 1.5;
        border-radius: 0.3rem;
    }
    
    .fcf-btn-block {
        display: block;
        width: 100%;
    }
    
    .fcf-btn-block+.fcf-btn-block {
        margin-top: 0.5rem;
    }
    
    input.fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
        width: 100%;
    }
      
      
    @media screen and (max-width: 1200px) {
        .accordion-collapse img {
            max-width: 100%;
            position: relative;
            top: -1px;
        }
        .f {
            flex-direction: column;
            box-sizing: border-box;
        }
        .wg {
            margin: 30px 0;
        }
        .logo {
            margin-right: auto;
            margin-left: 0;
        }
        .f-right {
            flex-direction: column-reverse;
        }
        ul.pizze {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            grid-auto-rows: 200px 200px;
        }
        .accordion-collapse img:last-of-type {
            bottom: -1px;
            top: auto;
        }
        .col-2-3 .img {
            justify-content: flex-start;
        }
    }

    @media screen and (max-width: 992px) {
        .accordion-collapse img {
            max-width: 100%;
            position: relative;
            top: -5px;
        }
        div[class*='grid-item-'] {
            height: 200px;
        }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-text p {
            font-size: 1.2rem;
            padding: 0 20px;
        }

        .hamburger-menu {
            position: relative;
            display: block;
            width: 50px;
            height: 50px;
            background-color: transparent;
            margin-top: 20px;
        }
        
        .bar {
            width: 35px;
            height: 5px;
            background-color: #ffffff;
            margin: 6px 0;
            transition: 0.4s;
        }

        #menuButton.top {
            z-index: 99999999;
        }

        #menuButton.top .bar {
            background-color: #841618;
        }

        nav.nav-main.show {
            right: 0%;
        }
        nav.nav-main {
            position: fixed;
            right: -100%;
            top: 0;
            padding: 10px;
            background: #ffffff;
            margin: 0;
            height: 100%;
            z-index: 999999;

            transition: all .5s;
        }

        ul#menu-glavni-izbornik {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            margin: 0;
            margin-top: 100px;
        }

        #menu-glavni-izbornik li.menu-item {
            margin: 10px 0;
            width: 200px;
        }

        #menu-glavni-izbornik a {
            color: #841618;
            width: 100%;
            display: flex;
        }

        header.header-global.dark {
            z-index: 999;
            justify-content: space-between;
            display: flex;
        }

        body.activated {
            overflow: hidden;
        }

        .top #bar1 {
            transform: rotate(-45deg) translate(-9px, 6px);
        }

        .top #bar2 {
            opacity: 0;
        }

        .top #bar3 {
            transform: rotate(45deg) translate(-9px, -6px);
        }
        ul.pizze {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            grid-auto-rows: 200px 200px;
        }
        .accordion-collapse img:last-of-type {
            bottom: -5px;
            top: auto;
        }
        .col-2-3 .desc h1 {
            font-size: 2rem;
        }
        .data {
            width: 255px;
            min-width: 255px;
        }
        div#location-intro {
            padding: 0 25px;
        }
        .loc-filt li {
            font-size: 1rem;
        }
        .loc .foto {
            height: 200px;
        }
        .loc .foto h2 {
            font-size: 1rem;
        }
        .loc-u-gradu > div {
            position: relative;
        }
        .secondary-container {
            flex-direction: column-reverse;
        }
        .nav-main .sub-menu {
            z-index: 200;
            top: 0;
            left: 15px;
            position: relative;
            visibility: hidden;
            opacity: 0;
            width: 275px;
            height: 0;
            overflow: hidden;
            padding-top: 0;
            padding-bottom: 0;
            padding: 0;
            background-image: url(../img/nav-bg.svg);
            background-repeat: no-repeat;
            background-position-Y: 20px;
            background-color: transparent;

            transition: all .5s;
        }
        .nav-main .sub-menu.mobile {
            display: flex;
            height: fit-content;
            padding: 20px;
        }
        .nav-main .sub-menu.mobile a {
            color: #ffffff!important;
        }
        .menu-item-has-children > a::after {
            content: "▼";
            position: absolute;
            right: 25px;
            top: 5px;
            bottom: 0;
            margin: auto 0;
            display: flex;
            height: 10px;
            justify-content: center;
            flex-direction: column;
            transform: rotate(0);

            transition: all .5s;
        }
        
        .menu-item-has-children.open > a::after {
            transform: rotate(59deg);
            top: 15px!important;
            bottom: 0;
            margin-bottom: auto;
            margin-top: 0;
        }
    }

    /* Stilovi za prikazivanje podizbornika na manjim ekranima */
    @media screen and (max-width: 768px) {
        .separator-top {
            top: -1px;
        }
        .separator-bottom {
            bottom: -1px;;
        }
        .about-job {
            max-width: 768px;
            width: 100%;
            margin: 0 auto;
            margin-top: 50px;
            flex-direction: column;
        }
        .about-job .desc {
            width: 100%;
            margin: 25px 0;
        }
        .about-job .img {
            padding: 0!important;
            margin: 0 auto;
            margin-top: 50px;
        }
        .menu-item-has-children > a {
        cursor: pointer;
        }
        
        .menu-item-has-children.open > .sub-menu {
        display: block;
        }
        .newsletter .decor-pizza {
            right: -25%;
            top: -50%;
            z-index: 1;
        }
        ul.pizze {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            grid-auto-rows: 150px 150px;
        }
        .pizze li {
            width: 150px;
            height: 150px;
        }
        .accordion-collapse img {
            max-width: 100%;
            position: relative;
            top: -8px;
        }
        .accordion-collapse img:last-of-type {
            bottom: -8px;
            top: auto;
        }
        div#single-pizza {
            padding: 50px 100px 50px 50px;
        }
        .loc-u-gradu {
            width: 100%;
        }
        .loc .info {
            flex-direction: column;
        }
        .loc-list {
            width: 100%;
        }
        .loc .info a {
            color: #ffffff;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 575.98px) {
        .style-btn, .style-btn:hover {
            max-width: 100%;
        }
        .loc .info a {
            font-size: .7rem;
        }
        .hero-text h1 {
            padding: 0 25px;
        }
        .grid-view {
            grid-template-columns: repeat(2, 1fr);
        }
        .grid-item-1 { grid-area: 1 / 1 / 2 / 2; }
        .grid-item-2 { grid-area: 1 / 2 / 2 / 3; }
        .grid-item-3 { grid-area: 2 / 1 / 2 / 2; }
        .grid-item-4 { grid-area: 2 / 2 / 2 / 3; }
        .grid-item-5 { grid-area: 3 / 1 / 3 / 2; }
        .grid-item-6 { grid-area: 3 / 2 / 3 / 3; }
        .newsletter .decor-pizza {
            right: auto;
            top: auto;
            z-index: 1;
        }
        .newsletter .nbtn, .newsletter input {
            z-index: 2;
        }
        .newsletter {
            padding: 50px 0 125px 0;
        }
        .f-right {
            width: 100%;
        }
        .wg {
            flex-direction: column;
        }
        .wg a {
            width: 75px;
            margin: 10px;
        }
        
        .wg a:last-of-type {
            width: 115px;
        }
        .accordion-collapse img {
            max-width: 100%;
            position: relative;
            top: -15px;
        }
        ul.pizze {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            grid-auto-rows: 130px 130px;
        }
        .pizze li {
            width: 100%;
            height: 130px;
        }
        .accordion-collapse img:last-of-type {
            bottom: -15px;
            top: auto;
        }
        .col-2-3 {
            display: flex;
            flex-direction: column-reverse;
            justify-content: flex-start;
        }
        .col-2-3 .img {
            justify-content: flex-start;
            width: 100%;
            padding-bottom: 25px;
        }
        .col-2-3 .desc {
            width: 100%;
        }
        div#single-pizza {
            padding: 20px 70px 20px 20px;
        }
        #close-icon {
            top: 15px;
            right: 15px;
            font-size: 2rem;
        }
        div#location-intro {
            flex-direction: column;
        }
    }
    
    
    .grecaptcha-badge {

display: none;

}


.wpcf7{
    background-color:transparent;
}