/* RESET */

::-moz-selection {
    background: var(--dark-grey-color);
    color: #fff;
}

@font-face {
    font-family: 'Soul';
    src: url('../../fonts/Soul\ Signature.ttf') format('truetype');
}

::selection {
    background: var(--dark-grey-color);
    color: #fff;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Marcellus", 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;
}

p {
    color: var(--white);
    font-size: 1.6rem;
}

/* width */
::-webkit-scrollbar {
    width: .5vw;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--dark-grey);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--gold)
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow)
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scrollbar-color: var(--secondary-color) #fff;
    scrollbar-width: normal;
}

body {
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: var(--black);
    position: relative;
}

header {
    will-change: background-color;
}


@keyframes noise {
    0% {
        transform: translate3d(1%, -1%, 0);
    }

    10% {
        transform: translate3d(-5%, -2%, 0);
    }

    20% {
        transform: translate3d(10%, 5%, 0);
    }

    30% {
        transform: translate3d(5%, -11%, 0);
    }

    40% {
        transform: translate3d(-12%, -5%, 0);
    }

    50% {
        transform: translate3d(10%, 9%, 0);
    }

    60% {
        transform: translate3d(15%, 0, 0);
    }

    70% {
        transform: translate3d(-10%, 8%, 0);
    }

    80% {
        transform: translate3d(10%, 2%, 0);
    }

    90% {
        transform: translate3d(1%, 5%, 0);
    }

    100% {
        transform: translate3d(0, 8%, 0);
    }
}

footer {
    position: relative;
    z-index: 11;
}

.main {
    background-color: var(--black-color);
    overflow: hidden;
}

body.no-scroll,
html.no-scroll {
    overflow: hidden;
}

#alertMsg {
    font-size: 14px;
}

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: "Marcellus", serif;
    font-weight: 500;
}

button[disabled] {
    cursor: default;
}

p {
    color: var(--black-font);
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 300;
}

a {
    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;
}

h1 {
    color: var(--light-green-color);
    font-size: 7.8rem;
    font-weight: 600;


}

h2 {
    font-size: 7.2rem;
    font-family: "Marcellus", serif;
    line-height: 8rem;
    font-weight: 400;
}

/* RESET */

/* UTILITIES */
:root {
    --white: #fff;
    --black: #101010;
    --dark-grey: #2B2B2B;
    --grey: #5E5E5E;
    --light-grey: #A9A9A9;
    --yellow: #EDB932;
    --gold: #D89B2F;

}

.container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 178rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*FOOTER*/
footer {
    margin-top: 9rem;
}

.footer-logo {
    height: 12.7rem;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--gold);
    gap: 3rem;
}

.footer-info {
    display: flex;
    gap: 2.7rem;
    width: 100%;
    max-width: 80.3rem;
    justify-content: space-between;
}

.footer-info p {
    font-size: 1.6rem;
}

footer .footer-info-naziv {
    color: var(--gold);
    margin-bottom: 15px;
}

footer p,
footer a {
    color: var(--white);
    font-family: "Nunito", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    transition: color 0.3s ease;
}
.footer-info a:hover{
    color: var(--gold);
}

.copyright {
    font-family: "Nunito", sans-serif;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

@media (max-width:850px) {
    h1 {
        font-size: 3.6rem !important;


    }

    h1 .absolute-title {
        font-size: 6rem !important;
    }

    h2 {
        font-size: 3.6rem !important;
        line-height: 4.4rem;
    }

    h2 .absolute-title {
        font-size: 6rem !important;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .footer-inner {
        align-items: center;
    }

    .footer-info div {
        width: 280px;
        text-align: center;
    }


}