@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@media (min-width: 280px) {
  nav {
    z-index: 5000;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.23);
  }
  nav .btns-container {
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 80px;
    padding-top: 15px;
  }
  nav .btns-container button {
    float: right;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    font-size: 15px;
    position: relative;
    border: none;
    cursor: pointer;
    height: 50px;
    background-color: transparent;
    transition: 0.3s ease;
    display: none;
    min-width: 125px;
  }
  nav .btns-container button::before {
    content: "";
    display: block;
    height: 400%;
    width: 400%;
    top: 0%;
    left: -20%;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%) rotate(30deg);
    transition: 1s ease;
  }
  nav .btns-container button::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .btns-container button:hover::before {
    transform: translateX(0) rotate(30deg);
  }
  nav .btns-container button:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu-btn {
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 80px;
    height: 50px;
    border: none;
    background-color: transparent;
    transition: 0.3s ease;
  }
  nav .menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(200%) translateY(-50%);
    transition: 0.4s ease;
  }
  nav .menu-btn .name-active {
    transform: translateY(-50%) translateX(-50%);
  }
  nav .menu-btn::before {
    content: "";
    display: block;
    height: 400%;
    width: 400%;
    top: -60%;
    left: -20%;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%) rotate(30deg);
    transition: 0.7s ease;
  }
  nav .menu-btn::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .menu-btn:hover::before {
    transform: translateX(0) rotate(30deg);
  }
  nav .menu-btn:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu {
    padding-top: 80px;
    max-width: 500px;
    z-index: -10;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    transform: translateX(100%);
    transition: 0.6s ease;
  }
  nav .menu button {
    display: block;
    margin: auto;
    overflow: hidden;
    font-size: 15px;
    position: relative;
    border: none;
    cursor: pointer;
    height: 50px;
    background-color: transparent;
    transition: 0.3s ease;
    width: 90%;
    min-width: 280px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  nav .menu button::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(22, 23, 192);
    z-index: -1;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s ease;
  }
  nav .menu button::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(245, 245, 245);
    z-index: -2;
    position: absolute;
    transition: 0.3s ease;
  }
  nav .menu button:hover::before {
    transform: translateX(0);
  }
  nav .menu button:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    color: white;
  }
  nav .menu-visible {
    transform: translateX(0);
  }
  nav img {
    position: absolute;
    left: 10px;
    width: 45px;
    top: 50%;
    transform: translateY(-50%);
  }
  main {
    overflow: hidden;
    height: auto;
    background-color: grey;
  }
  main #hero {
    background-image: url("../images/tla/stadion.jpg");
    background-size: cover;
    background-position: 50%;
    overflow: hidden;
    position: relative;
    background-color: white;
    width: 100%;
    height: 100vh;
  }
  main #hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
  }
  main #hero .herb {
    height: auto;
    max-height: 230px;
    max-width: 180px;
    z-index: 10;
    display: block;
    top: 90px;
    left: 50%;
    width: 40%;
    position: absolute;
    transform: translateX(-50%);
  }
  main #hero .fala {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  main #hero .motto-container {
    font-weight: bold;
    color: white;
    height: 30%;
    width: 100%;
    position: absolute;
    bottom: 10%;
  }
  main #hero .motto-container .motto {
    text-align: center;
  }
  main #hero .motto-container .motto span {
    display: block;
  }
  main #hero .motto-container .motto span:nth-child(1) {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
  }
  main #hero .motto-container .motto span:nth-child(1) h1 {
    font-size: 25px;
  }
  main #hero .motto-container .motto span:nth-child(2) {
    font-size: 20px;
    margin-bottom: 15px;
  }
  main #hero .motto-container .motto span:nth-child(3) {
    font-size: 20px;
  }
  main #hero .motto-container #formularz {
    color: white;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    display: block;
    margin: auto;
    margin-top: 20px;
    height: 50px;
    border: 1px solid white;
    background-color: transparent;
    transition: 0.3s ease;
  }
  main #hero .motto-container #formularz:hover {
    color: white;
    transform: scale(1.025);
  }
  main #hero .motto-container #formularz::before {
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 110%;
    height: 110%;
    background-color: rgb(22, 23, 192);
  }
  main #hero .motto-container #formularz:hover::before {
    transform: translateX(0);
  }
  main #section1 {
    position: relative;
    width: 100%;
    height: 1600px;
    background-color: rgb(240, 240, 240);
  }
  main #section1 .fala {
    width: 100%;
    top: -2px;
    left: 0;
    transform: rotate(180deg);
    position: absolute;
  }
  main #section1 .fala3 {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  main #section1 span {
    text-align: center;
    padding: 20px;
    font-size: 25px;
    top: 30px;
    font-weight: bold;
    display: block;
    position: absolute;
    width: 100%;
    left: 50%;
    min-width: 280px;
    transform: translateX(-50%);
    color: rgb(22, 23, 100);
  }
  main #section1 span:nth-child(4) {
    top: 1075px;
  }
  main #section1 .hasla {
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
    position: absolute;
    width: 100%;
    max-width: 1200px;
    display: grid;
    z-index: 20;
    justify-content: center;
    grid-column-gap: 45px;
    grid-template-columns: 280px;
    grid-template-rows: 300px 300px 300px;
  }
  main #section1 .hasla .haslo {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    background-color: rgb(117, 117, 117);
    transition: 0.3s ease;
  }
  main #section1 .hasla .haslo::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    transform: translateX(70%) translateY(60%) rotate(40deg);
    z-index: 6;
    transition: 0.4s ease;
  }
  main #section1 .hasla .haslo::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(22, 23, 192);
    z-index: 5;
    transform: translateX(68%) translateY(60%) rotate(35deg);
    transition: 0.5s ease;
  }
  main #section1 .hasla .haslo:hover::before {
    transform: translateX(75%) translateY(70%) rotate(30deg);
  }
  main #section1 .hasla .haslo:hover::after {
    transform: translateX(70%) translateY(75%) rotate(60deg);
  }
  main #section1 .hasla .haslo:hover {
    transform: scale(1.05);
  }
  main #section1 .hasla .haslo .haslo-tlo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/trening.jpg");
    background-size: cover;
    background-position: 60%;
    transition: 0.7s ease;
  }
  main #section1 .hasla .haslo .haslo-tlo::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
  }
  main #section1 .hasla .haslo:nth-child(2) .haslo-tlo {
    background-image: url("../images/turnieje.jpg");
    filter: contrast(90%) saturate(1.5) brightness(130%);
  }
  main #section1 .hasla .haslo:nth-child(3) .haslo-tlo {
    background-image: url("../images/zabawa.jpg");
    filter: contrast(90%) saturate(1.5) brightness(130%);
  }
  main #section1 .hasla .haslo:hover > .haslo-tlo {
    transform: scale(1.15);
  }
  main #section1 .hasla .haslo:hover > .haslo-tlo::before {
    background-color: rgba(0, 0, 0, 0.35);
  }
  main #section1 .hasla .haslo .haslo-text {
    width: 100%;
    height: 100%;
  }
  main #section1 .hasla .haslo .haslo-text span {
    z-index: 50;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 20px;
    width: 100%;
    color: white;
    background: none;
    box-shadow: none;
    transition: 0.5s ease;
  }
  main #section1 .hasla .haslo:hover > .haslo-text > span {
    transform: translateY(-50%) translateX(-50%) scale(1.1);
  }
  main #section1 .aktualnosci {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    top: 1150px;
    height: 300px;
    max-width: 1000px;
    width: 90%;
  }
  main #section1 .aktualnosci .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide {
    margin: auto;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination {
    position: absolute;
    width: auto;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .splide__pagination__page {
    background-color: rgb(117, 117, 117);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .is-active {
    background-color: rgb(22, 23, 192);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow {
    background-color: transparent;
    border-radius: 0;
    height: 50px;
    width: 50px;
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg {
    height: 30px;
    width: 50px;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg path {
    fill: rgb(22, 23, 192);
    transform: translateX(-15px);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--prev:hover, main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--next:hover {
    transform: scaleY(0.8) translateY(-30px);
  }
  main #section1 .aktualnosci .slider .splide .splide__track {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent {
    overflow: hidden;
    position: relative;
    opacity: 0.3;
    z-index: -1;
    margin: auto;
    width: 90%;
    height: 350px;
    background-color: rgb(240, 240, 240);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    transform: scale(0.8);
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent::before {
    position: absolute;
    content: "";
    display: block;
    left: 50px;
    height: 330px;
    width: 210px;
    background-size: cover;
    background-image: url("../images/herb/uks-bialeTlo.svg");
    transform: rotate(30deg);
    opacity: 0.1;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .img {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    opacity: 0.9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon {
    position: absolute;
    height: 50%;
    width: 100%;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 15px;
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    height: 50px;
    max-width: 300px;
    width: 90%;
    border: none;
    border-radius: 0;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgb(22, 23, 192);
    color: rgb(22, 23, 192);
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button:hover {
    background-color: rgb(22, 23, 192);
    color: white;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent {
    z-index: 1;
    opacity: 1;
    width: 80%;
    transform: scale(1);
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .img {
    left: 0;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .postCon span {
    padding-left: 5px;
    padding-right: 5px;
    transform: translateX(-50%) translateY(calc(-50% + 15px));
    top: 5px;
  }
  main #section2 {
    width: 100%;
    height: 1400px;
    position: relative;
  }
  main #section2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 10;
  }
  main #section2::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../images/tla/murawa.jpg");
    background-size: cover;
    background-position-y: 50% !important;
    background-position-x: 50% !important;
    z-index: 0;
  }
  main #section2 .fala4 {
    z-index: 10;
    top: -2px;
    left: 0;
    transform: rotate(180deg);
    position: absolute;
    width: 100%;
  }
  main #section2 .fala5 {
    z-index: 10;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
  }
  main #section2 .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    z-index: 10;
    color: white;
    width: 280px;
    top: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: lighter;
    margin: 0;
  }
  main #section2 .sponsorzy {
    z-index: 20;
    left: 50%;
    top: 150px;
    transform: translateX(-50%);
    position: absolute;
    display: grid;
    grid-template-columns: 280px;
    grid-template-rows: 200px 200px 200px 200px 200px 200px;
    justify-content: space-around;
    width: 80%;
    max-width: 1200px;
  }
  main #section2 .sponsorzy .sponsor {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: none;
    background-color: rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
  }
  main #section2 .sponsorzy .sponsor:hover {
    transform: scale(1.1);
    background-color: rgba(100, 100, 100, 0.2);
  }
  main #section2 .sponsorzy .sponsor:hover > .logo > img {
    transform: translateY(-50%) translateX(-50%) scale(1.25);
    filter: saturate(1);
    opacity: 1;
  }
  main #section2 .sponsorzy .sponsor:hover > .name {
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
  }
  main #section2 .sponsorzy .sponsor .logo {
    position: absolute;
    height: 100%;
    width: 50%;
    transition: 0.3s ease;
  }
  main #section2 .sponsorzy .sponsor .logo img {
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    height: 95%;
    position: absolute;
    filter: saturate(0);
    transition: 0.6s ease;
    opacity: 0.7;
  }
  main #section2 .sponsorzy .sponsor .name {
    opacity: 0.5;
    position: absolute;
    width: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.4s ease;
  }
  main #section2 .sponsorzy .sponsor .name span {
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 25px;
    color: white;
    transition: 0.5s ease;
  }
  main #section2 .sponsorzy .sponsor::before {
    transition: 0.4s ease;
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: black;
    opacity: 0.5;
  }
  main #section2 .sponsorzy .sponsor:hover::before {
    transform: translateX(-50%) translateY(-50%) scaleY(1.2);
    background-color: white;
  }
  main #section2 .sponsorzy .sponsor:nth-child(2) .name span, main #section2 .sponsorzy .sponsor:nth-child(3) .name span {
    font-size: 18px;
  }
  main #section2 .sponsorzy .sponsor:nth-child(3) .name .boldText {
    font-weight: bolder;
    font-size: 20px;
  }
  main #section2 .sponsorzy .sponsor:nth-child(3) .name .cursiveText {
    font-style: italic;
    font-size: 15px;
  }
  main #section2 .sponsorzy .sponsor:nth-child(5) .name span {
    font-size: 20px;
  }
  main #section2 .sponsorzy .sponsor:nth-child(6) .name span {
    font-size: 18px;
  }
  main #kontakt {
    position: relative;
    height: 425px;
    background-color: white;
    color: rgb(22, 23, 140);
  }
  main #kontakt .fala6 {
    position: absolute;
    top: -2px;
    left: 0;
    transform: rotate(180deg);
    width: 100%;
    z-index: 10;
  }
  main #kontakt .fala7 {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  main #kontakt .kontakt-content {
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    position: absolute;
    width: 100%;
    max-width: 1000px;
  }
  main #kontakt .kontakt-content .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    margin: auto;
    font-size: 30px;
  }
  main #kontakt .kontakt-content .kontakt-dane {
    padding: 5px;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    position: absolute;
    width: 100%;
    min-width: 280px;
    max-width: 450px;
    height: 200px;
    text-align: center;
  }
  main #kontakt .kontakt-content .kontakt-dane .numer-title, main #kontakt .kontakt-content .kontakt-dane .adres-title, main #kontakt .kontakt-content .kontakt-dane .adresMailowy-title {
    display: block;
  }
}
@media (min-width: 720px) {
  main #hero .herb {
    height: auto;
    width: 40%;
    max-width: 250px;
  }
  main #hero .motto-container .motto {
    font-weight: normal;
  }
  main #hero .motto-container .motto span:nth-child(1) {
    font-size: 40px;
  }
  main #hero .motto-container .motto span:nth-child(1) h1 {
    font-size: 40px;
  }
  main #hero .motto-container .motto span:nth-child(2) {
    font-size: 30px;
  }
  main #hero .motto-container .motto span:nth-child(3) {
    font-size: 25px;
  }
  main #section1 {
    height: 1600px;
  }
  main #section1 .hasla {
    top: 140px;
    grid-template-columns: 350px;
  }
  main #section1 .aktualnosci {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    top: 1150px;
    height: 300px;
    max-width: 1000px;
    width: 90%;
  }
  main #section1 .aktualnosci .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide {
    margin: auto;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination {
    position: absolute;
    width: auto;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .splide__pagination__page {
    background-color: rgb(117, 117, 117);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .is-active {
    background-color: rgb(22, 23, 192);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow {
    background-color: transparent;
    border-radius: 0;
    height: 50px;
    width: 50px;
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg {
    height: 30px;
    width: 50px;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg path {
    fill: rgb(22, 23, 192);
    transform: translateX(-15px);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--prev:hover, main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--next:hover {
    transform: scaleY(0.8) translateY(-30px);
  }
  main #section1 .aktualnosci .slider .splide .splide__track {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent {
    overflow: hidden;
    position: relative;
    opacity: 0.3;
    z-index: -1;
    margin: auto;
    width: 90%;
    height: 350px;
    background-color: rgb(240, 240, 240);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    transform: scale(0.8);
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent::before {
    position: absolute;
    content: "";
    display: block;
    left: 50px;
    height: 330px;
    width: 210px;
    background-size: cover;
    background-image: url("../images/herb/uks-bialeTlo.svg");
    transform: rotate(30deg);
    opacity: 0.1;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .img {
    z-index: 20;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    opacity: 0.9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon {
    position: absolute;
    height: 50%;
    width: 100%;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 15px;
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    height: 50px;
    max-width: 300px;
    width: 90%;
    border: none;
    border-radius: 0;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgb(22, 23, 192);
    color: rgb(22, 23, 192);
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button:hover {
    background-color: rgb(22, 23, 192);
    color: white;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent {
    z-index: 1;
    opacity: 1;
    width: 80%;
    transform: scale(1);
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .img {
    left: 0;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .postCon span {
    padding-left: 5px;
    padding-right: 5px;
    transform: translateX(-50%) translateY(calc(-50% + 15px));
    top: 5px;
  }
}
@media (min-width: 1050px) {
  nav .btns-container button {
    display: inline-block;
  }
  nav .menu-btn {
    display: none;
  }
  main #hero .herb {
    left: auto;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: auto;
  }
  main #hero .motto-container {
    width: 50%;
    left: 0;
    top: 50%;
    bottom: auto;
    height: auto;
    transform: translateY(-50%);
  }
  main #hero .motto-container .motto {
    text-align: center;
  }
  main #hero .motto-container .motto span {
    display: block;
  }
  main #hero .motto-container .motto span:nth-child(1) {
    font-weight: bold;
    margin-bottom: 20px;
  }
  main #hero .motto-container .motto span:nth-child(1) h1 {
    font-size: 35px;
  }
  main #hero .motto-container .motto span:nth-child(2) {
    font-size: 30px;
    margin-bottom: 15px;
  }
  main #hero .motto-container .motto span:nth-child(3) {
    font-size: 25px;
  }
  main #section1 {
    height: 1000px;
  }
  main #section1 span {
    top: 50px;
  }
  main #section1 span:nth-child(4) {
    top: 455px;
  }
  main #section1 .hasla {
    top: 140px;
    grid-template-columns: 25% 25% 25%;
    grid-template-rows: 300px;
  }
  main #section1 .aktualnosci {
    top: 550px;
  }
  main #section1 .aktualnosci .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide {
    margin: auto;
    width: 100%;
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination {
    position: absolute;
    width: auto;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .splide__pagination__page {
    background-color: rgb(117, 117, 117);
  }
  main #section1 .aktualnosci .slider .splide .splide__pagination .is-active {
    background-color: rgb(22, 23, 192);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow {
    background-color: transparent;
    border-radius: 0;
    height: 50px;
    width: 50px;
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg {
    height: 30px;
    width: 50px;
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow svg path {
    fill: rgb(22, 23, 192);
    transform: translateX(-15px);
  }
  main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--prev:hover, main #section1 .aktualnosci .slider .splide .splide__arrows .splide__arrow--next:hover {
    transform: scaleY(0.8) translateY(-30px);
  }
  main #section1 .aktualnosci .slider .splide .splide__track {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list {
    overflow: visible;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent {
    overflow: hidden;
    position: relative;
    opacity: 0.3;
    z-index: -1;
    margin: auto;
    width: 90%;
    height: 350px;
    background-color: rgb(240, 240, 240);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    transform: scale(0.8);
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent::before {
    position: absolute;
    content: "";
    display: block;
    left: 75px;
    height: 330px;
    width: 210px;
    background-size: cover;
    background-image: url("../images/herb/uks-bialeTlo.svg");
    transform: rotate(30deg);
    opacity: 0.1;
    filter: brightness(0.6);
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .img {
    z-index: 20;
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    height: 100%;
    width: 50%;
    opacity: 0.9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: 0.4s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 25px;
    transition: 0.3s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    height: 50px;
    max-width: 300px;
    width: 90%;
    border: none;
    border-radius: 0;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgb(22, 23, 192);
    color: rgb(22, 23, 192);
    transition: 0.15s ease-in-out;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .splide__slide .slideContent .postCon button:hover {
    background-color: rgb(22, 23, 192);
    color: white;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent {
    z-index: 1;
    opacity: 1;
    width: 80%;
    transform: scale(1);
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .img {
    left: 0;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .postCon {
    width: 50%;
  }
  main #section1 .aktualnosci .slider .splide .splide__track .splide__list .is-active .slideContent .postCon span {
    padding-left: 5px;
    padding-right: 5px;
    transform: translateX(-50%) translateY(calc(-50% + 30px));
    top: 5px;
  }
  main #section2 {
    height: 900px;
  }
  main #section2 .title {
    top: 80px;
    font-size: 30px;
    width: 600px;
  }
  main #section2 .sponsorzy {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    grid-template-columns: 300px 300px;
    grid-template-rows: 200px 200px 200px;
  }
}
:focus {
  outline: none;
}/*# sourceMappingURL=style.css.map */