* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
}

.hidden {
    display: none;
}

body p::selection,
span::selection,
h1::selection,
a::selection,
h2::selection {
    background-color: brown;
    color: white;
}

div.wrap {
    margin: 0 auto;
    /* max-width: 1600px; */
    overflow: hidden;
}

div.front {
    animation: loading 1s 1.4s linear both;
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

div.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loading3 1.4s both linear;
}

/* div.loading i {
    color: white;
    font-size: 50px;
    animation: loading2 1.4s both linear;
} */
div.loading-pitca {
    height: 120px;
    width: 120px;
    background-image: url(../img/loading/1.png);
    background-size: cover;
    background-position: center;
    animation: loading-pitca 1.4s both linear;
}

@keyframes loading-pitca {
    0% {
        background-image: url(../img/loading/1.png);
    }

    12% {
        background-image: url(../img/loading/2.png);
    }

    24% {
        background-image: url(../img/loading/3.png);
    }

    36% {
        background-image: url(../img/loading/4.png);
    }

    48% {
        background-image: url(../img/loading/5.png);
    }

    60% {
        background-image: url(../img/loading/6.png);
    }

    72% {
        background-image: url(../img/loading/7.png);
    }

    84% {
        background-image: url(../img/loading/8.png);
        opacity: 1;
    }

    100% {
        background-image: url(../img/loading/8.png);
        opacity: 0;
    }
}

@keyframes loading3 {
    0% {
        background-color: #333;
    }

    90% {
        background-color: #333;
    }

    100% {
        background-color: transparent;
    }
}

/* @keyframes loading2 {
    0% {
        transform: rotate(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: rotate(400deg);
        opacity: 0;
    }
} */

/* 
----------------------------------------------BURGER---------------------------------------- 
*/

div.burgernav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    height: 50px;
    transition: .4s;
    z-index: 4;
    box-shadow: 0 1px 6px 0 black;

}

div.burgernav.front {
    animation: flipInX 1s both;
    animation-delay: 1.8s;
}

div.burgernav.on {
    background-color: rgba(255, 255, 255, 0.8);
}

div.burgernav p {
    text-align: right;
    line-height: 50px;
    margin-right: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: black;
}

div.burgernav p span {
    font-weight: 600;
}

div.burger {
    display: block;
    position: fixed;
    top: 2%;
    left: 3%;
    width: 30px;
    height: 25px;
    z-index: 6;
}

div.burger.front {
    animation: flipInX 1s both;
    animation-delay: 1.8s;
}

div.burger.on {
    transform: rotate(-90deg);
}

div.burger span {
    position: absolute;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #717070;
    transition: top .2s, bottom .2s, transform .2s .2s, opacity .2s .2s, background-color .2s .2s;
}


div.burger span:nth-child(1) {
    top: 0;
}

div.burger span:nth-child(2) {
    top: calc(50% - 2px);
}

div.burger span:nth-child(3) {
    bottom: 0;
}

div.burger.on span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate(45deg);
    background-color: #eee;
}

div.burger.on span:nth-child(2) {
    opacity: 0;
}

div.burger.on span:nth-child(3) {
    bottom: calc(50% - 2px);
    transform: rotate(-45deg);
    background-color: #eee;
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

/* 
-----------------------------------------------NAV MOBILE-------------------------------------
*/
nav.navmb {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 30px 0 60px;
    transition: .4s;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 5;
}

nav.navmb.active {
    left: 0;
}

nav.navmb ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

nav.navmb ul img {
    width: 40%;
    margin-top: -40px;
    margin-bottom: 40px;
    filter: invert(1);
}

nav.navmb ul img.animatelogo {
    animation: jello 1.4s both;
}

nav.navmb ul li {
    margin: 20px 0;
}

nav.navmb ul a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
}

@media(orientation: landscape) {
    div.burger {
        top: 15px;
        left: 2%;
    }

    nav.navmb ul img {
        width: 20%;
        margin-top: 40px;
        margin-bottom: 0;
    }

}

