/* FONTY Z GOOGLE */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

/* ZMIENNE */
:root{
    --kolor-glowny: #4f46e5;
    --kolor-dopelniajacy: #2dd4bf;
    --kolor-rozowy: #ec4899;
    --kolor-jasny: #f6f7fb;
    --kolor-bialy: #ffffff;
    --kolor-sredni: #667085;
    --kolor-ciemny: #111827;
}

/* GLOBALNE */
*{
    box-sizing: border-box;
    transition: .4s;
}

html{
    scroll-behavior: smooth;
    font-size: 10px;
}

body{
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    background-color: var(--kolor-jasny);
    color: var(--kolor-ciemny);
}

img{
    max-width: 100%;
}

h1, h2, h3{
    font-weight: 800;
    line-height: 100%;
}

h1{
    font-size: 8rem;
}

h2{
    font-size: 5rem;
}

h3{
    font-size: 2.6rem;
}

p{
    line-height: 150%;
    color: var(--kolor-sredni);
}

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

.zawartosc{
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* MENU MOBILE */
.burger{
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
    position: fixed;
    right: 2rem;
    top: 2rem;
    font-size: 3.5rem;
    padding: 0 .7rem .5rem;
    cursor: pointer;
    display: none;
    z-index: 999999;
    border-radius: 1rem;
}

.burger:hover{
    background-color: var(--kolor-glowny);
}

.nakladka{
    background-color: var(--kolor-glowny);
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    opacity: .96;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999998;
}

.zamknijX{
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--kolor-bialy);
    font-size: 4rem;
    padding: .1rem 1rem 0;
    cursor: pointer;
    border-radius: 1rem;
}

.nakladka ol{
    width: 100%;
    padding: 0 2rem;
}

.nakladka ol li a{
    color: var(--kolor-bialy);
    display: block;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2vh;
    padding: 2vh 0;
    font-weight: 800;
}

.cena:hover{
    transform: translateY(-1rem) scale(1.04);
    box-shadow: 0 2.5rem 5rem rgba(79,70,229,.20);
    background-color: #ffffff;
}

.cena:hover strong,
.cena:hover b{
    color: var(--kolor-dopelniajacy);
}

.nakladka ol li a:hover{
    background-color: var(--kolor-bialy);
    color: var(--kolor-ciemny);
    border-radius: 2rem;
}

/* MENU DESKTOP */
nav{
    background-color: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 .5rem 2rem rgba(17,24,39,.08);
}

nav .zawartosc{
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo{
    font-weight: 800;
    font-size: 2.4rem;
}

.logo span{
    color: var(--kolor-glowny);
}

nav ol{
    display: flex;
    gap: 2rem;
}

nav ol li a{
    font-weight: 800;
    padding: 1rem 1.4rem;
    border-radius: 999px;
}

nav ol li a:hover{
    background-color: var(--kolor-glowny);
    color: var(--kolor-bialy);
}

/* SEKCJE */
section{
    min-height: 100vh;
    padding: 9rem 2rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tytul-sekcji{
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.etykieta{
    color: var(--kolor-glowny);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: .15rem;
    margin-bottom: 1rem;
}

/* HERO */
#start{
    background:
        radial-gradient(circle at 20% 20%, rgba(45,212,191,.35), transparent 30%),
        radial-gradient(circle at 80% 25%, rgba(236,72,153,.20), transparent 25%),
        linear-gradient(135deg, #eef2ff, #ecfeff);
}

#start .zawartosc{
    align-items: center;
}

#start article{
    flex: 1 1 40rem;
}

#start h1{
    max-width: 75rem;
}

#start h1 span{
    color: var(--kolor-glowny);
}

.swiecacy{
    background: linear-gradient(90deg, var(--kolor-ciemny), var(--kolor-glowny), var(--kolor-dopelniajacy), var(--kolor-ciemny));
    background-size: 250%;
    -webkit-background-clip: text;
    color: transparent;
    animation: swiatlo 4s linear infinite;
}

@keyframes swiatlo{
    0%{ background-position: 0%; }
    100%{ background-position: 250%; }
}

