@font-face {
    font-family: "MAll";
    src: url("./assets/font/Allison-Regular.woff2") format("woff2"),
         url("./assets/font/Allison-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "LGuy";
    src: url("./assets/font/LuckiestGuy-Regular.woff2") format("woff2"),
         url("./assets/font/LuckiestGuy-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NS";
    src: url("./assets/font/NotoSans-VariableFont_wdth\,wght.woff2") format("woff2"),
         url("./assets/font/NotoSans-VariableFont_wdth\,wght.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
}

img{
  width: 100%;
  height: 100%;
}

h1, h2, h3 {
  font-family: "LGuy", cursive;
  font-weight: 700;
}
.flex{
    display: flex;
    justify-content:center;
    align-items:center;
}
a{
    text-decoration: none;
    text-transform: uppercase;
}
section{
    position: relative;
    width: 100vw;
    overflow-x: hidden;
}



/* globalne tło z gwiazdami */
.stars{
  position: fixed; 
  inset:0; 
  z-index:0; 
  pointer-events:none; 
  overflow:hidden;
}
.stars__layer{
  position:absolute; 
  inset:-10vh -10vw; 
  will-change: transform;
}
.star{
  position:absolute; 
  border-radius:50%;
  width:2px; 
  height:2px; 
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 6px rgba(255,255,255,.8);
  animation: twinkle 3s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes twinkle{
  0%,100%{ opacity:.20; transform: scale(1) }
  50%{     opacity:1;   transform: scale(1.3) }
}

@media (prefers-reduced-motion: reduce){
  .stars__layer{ transform:none !important }
  .star{ animation:none; opacity:.5 }
}



.MRnav{
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  height:64px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0 clamp(2px, 4vw, 8px);
  z-index:20; 
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,.01);
}

.logoLink{ 
    display:inline-flex; 
    align-items:center;
   }
.logoBox{ 
    width: 60px; 
    height: 60px; 
}
.nav-toggle{
  display:flex; 
  flex-direction:column; 
  justify-content:center; 
  gap:6px;
  width: 44px; 
  height: 44px; 
  padding:0; 
  background: transparent; 
  border: 0; 
  cursor: pointer;
   position: relative;
  z-index: 10001;
}
.nav-toggle--fixed{
  position: fixed; 
  top: 12px; 
  right: 12px;
  z-index: 10001; 
}
.nav-toggle span{
  display:block; 
  width: 26px;
  height: 2px; 
  background: #fff;
  transition: transform .35s ease, opacity .25s ease, width .25s ease;
  transform-origin: 7px 1px;
}
.nav-toggle.is-open span:nth-child(1){ 
    transform: rotate(45deg) translate(1px, 1px); 
    width: 26px; }
.nav-toggle.is-open span:nth-child(2){ 
    opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ 
    transform: rotate(-45deg) translate(2px, -2px); 
    width: 26px; }


.MRcurtain{
  position: fixed; 
  inset: 0;
  height: 100dvh; 
  width: 100vw;
  z-index: 9000;
  background:
    radial-gradient(120% 120% at 10% 10%, rgba(120,180,255,.20) 0%, transparent 60%),
    radial-gradient(120% 120% at 90% 20%, rgba(250,120,200,.8) 0%, transparent 85%),
    radial-gradient(150% 120% at 50% 100%, rgba(120, 253, 255, 0.125) 0%, transparent 55%),
    rgba(8,10,16,.5);
  backdrop-filter: blur(32px) saturate(120%);
  -webkit-backdrop-filter: blur(32px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transform: translateY(-100%);
  transition: transform var(--speed) cubic-bezier(.2,.8,.2,1);
}
.MRcurtain.is-open{ transform: translateY(0); }
.MRcurtain[hidden]{ 
    display:block; 
}

/* menu list */
.nav-list{
  list-style: none; 
  margin: 0; 
  padding: 0;
  display: grid; 
  gap: clamp(.6rem, 1.5vw, 1rem);
  text-align: center;
  z-index: 500;
}
.nav-list a{
  font: 600 clamp(18px, 2.6vw, 32px)/1.2 system-ui, -apple-system;
  color: #fff;
  text-shadow: 
  2px 2px 2px rgba(255, 248, 255, 0.85),
  3px 2px 1px rgba(152, 4, 88, 0.85),
  -2px 2px 1px rgba(249, 126, 251, 0.85),
  -3px 3px 3px rgba(7, 0, 7, 0.85);
  letter-spacing: 2px;
  text-decoration: none;
  padding: .2rem .8rem; 
  border-radius: 14px;
  font-family: 'LGuy';
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, text-shadow .25s ease;
}
.nav-list a:hover,
.nav-list a:focus-visible{
 
  transform: translateY(-1px);
  outline: none;
  color: #850451;
  text-shadow: 
  2px 2px 1px rgba(250, 250, 243, 0.85),
  3px 3px 3px rgba(147, 4, 152, 0.85),
  -2px 4px 3px rgba(249, 126, 251, 0.85);
}
body.menu-open{
  overflow: hidden;
  touch-action: none;
}

body.menu-open .MRnav{ border-bottom-color: transparent; }
body.menu-open .logoLink{ visibility: hidden; }

    
@media (prefers-reduced-motion: reduce){
  .MRcurtain{ transition: none }
  .nav-toggle span{ transition: none }
}


header{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerBox{
position:relative;
width: 100vw;
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.headerBox.header0{
background-image: url(./assets/img/res1366_8.jpg);
}
.headerBox.header1{
background-image: url(./assets/img/res1366_2.jpg);
}
.headerBox.header2{
background-image: url(./assets/img/res1366_3.jpg);
}
.headerBox.header3{
background-image: url(./assets/img/res1366_4.jpg);
}
.headerBox.header4{
background-image: url(./assets/img/res1366_6.jpg);
}

.headerPasek{
    position: relative;
    width: 100vw;
    height: 50vh;
    flex-direction: column;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(4px);
    box-shadow: 
    2px 2px 4px rgba(7, 0, 7, 0.65),
    -2px -2px 4px rgba(7, 0, 7, 0.65);
}
h2.titleHeader{
  
    font-size: 4rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 2px rgba(7, 0, 7, 0.65);
    text-align: center;
}
.podTit{
      font-family: "MAll";
      font-size: 5rem;
      color: #fff;
      text-align: center;
}
.textHeader{
    font-family: "NS";
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

section{
    position: relative;
    width: 100vw;
}
.sectionText{
   text-align: center;
}
.sectionBox{
    width: 80vw;
    margin-bottom: 3rem;
    flex-direction: column;
}
.sectionTitle{
    flex-direction: column;
}
.sectionTitle h4{
    font-family: 'LGuy';
    letter-spacing: 4px;
    font-size: 3.5rem;
}
.sectionTitle .podSekcja{
    font-family: 'MAll';
    letter-spacing: 3px;
    font-size: 4rem;
}
.sectionTextB{
    flex-direction: column;
    text-align: center;
}
.sectionTextB .sectionParagraf{
    font-family: "NS";
    font-size: 1rem;
    margin: 1rem 0;
}

.sectionBtn{
  position: relative;
  width: 100vw;
  height: auto;
  margin: 2rem 0;
  text-align: center;
}
.sectionBtn .sbtn{
  width: 300px;
  height: 100px;
  background-color: rgba(255,255,255,.14);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid #fff;
}
.sectionBtn .sbtn a{
  color: #fff;
  font-family: "LGuy";
  font-size: 2rem;
  text-shadow: 2px 2px 2px rgba(7, 0, 7, 0.85);
transition: all 0.3s ease-in-out;
}
.sectionBtn .sbtn:hover a{
  text-shadow: none;
  font-size: 2.5rem;
}
/**SPIS BTN*/
.spisBtnBox{
  width: 100vw;
  height: auto;
  justify-content: space-evenly;
  margin: 2rem 0;
}
.spisBtn{
  width: 30vw;
  background-color: rgba(7, 0, 7, 0.85);
  height: 100px;
  background-color: rgba(255,255,255,.14);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid #fff;
}
.spisBtn a{
  text-align: center;
  color: #fff;
  font-family: "LGuy";
  font-size: 2rem;
  text-shadow: 2px 2px 2px rgba(7, 0, 7, 0.85);
  transition: all 0.3s ease-in-out;
}
.spisBtn:hover a{
  text-shadow: none;
  font-size: 2.5rem;
}

/*=======PASEK KOLOROWY=======*/
.pasek{
  background-color: rgba(250, 250, 243, 0.05);
  backdrop-filter: blur(2px);
  height: auto;
}
.pasek .pasekBox{
  position: relative;
  width: 100vw;
  height: auto;
  padding: 2rem 0;
}
.pasek .pasekBox .pB{
  position: relative;
  width: 20vw;
  height: 20vw;

  background-position: center;
  background-size: cover;
}
.pasek .pasekBox .pB.pB1{
  background-image: url(./assets/img/kw700_1.jpg);
}
.pasek .pasekBox .pB.pB2{
  background-image: url(./assets/img/kw700_2.jpg);
}
.pasek .pasekBox .pB.pB3{
  background-image: url(./assets/img/kw700_3.jpg);
}
.pasek .pasekBox .pB.pB4{
  background-image: url(./assets/img/kw700_4.jpg);
}
.pasek .pasekBox .pB.pB5{
  background-image: url(./assets/img/kw700_5.jpg);
}


/*=================
  PRZERYWNIK HASŁO
  =================*/
  .przerywnik{
    height: 60vh;
    background-color: #850451;
    margin-bottom: 3rem;
  }
   .przerywnik .przerywnikBox{
    width: 100vw;
    height: 60vh;
    background-color: cadetblue;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
   }
 .przerywnik .przerywnikBox.przerBox1{
  background-image: url(./assets/img/res1366_7.jpg);
 }

  .przerywnik .przerywnikBox .przerText{
    width: 100vw;
    height: 50vh;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(4px);
    box-shadow: 
    2px 2px 4px rgba(7, 0, 7, 0.65),
    -2px -2px 4px rgba(7, 0, 7, 0.65);
  }
.przerText h6{
  font-family: 'MAll';
  font-size: 5rem;
  letter-spacing: 2px;
    text-shadow: 2px 2px 2px rgba(7, 0, 7, 0.65);
    text-align: center;
}











/* =========================
   FOOTER – MAGICZNE RESKO
   ========================= */

.mr-footer {
  position:relative;
  flex-direction: column;
  width: 100%;
  bottom: 0;
  background: linear-gradient(10deg, #a9b5ce, #0f0f0f);
  color: #e5e7eb;
  font-family: inherit;
  padding: 1rem 1.5rem;
  font-family: "NS";
}

.mr-footer__inner {
  position: relative;
  width:80vw;
  margin: 1rem 0;
  justify-content: space-evenly;
  flex-wrap: wrap;

}
 .mr-footer__brand .MRimgBox{
    width:250px;
}


.mr-footer__meta{
    flex-direction: column;
    text-align: center;
    width: 23vw;
}
.mr-footer__funding{
    font-size: 0.9rem;
}
.mr-footer__meta .ministerstwo{
    width:250px;
}



.mr-footer__nav {
  flex-direction:column;
  
}

.mr-footer__link {
  font-size: 0.9rem;
  color: #e0e7ff;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 300px;
  height: 80px;
background-color: #000;
  margin: 20px;
}

.mr-footer__link:hover {
  color: #b40568;
  transform: scale(1.06);
} 

.mr-footer__copyright {
    width: 100vw;
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
  background-color: #020617;
  text-align: center;
}

/* MAPA MAPA */
.mapBox{
  position: relative;
  width: 100vw;
  height: 100vh;
    display: flex;
    justify-content: center;
    align-items:center ;
}
  #map {
      width: 80%;
      height: 80vh;
    }
  .popup h3 {
      margin: 0 0 5px 0;
    }


/* sekcja z kartami */
.carts{
  width: 100%;
  padding: 60px 0;
}

.cartsBox{
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* karta */
.card{
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(3px);
}

.cardBody{
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
  text-align: center;
}

.cardTop{
  margin-bottom: 6px;
}

.cardTit{
  font-family: "LGuy";
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin: 0;
}

.cardMeta{
  font-family: 'MAll';
  opacity: 0.85;
  font-size: 1.95rem;
  margin-top: 6px;
}

.cardText{
  font-family: 'NS';
  font-size: 1rem;
  opacity: 0.92;
  line-height: 1.55;
  margin: 0;
}

/* przycisk */
.cardBtn{
  margin-top: auto;
  padding-top: 10px;
}

.cardLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
   font-family: "LGuy";
  font-size: 1rem;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgb(77, 2, 33);
  color: #fff;
}

/* warianty bloków (delikatny pasek u góry karty) */
.card.c1{ box-shadow: inset 0 6px 0 0 rgba(255,255,255,0.25); }
.card.c2{ box-shadow: inset 0 6px 0 0 rgba(255,255,255,0.18); }
.card.c3{ box-shadow: inset 0 6px 0 0 rgba(255,255,255,0.22); }
.card.c4{ box-shadow: inset 0 6px 0 0 rgba(255,255,255,0.16); }

/* responsywność */
@media (max-width: 900px){
  .cartsBox{
    grid-template-columns: 1fr;
  }
  .cardBody{
    min-height: auto;
  }
}


.audioSection{
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.audioBox{
  width: 320px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.audioTitle{
  font-size: 1.1rem;
  font-weight: 600;
}

.audioSub{
  font-size: 0.85rem;
  opacity: 0.7;
}

.audioBox audio{
  width: 100%;
  margin-top: 0.5rem;
}



/* sekcja video: piosenki */
.videoSection{
  width: 90vw;
  max-width: 1100px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.videoBox{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.videoTitle{
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.videoFrame{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */

  overflow: hidden;
}

.videoFrame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*PDF KAFELKI*/

.edu-grid {
  width: 80vw;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.edu-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.edu-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.edu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}

.edu-overlay h5 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.edu-btn {
  align-self: flex-start;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #ff3f8f;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.edu-btn:hover {
  background: #ff6aa8;
  transform: scale(1.05);
}


/* ====== TILES GRID ====== */
.tilesSection { width: 100vw; }
.tilesGrid{
  width: 80vw;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  align-items: stretch;
}

@media (max-width: 1100px){
  .tilesGrid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 700px){
  .tilesGrid{ width: 90vw; grid-template-columns: 1fr; }
}

.tileCard{
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateZ(0);
}

.tileOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 10px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.15) 55%, rgba(0,0,0,.0));
}

.tileTitle{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0;
  text-transform: uppercase;
}

.tileDesc{
  margin: 0;
  opacity: .92;
  font-size: 14px;
  line-height: 1.3;
  max-width: 40ch;
}

.tileBtn{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.tileBtn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.75);
}

.tileCard:hover .tileOverlay{
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.20) 55%, rgba(0,0,0,.0));
}

.tiles {
  width: 100vw;
  padding: 80px 0;
}

.tilesBox {
  width: 80vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.tile {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
}

.tileOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.tileOverlay h5 {
  font-size: 1.1rem;
  line-height: 1.3;
}

.tileBtn {
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.tileBtn:hover {
  background: #fff;
  color: #000;
}

.audioTile audio {
  width: 100%;
}

.darkTile {
  background: #111;
}

.videoTile {
  background: #000;
}

.videoOverlay {
  justify-content: center;
}

.videoWrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 12px;
}

.videoWrap iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}



/*===================
  MEDIA MEDIA MEDIA
======================*/
@media (max-width: 900px) {
  .spisBtn{
    margin: 10px;
  }
  .spisBtn a{
  color: #fff;
  font-family: "LGuy";
  font-size: 1.2rem;
  text-shadow: 2px 2px 2px rgba(7, 0, 7, 0.85);
  transition: all 0.3s ease-in-out;
}

  .mr-footer__nav {    
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  } 
  h2.titleHeader,
  .sectionTitle h4
  {
    font-size: 3rem;
    letter-spacing: 2px;
}
.podTit,
.sectionTitle .podSekcja
{ 
      font-size:4rem;
}

.textHeader,
.sectionText .sectionParagraf
{
    font-size: 0.81rem;
}
}



@media (max-width: 757px){

  .przerywnik{
    height: 50vh;
    margin-bottom: 2rem;
  }
   .przerywnik .przerywnikBox{
    height: 50vh;
   }

  .przerywnik .przerywnikBox .przerText{
    height: 40vh;
  }
.przerText h6{
  font-size: 4rem;
}







.mr-footer__brand .MRimgBox
 {
    width: 200px;
}
 h2.titleHeader,
 .sectionTitle h4
 {
    font-size: 2.53rem;
    letter-spacing: 2px;
}
.podTit,
.sectionTitle .podSekcja
{ 
      font-size:3rem;
}
.textHeader,
.sectionText .sectionParagraf
{
    font-size: 0.81rem;
}





}

@media (max-width: 570px) {

  .przerywnik{
    height: 40vh;
    margin-bottom: 2rem;
  }
   .przerywnik .przerywnikBox{
    height: 40vh;
   }

  .przerywnik .przerywnikBox .przerText{
    height: 30vh;
  }
.przerText h6{
  font-size: 3rem;
}


.podTit,
.sectionTitle .podSekcja
{ 
      font-size:2rem;
}

.spisBtnBox{
  justify-content: center;
  flex-wrap: wrap;
}
.spisBtn{
  width: 40vw;
  
}

  .mr-footer__brand .MRimgBox {
    width: 150px;
  }

  .mr-footer__meta {
    width: 80vw;
  }

  .mr-footer__meta .ministerstwo {
    width: 150px;
  }

  .mr-footer__link {
    width: 240px;
    height: 54px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px){

  
 h2.titleHeader,
 .sectionTitle h4
 {
    font-size: 2rem;
    letter-spacing: 2px;
}
.podTit,
.sectionTitle .podSekcja
{ 
      font-size:2rem;
}
.textHeader,
.sectionText .sectionParagraf
{
    font-size: 0.81rem;
}
  
    .mr-footer__link
 {
    font-size: 0.69rem;
    width: 250px;
    height: 50px;
    margin: 10px;
}
}