@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
    scrollbar-gutter: stable;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image: url(/pngs/bgMain2ciemniej.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    background-color: #000;
    color: white;
}

.introTransition {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.6s ease;
}

.introTransition img {
    width: 100px;
    animation: zoom 2s ease-in-out forwards;
}

@keyframes zoom {
    from { transform: scale(0.8); }
    to { transform: scale(1.1); }
}

.container{
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 40px;
    box-sizing: border-box
}

.nav{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.navInner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-direction: row;
}

.navList{
    display: flex;
    grid-auto-flow: column;
    align-items: center;
    column-gap: 100px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.navList li{
    white-space: nowrap;
}

.navToggle{
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.navLogo img{
    height: 54px;
}

.navList a{
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.navCTA a{
    padding: 10px 26px;
    border-radius: 10px;
    background: white;
    color: black;
    font-weight: 500;
    font-size: 15px;
}

.event{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 200px;
}

.eventLogo img{
    max-width: 340px;
}

.eventLabel{
    text-align: center;
    font-size: 28px;
    margin-bottom: 0px;
}

.countdown{
    display: flex;
    gap: 8px;
}

.countdownItem{
    text-align: center;
}

.countdownValue{
    font-size: 24px;
}

.countdownUnit{
    font-size: 24px;
}

.previousEvents{
    padding: 80px 20px;
    text-align: center;
}

.previousEventsGrid{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.eventTitle{
    display: block;
    position: relative;
    z-index: 10;
    width: 450px;
    height: 250px;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.eventTitle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.eventTitle:hover img{
    transform: scale(1.05);
}

.eventTitle:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.tuning-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tuning-hero {
    max-width: 760px;
    margin: 0px auto;
    text-align: center;
}

.tuning-hero h2 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tuning-hero p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
    color: #efefef;
}

.tuning-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-width: 200px;
    height: 48px;
    padding: 0 28px;
    border-radius: 14px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tuning-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.facebook-container {
    width: 100%;
    max-width: 1280px;
    margin: 70px auto 0px;
    padding: 60px 20px;
}

.facebook-hero {
    max-width: 760px;
    margin: 0px auto;
    text-align: center;
}

.facebook-hero h2 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.facebook-hero p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.6;
    color: #efefef;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-width: 200px;
    height: 48px;
    padding: 0 28px;
    border-radius: 14px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.facebook-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

@media (max-width: 768px) {

    *,
    *::before,
    *::after{
        box-sizing: border-box;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;

        background-image: url("/pngs/mobileBg.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .container {
        background: none !important;
    }

    body.menu-open{
        overflow: hidden;
    }

    body.menu-open .event, body.menu-open .previousEvents{
        opacity: 0;
    }

    .nav{
        left: 0;
        transform: none;
        width: 100%;
        padding: 0px 30px 0px 35px;
    }

    .navInner{
        justify-content: space-between;
        align-items: center;
    }

    .navLogo{
        position: relative;
        z-index: 1000;
        scale: 0.9;
    }

    .navToggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1001;
    }

    .navToggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .navToggle span:nth-child(1) { top: 0; }
    .navToggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .navToggle span:nth-child(3) { bottom: 0; }

    .navToggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .navToggle.open span:nth-child(2) {
        opacity: 0;
    }

    .navToggle.open span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

.navList{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: 10;

    pointer-events: none;
}

.navList.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}

    .navList.active{
        display: flex;
    }

    .event{
        flex-direction: column;
        gap: 32px;
        z-index: 0;
    }

    .eventLogo img{
        max-width: 240px;
    }

    .eventLabel{
        text-align: center;
        font-size: 22px;
        margin-bottom: 0px;
    }

    .countdown{
        display: flex;
        gap: 8px;
    }

    .countdownItem{
        text-align: center;
    }

    .countdownValue{
        font-size: 18px;
    }

    .countdownUnit{
        font-size: 18px;
    }

    .previousEvents{
        padding: 20px 20px 20px;
        text-align: center;
    }

    .previousEventsGrid{
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .eventTitle{
        display: block;
        position: relative;
        z-index: 10;
        width: 250px;
        height: 250px;
        overflow: hidden;
        border-radius: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .eventTitle img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .tuning-container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    .tuning-hero {
        max-width: 760px;
        margin: 100px auto;
        text-align: center;
    }

    .tuning-hero h2 {
        font-size: 27px;
        line-height: 1.12;
        margin: 0 0 26px;
    }

    .tuning-hero p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .facebook-container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    .facebook-hero {
        max-width: 760px;
        margin: 100px auto;
        text-align: center;
    }

    .facebook-hero h2 {
        font-size: 27px;
        line-height: 1.12;
        margin: 0 0 26px;
    }

    .facebook-hero p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;

        background-image: url("/pngs/tabletBg2.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .container {
        background: none !important;
    }

    body.menu-open{
        overflow: hidden;
    }

    body.menu-open .event, body.menu-open .previousEvents{
        opacity: 0;
        pointer-events: none;
    }

    .nav{
        left: 0;
        transform: none;
        width: 100%;
        padding: 0px 60px 0px 65px;
    }

    .navInner{
        justify-content: space-between;
        align-items: center;
    }

    .navLogo{
        position: relative;
        z-index: 1000;
        scale: 1;
    }

    .navList{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        list-style: none;
        opacity: 0;
        margin: 0;
        padding: 0;
        z-index: 10;
        pointer-events: none;
    }

    .navList.active{
        opacity: 1;
        display: flex;
        flex-direction: column;
        pointer-events: auto;
    }

    .navToggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1001;
    }

    .navToggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .navToggle span:nth-child(1) { top: 0; }
    .navToggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .navToggle span:nth-child(3) { bottom: 0; }

    .navToggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .navToggle.open span:nth-child(2) {
        opacity: 0;
    }

    .navToggle.open span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    .navList.active{
        display: flex;
    }

    .event{
        flex-direction: column;
        gap: 32px;
        z-index: 0;
    }

    .eventLogo img{
        max-width: 320px;
    }

    .eventLabel{
        text-align: center;
        font-size: 22px;
        margin-bottom: 0px;
    }

    .countdown{
        display: flex;
        gap: 8px;
    }

    .countdownItem{
        text-align: center;
    }

    .countdownValue{
        font-size: 20px;
    }

    .countdownUnit{
        font-size: 20px;
    }

    .previousEvents{
        padding: 80px 20px;
        text-align: center;
    }

    .previousEventsGrid{
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .eventTitle{
        display: block;
        position: relative;
        z-index: 10;
        width: 500px;
        height: 300px;
        overflow: hidden;
        border-radius: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .eventTitle img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
}

/* =========================
   NTP VIDEO SLIDER
========================= */

.ntp-video-slider-section {
    width: 100%;
    padding: 40px 0 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ntp-video-slider-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 20px;
}

.ntp-video-slider-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.ntp-video-slider-wrap {
    width: 100%;
    max-width: 1500px; /* było szerzej - zwężone */
    margin: 0 auto;
    position: relative;
    padding: 0 72px;
    overflow: hidden;
}

.ntp-video-slider {
    width: 100%;
    max-width: 1180px; /* zawęża sam viewport slidera */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 12px 0;
    pointer-events: auto; /* sam viewport nie łapie kliku */
}

.ntp-video-slider::before,
.ntp-video-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    z-index: 3;
    pointer-events: auto;
}

.ntp-video-slider::before {
    left: 0;
}

.ntp-video-slider::after {
    right: 0;
}

.ntp-video-track {
    display: flex;
    align-items: center;
    gap: 24px;
    will-change: transform;
    transition: transform 0.45s ease;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.ntp-video-slide {
    flex: 0 0 auto;
    width: 240px; /* było 260 */
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: scale(0.72);
    opacity: 0.45;
    filter: blur(1px);
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    pointer-events: auto;
}

.ntp-video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
    border-radius: 24px;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
}

.ntp-video-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.ntp-video-slide.ntp-level-2 {
    transform: scale(0.78);
    opacity: 0.42;
    filter: blur(0.9px);
}

.ntp-video-slide.ntp-level-1 {
    transform: scale(0.88);
    opacity: 0.72;
    filter: blur(0.25px);
}

.ntp-video-slide.ntp-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 14px 40px rgba(0,0,0,0.32);
}

.ntp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
    touch-action: manipulation;
}

.ntp-slider-btn:hover {
    background: rgba(255,255,255,0.16);
}

.ntp-prev {
    left: 8px;
}

.ntp-next {
    right: 8px;
}

/* laptop */
@media (max-width: 1200px) {
    .ntp-video-slider-wrap {
        max-width: 1260px;
        padding: 0 58px;
    }

    .ntp-video-slider {
        max-width: 980px;
    }

    .ntp-video-track {
        gap: 18px;
    }

    .ntp-video-slide {
        width: 205px;
        border-radius: 20px;
    }

    .ntp-video-slide video {
        border-radius: 20px;
    }

    .ntp-slider-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 26px;
    }

    .ntp-video-slider::before,
    .ntp-video-slider::after {
        width: 12px;
    }
}

/* tablet */
@media (max-width: 1024px) {
    .ntp-video-slider-section {
        padding: 30px 0 80px;
    }

    .ntp-video-slider-header h2 {
        font-size: 26px;
    }

    .ntp-video-slider-wrap {
        max-width: 1000px;
        padding: 0 54px;
    }

    .ntp-video-slider {
        max-width: 720px; /* węższy viewport */
    }

    .ntp-video-track {
        gap: 14px;
    }

    .ntp-video-slide {
        width: 170px;
        border-radius: 18px;
    }

    .ntp-video-slide video {
        border-radius: 18px;
    }

    .ntp-slider-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 24px;
        z-index: 60;
    }

    .ntp-prev {
        left: 4px;
    }

    .ntp-next {
        right: 4px;
    }

    .ntp-video-slider::before,
    .ntp-video-slider::after {
        width: 8px;
    }
}

/* telefon */
@media (max-width: 767px) {
    .ntp-video-slider-section {
        padding: 20px 0 70px;
    }

    .ntp-video-slider-header {
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .ntp-video-slider-header h2 {
        font-size: 22px;
    }

    .ntp-video-slider-wrap {
        padding: 0 42px;
    }

    .ntp-video-slider {
        max-width: 240px;
        padding: 0;
    }

    .ntp-video-slider::before,
    .ntp-video-slider::after {
        display: none;
    }

    .ntp-video-track {
        gap: 0;
    }

    .ntp-video-slide {
        width: 240px;
        max-width: 240px;
        min-width: 240px;
        border-radius: 18px;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.96);
        filter: blur(0);
    }

    .ntp-video-slide video {
        border-radius: 18px;
    }

    .ntp-video-slide.ntp-level-1,
    .ntp-video-slide.ntp-level-2 {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.96);
    }

    .ntp-video-slide.ntp-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .ntp-slider-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
        z-index: 70;
    }

    .ntp-prev {
        left: 0;
    }

    .ntp-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .ntp-video-slider-wrap {
        padding: 0 38px;
    }

    .ntp-video-slider {
        max-width: 220px;
    }

    .ntp-video-slide {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
        border-radius: 16px;
    }

    .ntp-video-slide video {
        border-radius: 16px;
    }

    .ntp-slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 18px;
    }
}

