@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* RESET */
::-moz-selection {
    background: var(--light-green);
    color: #fff;
}
::selection {
    background: var(--light-green);
    color: #fff;
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
     font-family: "Roboto", sans-serif;
}
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
    outline: 0;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/* width */
::-webkit-scrollbar {
    width: .5vw;
}
/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--light-green);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b0c418;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: normal;
}
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--white-color);
}
body.no-scroll,
html.no-scroll{
    overflow: hidden;
}


img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    cursor: pointer;
}
button {
    cursor: pointer;
    outline: none;
    border: none;
    font-family: inherit;
}
button[disabled] {
    cursor: default;
}

a, p{
    color: var(--txt-color);
}
ul,
ol {
    list-style: none;
}
input,
textarea {
    font-family: inherit;
    resize: none;
}
/* HIDE ARROWS ON NUMBER INPUTS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* UTILITIES */
:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #222222;
    --txt-color: #000;
    --light-green: #E3FB1E;
}
.container {
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 144rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.container-right {
    padding-left: calc((100vw - 138rem) / 2);
    position: relative;
}
.container-left {
    padding-right: calc((100vw - 138rem) / 2);
    position: relative;
}
@media only screen and (max-width: 1380px) {
    .container-right {
        padding-left: 3rem;
    }
    .container-left {
        padding-right: 3rem;
    }
}


nav .container{
    max-width: 181rem;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 3rem;
    z-index: 10;
    transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.3s ease;
}
nav.active{
    background-color: var(--gray-color);
    padding-top: 3rem;
    box-shadow: 0px 0px 2.5rem rgba(0,0,0,0.6);
}
.nav-logo img{
    display: block;
    max-width: 11rem;
    transition: max-width 0.3s ease;
}
nav.active .nav-logo img{
    max-width: 8rem;
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}
.nav-links{
    display: flex;
}
.nav-links > ul{
    display: flex;
    align-items: center;
    gap: 3.7rem;
}
.nav-links ul li p{
    cursor: default;
}
.nav-links ul li a, .nav-links ul li p{
    font-size: 3rem;
    color: var(--white-color);
    font-style: italic;
    font-weight: 700;
}

.hero-section{
    width: 100%;
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../images/app/hero-background.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-ball-left{
    position: absolute;
    left: 13.5rem;
    bottom: 0rem;
    transform: translateY(50%);
}
.hero-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-container h1{
    font-size: 8rem;
    color: var(--white-color);
    text-align: center;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 5rem;
}
.hero-container button{
    width: 100%;
    max-width: 35rem;
    height: 8rem;
    background-color: var(--light-green);
    color: var(--black-color);
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    font-style: italic;
}
.more-info-button{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 3rem;
    position: absolute;
    right: 2rem;
    transform: translateY(-50%);
    width: 0.5rem;
    background-color: transparent;
    top: 50%;
}

.more-info-button span{
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--black-color);
    border-radius: 50%;
}
.more-info-container{
        position: absolute;
    background: var(--white-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    right: 0;
    z-index: 1;
    border-radius: 1rem;
    top: 0;
    display: none;
}
.more-info-container button{
        position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background-color: var(--gray-color);
    color: #fff;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-info-container.active{
    display: block;
}
.rank-section{
    padding: 7rem 0rem;
    background-image: url('../../images/app/rank-background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.rank-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4.5rem;
    margin-bottom: 2rem;
}
.rank-buttons button{
    width: 100%;
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 3rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0,0,0,0.25);
}
.rank-buttons button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}

.rank-buttons2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4.5rem;
    margin-bottom: 2rem;
}
.rank-buttons2 button{
    width: 100%;
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 3rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0,0,0,0.25);
}
.rank-buttons2 button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}
.rank-tables table{
    width: 100%;
    display: table;
    background-color: var(--white-color);
    border-collapse: collapse;
}
.sub-table-outer{
    display: none;
}
.sub-table-outer.active{
    display: block;
}
.sub-table-outer3{
    display: none;
}
.sub-table-outer3.active{
    display: block;
}
.sub-table-outer4{
    display: none;
}
.sub-table-outer4.active{
    display: block;
}