@media (min-width: 768px) {

    div.burger {
        top: 1.5%;
        left: 2%;
    }

    div.burgernav p {
        font-size: 18px;
    }

    nav.navmb ul img {
        width: 30%;
        margin-top: -80px;
        margin-bottom: 20px;
    }

    nav.navmb ul a {
        font-size: 28px;
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

/* 
----------------------------------------------NAV DESKTOP------------------------------------
*/
nav.dsk {
    display: none;
}

@media(min-width:1024px) {
    div.burger {
        display: none;
    }

    div.burgernav {
        display: none;
    }

    nav.dsk {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: block;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 6;
    }

    nav.dsk.front {
        animation: bounceInRight 1s 1.8s both;
    }

    @keyframes bounceInRight {

        0%,
        60%,
        75%,
        90%,
        to {
            -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
            animation-timing-function: cubic-bezier(.215, .61, .355, 1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
            transform: translate3d(3000px, 0, 0) scaleX(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
            transform: translate3d(-25px, 0, 0) scaleX(1)
        }

        75% {
            -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
            transform: translate3d(10px, 0, 0) scaleX(.98)
        }

        90% {
            -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
            transform: translate3d(-5px, 0, 0) scaleX(.995)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    nav.dsk ul {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        align-items: center;
        height: 50px;
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
    }

    nav.dsk img {
        width: 5%;
        position: absolute;
        top: 50%;
        left: 60px;
        transform: translateY(-50%);
    }

    nav.dsk ul li {
        margin: 0 20px;
        overflow: hidden;
    }

    nav.dsk ul li:last-child a {
        margin: 0 20px 0 40px;
        border: 1px solid black;
        padding: 5px 20px;
        transition: .4s;
    }


    nav.dsk ul li:last-child a:hover {
        border: 1px solid brown;
        background-color: brown;
        color: white;
    }

    nav.dsk ul p {
        border: 1px solid #333;
        border-radius: 20px;
        padding: 5px 10px;
        animation: pulse 2.6s both infinite linear;
    }

    nav.dsk ul p span {
        display: inline-block;
        font-weight: 600;
        letter-spacing: 1px;
    }

    /* nav.dsk ul p::selection,
    nav.dsk ul p span::selection {
        background-color: brown;
        color: white;
    } */

    @keyframes pulse {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        50% {
            -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    nav.dsk ul a {
        display: block;
        position: relative;
        text-decoration: none;
        text-transform: uppercase;
        color: #333;
        transition: .4s;
    }

    nav.dsk ul a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 1px;
        background-color: black;
        transition: .4s;
    }

    nav.dsk ul a:hover {
        color: black;
    }

    nav.dsk ul a:hover::after {
        left: 0;
    }

    nav.dsk ul li:last-child a::after {
        display: none;
    }
}

@media(min-width: 1300px) {
    nav.dsk ul a {
        font-size: 22px;
    }

    nav.dsk img {
        width: 4%;
    }

    nav.dsk ul {
        display: flex;
        list-style: none;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
    }
}


/* 
-----------------------------------------------HEADER---------------------------------------- 
*/
header {
    background-image: url(../img/pizza-3007395_1280.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    margin-top: 50px;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

header h1 {
    text-align: center;
    line-height: 60vh;
    color: white;
    text-shadow: 0 0 12px black, 0 0 4px black, 0 0 6px white;
    letter-spacing: 1px;
    font-family: 'MuseoModerno', cursive;
    position: relative;

}

header h1.front {
    animation: h1 both 1s 1.8s;
}


@keyframes h1 {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    header h1 {
        font-size: 60px;
        letter-spacing: 2px;
    }
}

@media(orientation:landscape) {
    header {
        background-image: url(../img/pizza-3007395_1280.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 80vh;
    }

    header h1 {
        line-height: 80vh;
    }
}

@media(min-width:1024px) {
    header {
        height: 60vh;
    }

    header h1 {
        font-size: 70px;
        line-height: 60vh;
    }
}

@media(min-width: 1300px) {
    header {
        margin-top: 60px;
        background-position-y: top;
        height: 70vh;
    }

    header h1 {
        font-size: 80px;
        line-height: 70vh;
    }
}

.custom-shape-divider-bottom-1603217540 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1603217540 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 76px;
}

.custom-shape-divider-bottom-1603217540 .shape-fill {
    fill: #ffffff;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1603217540 svg {
        width: calc(100% + 1.3px);
        height: 102px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1603217540 svg {
        width: calc(100% + 1.3px);
        height: 51px;
    }
}

/* 
------------------------------------------------MAIN----------------------------------------- 
*/
main {
    padding: 10px 10px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

main img.bgc3 {
    display: none;
}

main img.bgc4 {
    display: none;
}

main section.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.about div.godziny {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg fill-opacity='0.04'%3E%3Ccircle fill='%23ffffff' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%23e1e1e1' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%23c3c3c3' cx='400' cy='400' r='400'/%3E%3Ccircle fill='%23a7a7a7' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%238b8b8b' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%23707070' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 10px 15px;
    margin: 5px 0 25px;
    animation-delay: 1.8s;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.555);
    animation: fadeInUp 1s 1.8s both;
}

section.about div.godziny span {
    font-weight: 600;
}

section.about p {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 400;
}

section.about p.font2 {
    font-weight: 500;
    animation: fadeInUpBig 1s 1.8s both;
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

section.about h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 20px;
}

section.about div.topicki {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
}

section.about div.topicka {
    margin: 10px 0;
}

section.about div.topicka p {
    font-weight: 600;
    font-size: 18px;
}

section.about div.topicka img {
    width: 100%;
    border-radius: 30px;
}

@media(min-width: 768px) {
    main {
        padding: 10px 30px;
    }

    section.about h1 {
        margin-top: 40px;
    }

    section.about div.topicki {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        padding: 20px 0;
    }

    section.about div.topicka {
        flex-basis: 30%;
    }
}

@media(orientation:landscape) {
    section.about div.topicka {
        width: 60%;
    }
}

@media(min-width:1024px) {

    main img.bgc3 {
        position: absolute;
        top: 50px;
        left: -12%;
        width: 40%;
        display: block;
        animation: fadeInLeft 1s 1.8s both;
        transition: .4s;
    }

    main img.bgc4 {
        position: absolute;
        top: 200px;
        right: -5%;
        width: 25%;
        display: block;
        animation: fadeInRight 1s 1.8s both;
        transition: .4s;
    }

    main img.bgc3:hover,
    main img.bgc4:hover {
        filter: drop-shadow(0 0 2px #E57C58);
    }

    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    section.about p.font2 {
        font-size: 20px;
        letter-spacing: 1px;
        max-width: 45%;
    }

    section.about div.godziny {
        margin-top: 40px;
        width: 45%;
        padding: 35px;
    }

    section.about div.godziny p {
        font-size: 20px;
    }

    section.about h1 {
        font-size: 30px;
    }

    section.about div.topicka img,
    div.topicka p {
        display: none;
    }

    section.about div.topicki {
        justify-content: space-around;
    }

    section.about div.topicka {
        position: relative;
        width: 27vw;
        height: 25vh;
        border-radius: 20px;
        flex-basis: auto;
        perspective: 800px;
    }

    section.about div.topicka::after,
    section.about div.topicka::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: 20px;
        box-sizing: border-box;
        transition: .4s linear;
        backface-visibility: hidden;
    }

    section.about div.topicka::after {
        background-image: url(../img/1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    section.about div.topicka:nth-child(2)::after {
        background-image: url(../img/2.jpg);
    }

    section.about div.topicka:nth-child(3)::after {
        background-image: url(../img/3.jpg);
    }

    section.about div.topicka:hover::after {
        transform: rotateY(180deg);
    }

    section.about div.topicka::before {
        content: 'Margherita';
        background-image: url(../img/1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        font-weight: 400;
        color: #fff;
        line-height: 25vh;
        letter-spacing: 4px;
        text-shadow: 0 0 8px black, 0 0 12px black, 0 0 30px black;
        font-size: 33px;
        transform: rotateY(180deg);
    }

    section.about div.topicka:nth-child(2)::before {
        background-image: url(../img/2.jpg);
        content: 'Extravaganza';
    }

    section.about div.topicka:nth-child(3)::before {
        background-image: url(../img/3.jpg);
        content: 'Spicy Salami';
    }

    section.about div.topicka:hover::before {
        transform: rotateY(360deg);
    }

    section.about p.font2 {
        width: 70%;
    }
}

@media(min-width:1360px) {
    section.about div.topicki {
        justify-content: space-between;
    }

    section.about div.topicka {
        position: relative;
        width: 27vw;
        height: 30vh;
        border-radius: 20px;
        flex-basis: auto;
        perspective: 800px;
    }

    section.about div.topicka::before {
        line-height: 30vh;
    }
}

@media(min-width:1700px) {
    section.about div.topicka {
        width: 23vw;
    }
}

/* 
---------------------------------------------------MENU--------------------------------------- 
*/
section.menu {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

section.menu a {
    color: #000;
    text-decoration: none;
}

section.menu div.menuh1 {
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.541);
    overflow: hidden;
    animation: test 2.2s linear both;
}

@keyframes test {
    0% {
        border-bottom: 2px solid rgba(0, 0, 0, 0);
    }

    20% {
        border-bottom: 2px solid rgba(0, 0, 0, 0);
    }

    100% {
        border-bottom: 2px solid rgba(0, 0, 0, 0.541);
    }
}

section.menu div.menuh1 img {
    width: 80%;
    margin-top: 10px;
    margin-left: 20px;
    filter: drop-shadow(2px 2px 2px black);
    animation: jackInTheBox 1s both;
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

section.menu div.menuh1 p {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    animation: slideInRight 1s both;
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

section.menu div.pozycja {
    position: relative;
    padding: 20px 15px;
    text-align: left;
}

section.menu div.cennik-wrap {
    margin-top: 40px;
    animation: fadeInUp 1s .4s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

section.menu img.tło,
section.menu img.tło2 {
    display: none;
}

section.menu a:nth-child(odd) div.pozycja {
    /* background: rgb(221, 221, 221); */
    /* background: linear-gradient(90deg, rgba(221, 221, 221, 0.377) 0%, rgba(185, 185, 185, 0.753) 100%); */
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%23fbfbfb' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23f7f7f7' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23f3f3f3' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23efefef' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23ebebeb' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23efefef' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23f3f3f3' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23f7f7f7' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23fbfbfb' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ffffff' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}

section.menu div.pozycja p:nth-child(1) {
    font-weight: 500;
}

section.menu div.pozycja p:nth-child(1) i {
    font-size: 16px;
    margin-left: 5px;
}

section.menu div.pozycja p:nth-child(2) {
    width: 80%;
}

section.menu div.pozycja p.cena {
    position: absolute;
    top: 15px;
    right: 2%;
    font-size: 14px;
}

@media(orientation:landscape) {
    section.menu div.menuh1 img {
        width: 60%;
        margin-top: 10px;
        margin-left: 10px;
        filter: drop-shadow(2px 2px 2px black);
    }
}

@media(min-width:768px) {
    section.menu div.menuh1 img {
        width: 60%;
    }

    section.menu div.menuh1 p {
        font-size: 18px;
    }

    section.menu div.pozycja p {
        font-size: 20px;
    }

    section.menu div.pozycja p:nth-child(1) {
        font-size: 22px;
    }

    section.menu div.pozycja p.cena {
        font-size: 20px;
    }
}

@media(min-width:1024px) {

    section.menu div.pozycja {
        width: 80%;
        margin: 0 auto;
        border-radius: 20px;
        border: 2px solid transparent;
        transition: .2s;
    }

    section.menu div.pozycja:hover {
        cursor: pointer;
        border: 2px solid #E57C58;
    }

    section.menu img.tło {
        position: absolute;
        bottom: 10px;
        right: -200px;
        width: 400px;
        display: block;
    }

    section.menu img.tło2 {
        position: absolute;
        top: 400px;
        left: -700px;
        width: 800px;
        display: block;
    }

    section.menu div.menuh1 img {
        width: 40%;
        margin-left: 120px;
    }

    section.menu div.pozycja p:nth-child(1) {
        font-weight: 600;
        font-size: 18px;
    }

    section.menu div.pozycja p.cena {
        font-size: 18px;

    }

    section.menu div.menuh1 p {
        margin-right: 10%;
    }


}

/* 
---------------------------------------------------------FOOTER--------------------------------------------------- 
*/
footer {
    background-color: rgba(0, 0, 0, 0.8);
}

footer iframe {
    display: none;
}

div.stopkaAdres {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.stopkaAdres h1 {
    color: rgb(233, 233, 233);
    letter-spacing: 2px;
    font-size: 26px;
    border-bottom: 1px solid rgb(214, 214, 214);
    margin-bottom: 10px;
}

div.stopkaAdres h2 {
    color: rgb(233, 233, 233);
    font-weight: 500;
    margin-top: 10px;
}

div.stopkaAdres p {
    color: #ccc;
}

footer p.copy {
    text-align: center;
    color: white;
    text-shadow: 0 0 2px black;
    padding: 10px 0;
    letter-spacing: 1px;
    font-size: 12px;
}

@media(min-width:768px) {
    footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    footer iframe {
        width: 45%;
        height: 300px;
        display: block;
        margin-top: 10px;
    }

    div.stopkaAdres {
        align-items: flex-start;
        margin-left: 30px;
        width: 50%;
    }
}

@media(min-width:1300px) {
    div.stopkaAdres {
        margin-top: 20px;
        padding-left: 25%;
    }
}

@media(min-width:1500px) {
    footer iframe {
        margin-top: 20px;
    }
}

/* POPUP */
div.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250%);
    height: 70%;
    width: 80%;
    background-image: url(../img/popup.jpg);
    background-size: cover;
    background-position: 30%;
    border-radius: 20px;
    box-shadow: 0 0 12px 0 black;
    transition: .6s;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    max-height: 400px;
}

div.popup.active {
    transform: translate(-50%, -50%);
}

div.popup h2 {
    margin-top: 80px;
    color: white;
    letter-spacing: 2px;
    font-size: 34px;
}

div.popup p {
    margin-top: 10px;
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
}

div.popup p i {
    margin-right: 10px;
}

div.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #333;
}

div.close-popup span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: white;
}

div.close-popup span:nth-child(1) {
    transform: rotate(45deg);
}

div.close-popup span:nth-child(2) {
    transform: rotate(-45deg);
}