/* FOOTER - UNIVERSAL */

.siteFooter{
    width: 100%;
    margin-top: 120px;
}

.footerInner{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.footerSponsors{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 80px 0;
}

.footerSponsorsTitle{
    margin: 0 0 48px;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

.footerSponsorsLogos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 90px;
    max-width: 1100px;
    margin: 0 auto;
}

.footerSponsorsLogos a{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footerSponsorsLogos a:hover{
    opacity: 1;
    transform: translateY(-2px);
}

.footerSponsorsLogos img{
    max-height: 50px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footerBottom{
    width: 100%;
    background: #000;
}

.footerBottomInner{
    padding: 110px 40px 70px;
    display: grid;
    grid-template-columns: 180px 1fr 1fr auto;
    gap: 50px;
    align-items: start;
}

.footerBrand img{
    width: 90px;
    height: auto;
    display: block;
}

.footerColumn{
    width: 100%;
}

.footerLinks{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerLinks a{
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.footerLinks a:hover{
    color: #ffffff;
}

.footerCTA{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footerCTA a{
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footerCTA a:hover{
    transform: translateY(-2px);
    opacity: 0.95;
}

.footerCopy{
    width: 100%;
    background: #000;
}

.footerCopy .footerInner{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 26px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* MOBILE */

@media (max-width: 768px){

    .siteFooter{
        margin-top: 80px;
    }

    .footerInner{
        padding-left: 24px;
        padding-right: 24px;
    }

    .footerSponsors{
        padding: 42px 0 36px;
    }

    .footerSponsorsTitle{
        font-size: 17px;
        margin: 0 0 26px;
    }

    .footerSponsorsLogos{
        gap: 30px;
    }

    .footerSponsorsLogos img{
        max-height: 28px;
        max-width: 100px;
    }

    .footerBottomInner{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        padding: 46px 24px 36px;
        text-align: left;
    }

    .footerBrand{
        display: block;
        width: 100%;
        margin-bottom: 6px;
    }

    .footerBrand a{
        display: inline-block;
    }

    .footerBrand img{
        width: 72px;
        height: auto;
    }

    .footerColumn{
        width: 100%;
    }

    .footerColumn + .footerColumn{
        margin-top: 6px;
    }

    .footerLinks{
        align-items: flex-start;
        gap: 16px;
    }

    .footerLinks a{
        font-size: 18px;
        font-weight: 400;
        color: rgba(255,255,255,0.75);
        letter-spacing: 0;
    }

    .footerCTA{
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .footerCTA a{
        width: auto;
        max-width: none;
        text-align: center;
        padding: 12px 22px;
        font-size: 13px;
        border-radius: 10px;
    }

    .footerCopy .footerInner{
        text-align: center;
        font-size: 13px;
        padding-top: 8px;
        padding-bottom: 22px;
        color: rgba(255,255,255,0.4);
    }
}

/* TABLET */

@media (min-width: 769px) and (max-width: 1024px){

    .footerInner{
        padding-left: 30px;
        padding-right: 30px;
    }

    .footerSponsors{
        padding: 60px 0;
    }

    .footerSponsorsTitle{
        font-size: 21px;
        margin: 0 0 36px;
    }

    .footerSponsorsLogos{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        align-items: center;
        column-gap: 40px;
        row-gap: 34px;
        max-width: 760px;
        margin: 0 auto;
    }

    .footerSponsorsLogos img{
        max-height: 40px;
        max-width: 120px;
    }

    .footerBottomInner{
        grid-template-columns: 120px 1fr 1fr;
        gap: 30px;
        padding: 70px 30px 50px;
        align-items: start;
    }

    .footerBrand{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footerBrand img{
        width: 78px;
    }

    .footerLinks{
        gap: 14px;
        align-items: flex-start;
    }

    .footerLinks a{
        font-size: 14px;
        letter-spacing: 0.02em;
    }

    .footerCTA{
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 18px;
    }

    .footerCTA a{
        font-size: 13px;
        padding: 12px 24px;
    }

    .footerCopy .footerInner{
        font-size: 15px;
        padding-top: 10px;
        padding-bottom: 24px;
    }
}