.sub-table-outer2{
    display: none;
}
.sub-table-outer2.active{
    display: block;
}
.table-outer{
    max-height: 61.7rem;
    overflow-y: auto;
    display: none;
}
.table-outer.active{
    display: block;
}
.table-outer2{
    max-height: 61.7rem;
    overflow-y: auto;
    display: none;
}
.table-outer2.active{
    display: block;
}
.rank-tables table th, .rank-tables table td{
    border: 1px solid var(--black-color);
    padding: 1.5rem;
}
.rank-tables table th{
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    color: var(--black-color);
}
.rank-tables table td{
    font-size: 3rem;
    color: var(--black-color);
    font-style: italic;
    text-align: center;
}
.najave-section{
    background-image: url('../../images/app/najave-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 8rem 0rem;
    position: relative;
    border-top: 1.5rem solid var(--light-green);
}
.najave-section .container{
    max-width: 184rem;
}
.najave-ball-left{
    position: absolute;
    bottom: 0rem;
    transform: translateY(50%);
    left: 40%;
}
.najave-ball-right{
    position: absolute;
    top: 0;
    right: 12rem;
    transform: translateY(-50%);
}
.najave-green1{
    top: -25rem;
    left: -17rem;
    position: absolute;
}
.najave-green2{
    top: -6rem;
    right: -12rem;
    position: absolute;
}
.najave-container{
    display: flex;
    justify-content: space-between;
    gap: 6.5rem;
    position: relative;
    z-index: 1;
}
.sub-category-buttons{
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sub-category-buttons button{
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0, 0, 0, 0.25)
}
.sub-category-buttons button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}

.sub-category-buttons2{
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sub-category-buttons2 button{
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0, 0, 0, 0.25)
}
.sub-category-buttons2 button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}

.sub-category-buttons3{
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sub-category-buttons3 button{
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0, 0, 0, 0.25)
}
.sub-category-buttons3 button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}

.sub-category-buttons4{
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.sub-category-buttons4 button{
    padding: 1.8rem;
    background-color: var(--light-green);
    color: var(--gray-color);
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 6px 15px -2px rgba(0, 0, 0, 0.25)
}
.sub-category-buttons4 button.active{
    color: var(--light-green);
    background-color: var(--gray-color);
}
#searchInput{
    margin-bottom: 2rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.8rem;
    border-radius: 1rem;
    border: none;
    outline: none;
}
.more-info-container{
    font-size: 1.8rem;
}
.najave-container-table h2{
    font-size: 6rem;
    color: var(--light-green);
    margin-bottom: 8rem;
    text-align: center;
    font-weight: 800;
    font-style: italic;
}
.najave-container-table {
    width: 100%;
    max-width: 83rem;
}
.najave-container-table table{
    border-radius: 5rem;
    width: 100%;
    table-layout: fixed;
    overflow: hidden;
    border-collapse: collapse;
    outline: none;
    border: none;
}
.najave-container-table thead{
    background-color: #1C1C1C;
}
.najave-container-table tbody{
    background-color: var(--white-color);
}
.najave-container-table tbody td{
    border-bottom: 1px solid var(--black-color);
    padding: 3.5rem 0rem;
    font-style: italic;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    color: #1F1F1F;
    text-transform: uppercase;
    font-weight: 800;
}
.najave-container-table tbody tr:last-child td{
    border-bottom: none;
}
.najave-container-table thead th{
    font-size: 3rem;
    color: var(--light-green);
    font-weight: 800;
    font-style: italic;
    text-align: left;
    padding: 3.5rem 0rem;
    text-align: center;
    font-style: italic;
}

.najave-container-table tbody td a, .najave-container-table tbody td p{
    color: #1F1F1F;
}

.najave-line{
    height: auto;
    width: 0.1rem;
    background-color: var(--white-color);
}