.przyciski{
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.przycisk{
    background-color: var(--kolor-glowny);
    color: var(--kolor-bialy);
    padding: 1.4rem 2.2rem;
    border-radius: 999px;
    font-weight: 800;
}

.przycisk.drugi{
    background-color: var(--kolor-ciemny);
}

.przycisk:hover{
    transform: translateY(-.5rem);
    background-color: var(--kolor-dopelniajacy);
    color: var(--kolor-ciemny);
}

.telefon{
    background-color: var(--kolor-ciemny);
    border-radius: 4rem;
    padding: 1.5rem;
    width: 34rem;
    margin: auto;
    box-shadow: 0 3rem 7rem rgba(17,24,39,.25);
    animation: tablet-ruch 4s ease-in-out infinite;
}

@keyframes tablet-ruch{
    0%, 100%{
        transform: translateY(0) rotate(2deg);
    }
    50%{
        transform: translateY(-2rem) rotate(-2deg);
    }
}

.ekran{
    background: linear-gradient(135deg, #ffffff, #eef2ff);
    min-height: 45rem;
    border-radius: 3rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mapka{
    height: 16rem;
    border-radius: 2rem;
    background:
        linear-gradient(90deg, rgba(79,70,229,.18) 1px, transparent 1px),
        linear-gradient(rgba(79,70,229,.18) 1px, transparent 1px),
        #ffffff;
    background-size: 2.5rem 2.5rem;
    position: relative;
}

.punkt{
    width: 2rem;
    aspect-ratio: 1/1;
    background-color: var(--kolor-dopelniajacy);
    border-radius: 50%;
    border: .4rem solid var(--kolor-bialy);
    position: absolute;
}

.punkt:nth-child(1){ left: 20%; top: 55%; }
.punkt:nth-child(2){ left: 50%; top: 35%; background-color: var(--kolor-rozowy); }
.punkt:nth-child(3){ right: 15%; top: 25%; background-color: var(--kolor-glowny); }

/* TOP MIEJSCA - WERSJA JAK KARUZELA */
#miejsca{
    background-color: var(--kolor-jasny);
}

.top-wrapper{
    align-items: center;
}

.top-tekst{
    flex: 1 1 25rem;
}

.top-panel{
    flex: 2 1 60rem;
    background-color: rgba(255,255,255,.75);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: 0 2rem 5rem rgba(17,24,39,.10);
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.top-obrazek{
    flex: 1 1 30rem;
    height: 32rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.top-obrazek span{
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255,255,255,.60);
}

.top-opis{
    flex: 1 1 32rem;
    background-color: rgba(255,255,255,.85);
    border-radius: 2.5rem;
    padding: 3rem;
}

.top-opis h3{
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.tag{
    background-color: #eef2ff;
    color: var(--kolor-ciemny);
    display: inline-block;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 2rem;
}

.mini-info{
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-info span{
    border: .1rem solid rgba(17,24,39,.15);
    border-radius: 999px;
    padding: 1rem 1.5rem;
    font-weight: 800;
}

.strzalka{
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
    width: 5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    z-index: 5;
    border: none;
    cursor: pointer;
    padding: 0 0 .4rem 0;
    font-family: Arial, sans-serif;
}

.lewa{
    left: -2rem;
}

.prawa{
    right: -2rem;
}

.kropki{
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    gap: .8rem;
}

.kropki span{
    width: 1rem;
    height: 1rem;
    background-color: rgba(79,70,229,.25);
    border-radius: 999px;
}

.kropki .aktywna{
    width: 3rem;
    background-color: var(--kolor-glowny);
}

/* .grad1{ background: linear-gradient(135deg, #4f46e5, #2dd4bf); } */
/* .grad2{ background: linear-gradient(135deg, #06b6d4, #818cf8); } */
/* .grad3{ background: linear-gradient(135deg, #14b8a6, #312e81); } */

.grad1{
    background-image:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("../img/kazimierz.jpg");
}

.grad2{
    background-image:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("../img/rynek.jpg");
}

.grad3{
    background-image:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("../img/zakrzówek.jpg");
}

.grad4{
    background-image:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("../img/kopiec.jpg");
}

.grad1,
.grad2,
.grad3,
.grad4{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* PLAN */
#plan{
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
}

#plan h2,
#plan h3{
    color: var(--kolor-bialy);
}

.krok{
    background-color: rgba(255,255,255,.08);
    border: .1rem solid rgba(255,255,255,.12);
    border-radius: 2rem;
    padding: 2rem;
    flex: 1 1 100%;
    display: flex;
    gap: 2rem;
}

.krok strong{
    color: var(--kolor-dopelniajacy);
    font-size: 2.2rem;
    font-weight: 800;
    min-width: 8rem;
}

/* BUDŻET */
#budzet{
    background-color: var(--kolor-jasny);
    min-height: 70vh;
}

.budzet-wrapper{
    align-items: center;
}

.budzet-tekst{
    flex: 1 1 35rem;
}

.budzet-tekst h2 span{
    color: var(--kolor-glowny);
}

.budzet-karty{
    flex: 1 1 45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cena{
    background-color: rgba(255,255,255,.8);
    border-radius: 2rem;
    padding: 2.5rem;
    flex: 1 1 20rem;
    box-shadow: 0 1.5rem 4rem rgba(17,24,39,.08);
}

.cena strong{
    display: block;
    color: var(--kolor-ciemny);
    font-size: 3.8rem;
    font-weight: 800;
    margin-top: 2rem;
}

.cena b{
    color: var(--kolor-glowny);
    font-size: 2.8rem;
    font-weight: 800;
}

/* MINI SLIDER */
#tips{
    background-color: var(--kolor-jasny);
    min-height: 60vh;
}

.tips-wrapper{
    align-items: center;
}

.tips-tekst{
    flex: 1 1 25rem;
}

.slider-tipy{
    flex: 2 1 60rem;
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
    border-radius: 3rem;
    min-height: 18rem;
    padding: 4rem 5rem;
    position: relative;
    box-shadow: 0 2rem 5rem rgba(17,24,39,.18);
}

.slider-tipy p{
    color: var(--kolor-bialy);
    max-width: 70rem;
}

.slider-tipy h3{
    color: var(--kolor-dopelniajacy);
    margin-bottom: 1.5rem;
}

.tip{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .45s ease, transform .45s ease;
}

.tip.znika{
    opacity: 0;
    transform: translateY(1.5rem);
}
    18%{ opacity: 1; transform: translateY(0); }
    82%{ opacity: 1; transform: translateY(0); }
    100%{ opacity: .45; transform: translateY(-.8rem); }
}

.strzalka-tip{
    display: none;
}

.prawa-tip{
    display: none;
}


.tip-kropki{
    bottom: -2.5rem;
}

.tip-kropki .aktywna{
    background-color: var(--kolor-dopelniajacy);
}

/* PLAKAT */
#plakat{
    background-color: var(--kolor-jasny);
}

.plakaty{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* plakat 1 */
.plakat{
    aspect-ratio: 2/3;
    width: 38rem;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    box-shadow: 0 2rem 5rem rgba(17,24,39,.22);
}

.krakow{
    background: linear-gradient(180deg, #312e81 0%, #4f46e5 48%, #2dd4bf 100%);
}

.krakow::before{
    content: '';
    width: 130%;
    height: 28%;
    background-color: rgba(255,255,255,.18);
    position: absolute;
    left: -15%;
    bottom: -8%;
    border-radius: 50% 50% 0 0;
}

.ksiezyc{
    width: 7rem;
    aspect-ratio: 1/1;
    background-color: #fef3c7;
    border-radius: 50%;
    position: absolute;
    right: 5rem;
    top: 5rem;
    box-shadow: 0 0 3rem rgba(254,243,199,.7);
}

.chmurka{
    width: 12rem;
    height: 3rem;
    background-color: rgba(255,255,255,.75);
    border-radius: 999px;
    position: absolute;
    left: 3rem;
    top: 7rem;
}

.chmurka::before{
    content: '';
    width: 5rem;
    aspect-ratio: 1/1;
    background-color: rgba(255,255,255,.75);
    border-radius: 50%;
    position: absolute;
    left: 2rem;
    top: -2rem;
}

.wieza{
    width: 7rem;
    height: 27rem;
    background-color: #f8fafc;
    position: absolute;
    bottom: 11rem;
    z-index: 2;
    border-radius: 1rem 1rem 0 0;
    box-shadow: inset 0 -1rem 0 rgba(17,24,39,.08);
}

.wieza-lewa{
    left: 8rem;
}

.wieza-prawa{
    right: 8rem;
    height: 33rem;
}

.dach{
    width: 0;
    height: 0;
    border-left: 4.5rem solid transparent;
    border-right: 4.5rem solid transparent;
    border-bottom: 8rem solid #ec4899;
    position: absolute;
    left: 50%;
    top: -7.5rem;
    transform: translateX(-50%);
}

.wieza-prawa .dach{
    border-bottom-color: #111827;
}

.okno{
    width: 2.2rem;
    height: 5rem;
    background-color: #312e81;
    border-radius: 2rem 2rem 0 0;
    position: absolute;
    left: 50%;
    top: 8rem;
    transform: translateX(-50%);
}

.kosciol{
    width: 21rem;
    height: 14rem;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 9rem;
    transform: translateX(-50%);
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: 3;
}

.kosciol::before{
    content: '';
    width: 100%;
    height: 2rem;
    background-color: #111827;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 1.5rem 1.5rem 0 0;
}

.drzwi{
    width: 5rem;
    height: 8rem;
    background-color: #4f46e5;
    border-radius: 3rem 3rem 0 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.okno-male{
    width: 3rem;
    height: 3rem;
    top: 5rem;
    background-color: #2dd4bf;
    border-radius: 50%;
}

.droga{
    width: 12rem;
    height: 16rem;
    background-color: rgba(17,24,39,.22);
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%) perspective(10rem) rotateX(30deg);
    z-index: 1;
    clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
}

/* plakat 2 */
.zakrzowek{
    background: linear-gradient(180deg, #38bdf8 0%, #2dd4bf 48%, #0f766e 100%);
}

.slonce{
    width: 8rem;
    aspect-ratio: 1/1;
    background-color: #fde68a;
    border-radius: 50%;
    position: absolute;
    right: 4rem;
    top: 4rem;
    box-shadow: 0 0 4rem rgba(253,230,138,.8);
}

.woda{
    width: 120%;
    height: 38%;
    background-color: #2563eb;
    position: absolute;
    left: -10%;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.skala{
    position: absolute;
    bottom: 18%;
    background-color: #334155;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.skala1{
    width: 18rem;
    height: 22rem;
    left: 1rem;
}

.skala2{
    width: 20rem;
    height: 26rem;
    right: -3rem;
    background-color: #475569;
}

.fala{
    width: 18rem;
    height: 1.2rem;
    background-color: rgba(255,255,255,.75);
    position: absolute;
    left: 3rem;
    bottom: 8rem;
    border-radius: 999px;
    z-index: 3;
}

.fala2{
    width: 12rem;
    left: 17rem;
    bottom: 5rem;
}

.plakat h3{
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    color: var(--kolor-bialy);
    font-size: 4rem;
    z-index: 5;
    text-shadow: 0 .5rem 2rem rgba(17,24,39,.35);
}

.plakat:hover{
    transform: translateY(-1rem);
}

.plakat:hover .wieza-lewa,
.plakat:hover .wieza-prawa{
    transform: translateY(-1rem);
}

/* STOPKA */
/* footer{
    min-height: 20vh;
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer .zawartosc{
    justify-content: center;
    text-align: center;
} */

/* STOPKA */
footer{
    background-color: var(--kolor-ciemny);
    color: var(--kolor-bialy);
    display: flex;
    justify-content: center;
    padding: 5rem 2rem 3rem;
}

footer .zawartosc{
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.stopka-wrapper{
    gap: 3rem;
}

.stopka-box{
    flex: 1 1 25rem;
}

.stopka-box h4{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--kolor-bialy);
}

.stopka-box p{
    color: rgba(255,255,255,.65);
    font-size: 1.4rem;
}

.newsletter{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter input{
    padding: 1.2rem 1.5rem;
    border-radius: 999px;
    border: none;
    outline: none;
    flex: 1 1 18rem;
}

.newsletter button{
    padding: 1.2rem 1.8rem;
    border-radius: 999px;
    border: none;
    background-color: var(--kolor-dopelniajacy);
    color: var(--kolor-ciemny);
    font-weight: 800;
    cursor: pointer;
}

.newsletter button:hover{
    background-color: var(--kolor-glowny);
    color: var(--kolor-bialy);
}

.stopka-copy{
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,.35);
}

/* RWD */
@media (max-width: 600px){
    h1{
        font-size: 5.2rem;
    }

    h2{
        font-size: 3.6rem;
    }

    .burger{
        display: block;
    }

    nav{
        display: none;
    }

    section{
        padding: 5rem 0;
    }

    .zawartosc{
        padding: 2rem;
    }

    #start{
        padding-top: 8rem;
    }

    .telefon{
        width: 100%;
        animation: tablet-ruch 4s ease-in-out infinite;
    }

    .ekran{
        min-height: 36rem;
    }

    .scroll-x{
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .scroll-x article{
        min-width: 82%;
    }

    .krok{
        flex-direction: column;
    }

    .top-panel{
        flex-direction: column;
        padding: 2rem;
    }

    .top-obrazek{
        width: 100%;
        height: 25rem;
    }

    .top-opis h3{
        font-size: 3.8rem;
    }

    .strzalka{
        top: auto;
        bottom: 1rem;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
        padding: 0 0 .4rem 0;
    }

    .kropki{
        bottom: 2rem;
    }

    .budzet-karty{
        width: 100%;
    }

    .slider-tipy{
        padding: 3rem;
        min-height: 25rem;
    }

    .strzalka-tip{
        display: none;
    }
}

/* MOBILE */
@media (max-width: 600px){

    /* tablet/telefon w hero bez ruchu na mobile */
    .telefon{
        animation: none !important;
        transform: none !important;
        margin-top: 3rem;
    }

    /* top lokalizacje - wygodniejszy układ na mobile */
    .top-wrapper{
        gap: 1rem;
    }

    .top-tekst{
        text-align: left;
        width: 100%;
    }

    .top-panel{
        width: 100%;
        border-radius: 2.4rem;
        padding: 1.6rem;
        gap: 1.5rem;
    }

    .top-obrazek{
        height: 22rem;
        border-radius: 1.8rem;
    }

    .top-obrazek span{
        font-size: 6rem;
    }

    .top-opis{
        padding: 2rem;
        border-radius: 1.8rem;
    }

    .top-opis h3{
        font-size: 3.2rem;
    }

    .mini-info span{
        font-size: 1.3rem;
        padding: .8rem 1.1rem;
    }

    /* strzałki na mobile */
    .strzalka{
        width: 4rem;
        height: 4rem;
        font-size: 2.8rem;
        top: auto;
        bottom: -5.5rem;
        transform: none;
        padding: 0 0 .3rem 0;
    }

    .lewa{
        left: calc(50% - 5.5rem);
    }

    .prawa{
        right: calc(50% - 5.5rem);
    }

    .kropki{
        bottom: -4.3rem;
    }

    #miejsca{
        padding-bottom: 10rem;
    }

    /* plakaty na mobile */
    .plakaty{
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .plakat{
        width: 88vw;
        max-width: 34rem;
        border-radius: 2.2rem;
    }

    .plakat h3{
        font-size: 3.2rem;
        left: 2.2rem;
        bottom: 2.2rem;
    }

    .wieza{
        width: 5.8rem;
        height: 23rem;
        bottom: 9rem;
    }

    .wieza-lewa{
        left: 6.5rem;
    }

    .wieza-prawa{
        right: 6.5rem;
        height: 28rem;
    }

    .dach{
        border-left-width: 3.8rem;
        border-right-width: 3.8rem;
        border-bottom-width: 6.5rem;
        top: -6rem;
    }

    .kosciol{
        width: 18rem;
        height: 12rem;
        bottom: 7.5rem;
    }

    .ksiezyc{
        width: 5rem;
        right: 3rem;
        top: 3rem;
    }

    .chmurka{
        width: 9rem;
        left: 2rem;
        top: 5rem;
    }

    .skala1{
        width: 14rem;
        height: 19rem;
    }

    .skala2{
        width: 16rem;
        height: 22rem;
    }

    .slonce{
        width: 6rem;
        right: 3rem;
        top: 3rem;
    }

    .fala{
        width: 13rem;
        left: 2rem;
        bottom: 6.5rem;
    }

    .fala2{
        width: 9rem;
        left: 14rem;
        bottom: 4.5rem;
    }
}


@media (max-width: 600px){

    /* lżejszy burger */
    .burger{
        background-color: rgba(255,255,255,.85);
        color: var(--kolor-ciemny);
        box-shadow: 0 .8rem 2.5rem rgba(17,24,39,.12);
        border-radius: 999px;
        font-size: 2.8rem;
        padding: .2rem 1rem .5rem;
    }

    .burger:hover{
        background-color: var(--kolor-glowny);
        color: var(--kolor-bialy);
    }

    
    .telefon{
        animation: tablet-ruch-mobile 4s ease-in-out infinite !important;
        margin-top: 5rem;
    }

    @keyframes tablet-ruch-mobile{
        0%, 100%{
            transform: translateY(0) rotate(1deg);
        }
        50%{
            transform: translateY(-1.2rem) rotate(-1deg);
        }
    }

    #miejsca .kropki{
        display: none;
    }

    
    .strzalka{
        bottom: -5rem;
        background-color: var(--kolor-ciemny);
    }

    .lewa{
        left: calc(50% - 5rem);
    }

    .prawa{
        right: calc(50% - 5rem);
    }

    #miejsca{
        padding-bottom: 9rem;
    }
}


@media (max-width: 600px){

    .burger{
        width: 4.8rem;
        height: 4.8rem;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        line-height: 1;
        font-size: 2.7rem;
        border-radius: 50%;
        top: 1.8rem;
        right: 1.8rem;
    }

   
    .telefon{
        animation-name: tablet-ruch-mobile !important;
        animation-duration: 4s !important;
        animation-timing-function: ease-in-out !important;
        animation-iteration-count: infinite !important;
        transform-origin: center center;
        margin-top: 5rem !important;
    }

    @keyframes tablet-ruch-mobile{
        0%{
            transform: translateY(0) rotate(1deg);
        }
        50%{
            transform: translateY(-1.4rem) rotate(-1deg);
        }
        100%{
            transform: translateY(0) rotate(1deg);
        }
    }
}


@media (max-width: 600px){

   
    .burger{
        width: 5rem !important;
        height: 5rem !important;
        padding: 0 !important;
        margin: 0 !important;
        top: 1.8rem !important;
        right: 1.8rem !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: .45rem !important;

        background-color: rgba(255,255,255,.92) !important;
        color: var(--kolor-ciemny) !important;
        border-radius: 50% !important;
        box-shadow: 0 .8rem 2.5rem rgba(17,24,39,.14) !important;
        line-height: 1 !important;
        font-size: 0 !important;
    }

    .burger span{
        display: block !important;
        width: 2.2rem !important;
        height: .22rem !important;
        background-color: var(--kolor-ciemny) !important;
        border-radius: 999px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .burger:hover{
        background-color: var(--kolor-glowny) !important;
    }

    .burger:hover span{
        background-color: var(--kolor-bialy) !important;
    }

    
    #start article:nth-child(2){
        animation: tablet-mobile-ruch 3.6s ease-in-out infinite !important;
        transform-origin: center center !important;
        margin-top: 5rem !important;
        will-change: transform;
    }

    #start article:nth-child(2) .telefon{
        animation: none !important;
        transform: none !important;
        margin-top: 0 !important;
    }

    @keyframes tablet-mobile-ruch{
        0%{
            transform: translateY(0) rotate(1deg);
        }
        50%{
            transform: translateY(-1.6rem) rotate(-1deg);
        }
        100%{
            transform: translateY(0) rotate(1deg);
        }
    }
}


.zamknijX{
    z-index: 1000000;
}

.nakladka{
    z-index: 999999;
}

/* burger ukryty na desktopie */
.burger{
    display: none !important;
}

/* burger widoczny tylko na mobile */
@media (max-width: 600px){
    .burger{
        display: flex !important;
    }
}
