/* Fonts */
/* FONT IMPORT - relativna putanja od CSS fajla */
@font-face {
    font-family: 'inter_lighter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
         url('../fonts/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter_normal';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
         url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter_bolder';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
         url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'inter_bold';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
         url('../fonts/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Intro fullscreen */

/* Desno dugme i labela da budu klikabilni */
.intro_btn.f_right.rotate_right,
.intro_an_btn_right {
    cursor: pointer;
        z-index: 999 !important; /* Forsiraj da bude iznad svega */
        

}

.intro_an_btn_right:hover {
    opacity: 0.9;
        z-index: 999 !important; /* Forsiraj da bude iznad svega */

}



.intro {
    position: fixed;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    padding-top: 11vw;
    background-color: rgb(35,73,151);
}

.intro_logo {
    width: 100%;
    height: 48vh;
    margin-top: -40px;
    background-image: url('../images/logo_main.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.intro_heading h1 {
    background-color: white;
    color: rgb(35,73,151);
    text-align: right;
    font-size: 27px;
    padding: 5px 8%;
}

.intro_heading h2 {
    color: white;
    text-align: right;
    font-size: 15px;
    font-family: inter_lighter;
    padding: 5px 8%;
    margin-top: 0;
}

.intro_btn {
    display: block;
    width: 84%;
    padding: 10px 0;
    background-color: white;
    margin: 5vh auto;
    font-size: 27px;
    font-family: inter_bolder;
    text-decoration: none;
    text-align: center;
    color: rgb(35,73,151);
    border: none;
    cursor: pointer;
}

.hover_btn {
    transition: 0.3s ease all;
}

.hover_btn:hover {
    background-color: white;
    color: rgb(35,73,151);
    outline: 0.2vw solid rgb(35,73,151);
}

.i_show {
    display: none;
}

.i_hide {
    display: inline-block;
}

.f_left {
    float: left;
    width: 47%;
}

.f_right {
    float: right;
    width: 47%;
}

/* Cookie consent */
.cookie-screen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.7);
}

.cookie-pol {
    position: fixed;
    top: 5vw;
    left: 5vw;
    bottom: 5vw;
    z-index: 199;
    width: 90vw;
    height: 450px;
    max-height: 74vh;
    background-color: rgb(35,73,151);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 3vw 0;
}

.cookie-pol p {
    font-size: 12px;
    padding: 2vh 10vw;
    color: white;
}

.cookie-pol a {
    color: white;
    text-decoration: underline;
}

.cookieText {
    color: white;
    margin-bottom: 10px;
    height: 300px;
    max-height: 38vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.close-btn {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid white;
    color: rgb(35,73,151);
    cursor: pointer;
    transition: 0.4s;
    margin-top: 15px;
    font-size: 14px;
}

.close-btn:hover {
    background-color: white;
    border: 1px solid rgb(35,73,151);
    color: rgb(35,73,151);
}

.cookieInput {
    margin-top: 10px;
    color: white;
    background-color: white;
    font-size: 14px;
}

.cookieAction {
    width: 40%;
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
    color: white;
}

/* Desktop styles */
@media only screen and (min-width: 850px) and (min-height: 500px) {

      .intro_logo {
    width: 100%;
    height: 48vh;
    margin-top: -40px;
    /*  background-image: url('../images/logo_main.svg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}




    .i_show {
        display: block;
    }
    
    .i_hide {
        display: none;
    }
    
    .intro_logo {
        position: relative;
        z-index: 10;
        width: 15vw;
        height: 25vw;
        margin-top: -55px;
        margin-left: 2.5%;
    }
    
    .intro_heading h1 {
        text-align: right;
        font-size: 6.5vw;
        margin-top: -19vw;
    }
    
    .intro_heading h2 {
        text-align: right;
        font-size: 3.7vw;
    }
    
    .intro_btn {
        position: relative;
        z-index: 100;
        width: 34vw;
        height: 10vw;
        top: -5vh;
        padding: 10vh 0;
        background-color: rgba(0,0,0,0);
        pointer-events: painted;
    }
    
    .rotate_left:hover ~ #an_horiz {
        transform: rotate(-7deg);
        transition: 2s ease all;
    }
    
    .rotate_right:hover ~ #an_horiz {
        transform: rotate(7deg);
        transition: 2s ease all;
    }
    
    .intro_an_btn_left {
        position: absolute;
        z-index: 99;
        left: 0;
        width: 34vw;
        height: 10vh;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
        margin: 2vw auto 5vw;
        font-size: 3.3vw;
        font-family: inter_normal;
        color: white;
    }
    
    .intro_an_btn_right {
        position: absolute;
        z-index: 99;
        right: 0;
        width: 34vw;
        height: 10vh;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
        margin: 2vw auto 5vw;
        font-size: 3.3vw;
        font-family: inter_normal;
        color: white;
    }
    
    .an_holder {
        position: absolute;
        width: 80vw;
        height: 60vh;
        bottom: -5vh;
        left: 10vw;
    }
    
    .an_bottom {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('../images/intro/an_base.svg');
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    #an_horiz {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('../images/intro/an_horiz.svg');
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        transform-origin: center;
        transition: 2s ease all;
    }
    
    #an_left {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('../images/intro/an_left.svg');
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        transition: 2s ease all;
    }
    
    #an_right {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('../images/intro/an_right.svg');
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        transition: 2s ease all;
    }
}





@media (max-width: 767px) {

     .f_right {
    float: none !important;
    /* width: 85%; */
}


  .intro_logo {
       
     background-image: url('../images/logo_main.svg');    width: 90%;
    height: 40vh;
    margin-top: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


}