.footer-container{
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 4rem 0rem;
}
.footer-container-left{
        max-width: 83rem;
        width: 100%;
}
.footer-container-left h2{
    font-size: 6rem;
    font-style: italic;
    font-weight: 800;
    color: #1e1e1e;
}
.footer-container-left p{
    font-size: 3rem;
    font-style: italic;
    color: #1e1e1e;
    margin-bottom: 2rem;
}
.sponzori-flex{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 2rem;
}
.sponzori-flex img{
    max-width: 13rem;
}
footer .container{
    max-width: 184rem;
}
footer{
    position: relative;
}
.footer-container-right-text{
    position: relative;
    z-index: 1;
}
.footer-container-right-text h2{
    font-size: 6rem;
    font-style: italic;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 2rem;
}
.footer-container-right-text > div{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.footer-container-right-text > div div{
    width: 3rem;
}
.footer-container-right-text > div a{
    font-size: 2.8rem;
    color: var(--txt-color);
}
.footer-container-right{
    display: flex;
    align-items: center;
        max-width: 83rem;
        width: 100%;
    gap: 15rem;
}
.footer-line{
    width: 0.1rem;
    height: auto;
    background-color: var(--txt-color);
}
.footer-copyright{
    background-color: var(--light-green);
    padding: 1rem 0rem;
}
.footer-copyright p{
    text-align: center;
    font-size: 2rem;
    color: var(--txt-color);
}

.footer-green-circle{
    position: absolute;
    bottom: 0;
    right: 0;
}
.inner-hero-section{
    width: 100%;
    height: 45rem;
    position: relative;
    background-image: url('../../images/app/inner-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.inner-hero-section.lige{
    background-image: url('../../images/app/lige-background.jpg');
}
.pravila-text{
    position: relative;
    z-index: 1;
    max-width: 105rem;
    margin: 0 auto;
}
.pravila-text p{
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--white-color);
}
.pravila-text ul{
    list-style: disc;
    margin-bottom: 3rem;
     padding-left: 2rem;
}
.pravila-text >:last-child{
    margin-bottom: 0rem;
}
.pravila-text ul li{
    font-size: 1.8rem;
    color: var(--white-color);
   
}
.inner-hero-container{
    padding-bottom: 5rem;
}
.inner-hero-container{
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white-color);
}
.nav-links-dropdown-li{
    position: relative;
}
.nav-links-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--gray-color);
    padding: 1.5rem 3rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
}
.nav-links-dropdown a{
    white-space: nowrap;
}
.table-overflow{
    max-height: 70rem;
    overflow-y: auto;
}



@media only screen and (min-width: 1280px) {
    .hamburger{
        display: none;
    }
    .close-hamburger{
        display: none;
    }
}
@media only screen and (max-width: 1280px) {
    .hamburger{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 3rem;
        background-color: transparent;
        height: 2.1rem;
    }
    .hamburger span{
        display: block;
        width: 100%;
        height: 0.2rem;
        background-color: var(--white-color);
    }
    .nav-links{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: var(--gray-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }
    .nav-links.active{
        transform: translateX(0);
    }
    .nav-links ul{
        flex-direction: column;
    }
    .close-hamburger{
        width: 3rem;
        height: 3rem;
        position: absolute;
        top: 2rem;
        right: 2rem;
        background-color: transparent;
    }
    .close-hamburger::before{
        position: absolute;
        content: "";
        width: 100%;
        left: 0;
        height: 0.1rem;
        background-color: var(--white-color);
        transform: rotate(45deg);
    }
     .close-hamburger::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 0.1rem;
        left: 0;
        background-color: var(--white-color);
        transform: rotate(-45deg);
    }
}

@media only screen and (max-width: 1024px) {
    .najave-container{
        flex-direction: column;
    }
    .najave-line{
        width: 100%;
        height: 0.1rem;
    }
}


@media only screen and (max-width: 480px) {
    .hero-container h1 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    .hero-container button {
        width: 100%;
        max-width: 23rem;
        height: 5rem;
        font-size: 3rem;
    }
    .nav-logo img {
        display: block;
        max-width: 15rem!important;
    }
    nav{
        padding-top: 3rem;
    }
    .najave-container-table tbody td:last-child{
        padding-right: 3rem;
    }
    .container{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hero-ball-left img{
        max-width: 6rem;
    }
    .hero-ball-left{
        left: 4.5rem;
    }
    .more-info-container{
        min-width: 15rem;
    }
    .rank-buttons{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
    }
    .rank-buttons button{
        font-size: 1.2rem;
    }
    .rank-buttons2{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
    }
    .rank-buttons2 button{
        font-size: 1.2rem;
    }
    .najave-container-table h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    .najave-ball-right{
        right: 3rem;
    }
    .najave-ball-right img{
        max-width: 6rem;
    }
    .najave-container-table tbody td{
        font-size: 1.2rem;
    }
    .more-info-button{
        right: 1rem;
    }
      .najave-container-table tbody td a{
        max-width: 80%;
        text-align: center;
      }
    .najave-container-table thead th{
        font-size: 1.4rem;
    }
    .rank-tables table td{
        font-size: 1.4rem;
    }
    .rank-tables table td a{
        max-width: 80%;
        text-align: center;
    }
    .rank-tables table th{
        font-size: 1.4rem;
    }
    .footer-container{
        flex-direction: column-reverse;
        gap: 2rem;
        position: relative;
        z-index: 1;
        padding-top: 8rem;
    }
    .sponzori-flex{
        flex-wrap: wrap;
    }
    .najave-ball-left {
        left: 3rem;
    }
    .najave-ball-left img{
        max-width: 6rem;
    }
    .footer-container-left p {
        font-size: 2rem;
    }
    .footer-container-right-text > div a{
        font-size: 2rem;
    }
    .footer-container-left h2{
        font-size: 3rem;
    }
    .footer-container-right-text h2{
        font-size: 3rem;
    }
    .footer-container-right{
        gap: 2rem;
    }
    .footer-container-right-image img{
        max-width: 20rem;
    }
    .footer-copyright{
        position: relative;
        z-index: 1;
    }
    .footer-copyright p{
        font-size: 1.2rem;
    }
    .najave-container-table thead{
        background-color: #252525;
    }
    .nav-links ul li a, .nav-links ul li p {
        font-size: 2rem;
        text-align: center;
    }
    .nav-links > ul{
        gap: 2.5rem;
    }
    .inner-hero-container{
        font-size: 2rem;
    }
    .inner-hero-section {
        height: 30rem;
    }
    .najave-container-table table{
        border-radius: 3rem;
    }
    .nav-links-dropdown{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0;
    }
    .nav-links-dropdown li{
        padding-top: 2rem;
    }
    .nav-links-dropdown li a{
        font-size: 1.6rem!important;
    }
    .nav-links{
        overflow-y: scroll;
    }
    .sub-category-buttons2 button, .sub-category-buttons button, .sub-category-buttons3 button, .sub-category-buttons4 button{
        font-size: 1.2rem;
        padding: 1rem;
    }
    .sponzori-flex img{
        max-width: 8rem;
    }
    .sponzori-flex{
        display: flex;
        flex-wrap: wrap;
    }
}

.contact-popout-container{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    padding: 3rem;
    display: none;
    justify-content: center;
}
.contact-popout-container.active{
    display: flex;
}
.contact-popout-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.93);
    top: 0;
    left: 0;
    position: absolute;
}
.contact-popout{
    position: relative;
    z-index: 1;
    background-color: var(--gray-color);
    padding: 3rem 5rem;
    border-radius: 3rem;
    width: 100%;
    max-width: 40rem;
}
.contact-popout form{
    display: flex;
    flex-direction: column;
}
.contact-popout form label{
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--white-color);
}
.contact-popout form input{
    width: 100%;
    border: none;
    outline: none;
    background-color: var(--white-color);
    padding: 1rem 3rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}
.contact-popout form button{
      width: 100%;
    max-width: 25em;
    height: 4rem;
    background-color: var(--light-green);
    color: var(--black-color);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-top: 1rem;
}
.close-form-popout{
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    background-color: var(--light-green);
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 50%;
}
