/* 
MOBILE UVJETI: 
text 120 znakova, naslov 12 znakova!
*/
:root {
    --primary-color: #c3dd1e; 
    --primary-color-hover: #ff5656;
    --light-color: #fff;
    --text-color-dark: #1f1f1f;
    --text-color-medium-dark: #858585;
    --text-color-articles: #443030;
    --section-color-1: #e67275;
    --section-color-2: #d3a743;
    --section-color-3: #705e56;
}
html {
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
}
body {
    /* overflow: hidden; */
    background-color: #7A9EB1;
    color: var(--light-color);
}
a,
a:hover {
    text-decoration: none;
}
        ::selection {
            color: var(--light-color);
            background: var(--primary-color);
        }
        ::-moz-selection {
            color: var(--light-color);
            background: var(--primary-color);
        }
.gradient {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: linear-gradient(147.25deg, #645b4f00 20%, #645B4F);
}


/* INFO  **********************************************************/
#info {
    position: fixed;
    z-index: 1001;
    top: 15px;
    padding: 8px;
    background-color: #161616;
    box-shadow: 3px 3px 20px #292929;
    font-family: "Raleway", Arial,"Helvetica Neue", Helvetica, sans-serif;
    color: #fff;
    font-weight: 300;
    font-size: 9px;
    line-height: 10px;
    text-transform: uppercase;
    text-align: center;
}
            #info img {
                width: 36px;
                height: auto;
                margin-bottom: 8px;
            }
            #info p {
                margin-bottom: 0;
            }



/* HEADER  **********************************************************/
header {
    height: 10px;
}
header img {
    width: 60px;
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 2;
    animation: spinLogo 6s infinite ease-in-out;
}
        @keyframes spinLogo {
            0%   {rotate: 1deg;}
            25%  {rotate: 90deg;}
            50%  {rotate: 180deg;}
            75%  {rotate: 270deg;}
            100% {rotate: 1deg;}
        }



/* ČLANCI **********************************************************/
.clanci-1 {
    width: 320px;
    margin: 10px auto;
    position: relative;
    width: 100%;
}
        .kadar-text {
            height: 680px;
            padding: 100px 0;
            position: relative;
        }
        .kt-1, .kt-2,
        .kt-3, .kt-4,
        .kt-5 {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        .inter-text {
            position: fixed;
            width: 100%; 
            height: 170px;
            padding: 0 10px;
            text-align: center;
            top: 290px;
        }
        .inter-text h1,
        .inter-text h5,
        .inter-text p,
        .btn {
            font-family: 'Quicksand', sans-serif;
            font-style: normal;
            font-weight: 100;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: 0.8px;
        }
        .inter-text h1 {
            font-weight: 700;
            font-size: 30px;
            line-height: 34px;
            letter-spacing: 3px;
            -webkit-text-stroke: 3px;
            text-transform: uppercase;
            padding: 0;
            margin-top: 20px;
        }
        .inter-text h5 {
            margin-bottom: 10px;        
        }
        .inter-text p {
            margin: 10px 0;        
        }
        .btn {
            color: #fff;
            font-weight: 400;
            font-size: 11px;
            line-height: 13px;
            text-align: center;
            letter-spacing: 1px;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            padding: 8px 20px;
            transition: color 0.4s;
            text-transform: uppercase;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }
                .btn:hover {
                    color: var(--primary-color);
                }

 /* SLIKE */   
.kadar-slike {
    box-shadow: 8px 8px 20px 10px rgba(255, 255, 255, 0.075);
    background: linear-gradient(147.25deg, #8ab0c5, #645B4F);
    overflow: hidden;
    padding: 0;
    position: fixed;
    left: unset;
    right: 50%;
    transform: translateX(50%);
    height: 280px;
    width: 218px;
    border-radius: 45px;
    top: 25px;
}
        .kadar-slike img {
            position: absolute;
            width: auto;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 10px 10px 10px #4c443a94;
            height: 230px;
        }
        .slika2, 
        .slika3,
        .slika4,
        .slika5 {
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
        }
        .k-dots {
            display: none;
        }


/* BTT ********************************************************************************************************************/
#btt {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 1003;
}
.btt-a {
    color: #7A9EB1;
    font-size: 22px;
    transition: color 0.6s;
}
.btt-a:hover {
    color: #5d8194;
}
.btt-hide {
    opacity: 0;
}
.btt-show {
    opacity: 1;
}


/* FOOTER *****************************************************************************************/
footer {
    font-family: "Raleway", Arial,"Helvetica Neue", Helvetica, sans-serif;
    font-weight: 200;
    font-size: 8px;
    line-height: 12px;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px 50px;
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    width: 100vw;
}
footer p {
    margin-bottom: 0;
}
.copy {
    margin-bottom: 0;
}




/********************************************************************************************************/
/* RESPONSIVE *****************************************************************************************/
@media (min-width: 375px) {
    .inter-text {
        top: 430px;
    }
    .kadar-slike {
        border-radius: 75px;
        height: 380px;
        width: 290px;
        top: 50px;
    }
    .kadar-slike img {
        height: 310px;
    }
}

@media (min-width: 400px) {
    .kadar-slike {
        top: 60px;
        height: 440px;
    }
        .kadar-slike img {
            height: 340px;
        }
    .inter-text {
        top: 532px;
        height: 175px;
    }
    footer {
        bottom: 15px;
    }
}

@media (min-width: 576px) {
    .inter-text {
        width: 550px;
        left: 50%;
        transform: translateX(-50%);
    }
    .inter-text p {
        font-size: 14px;
        line-height: 20px;
    }
}




@media (min-width: 768px) {
    #info {
        top: 30px;
        padding: 12px;
        font-size: 11.5px;
        line-height: 12px;
    }
            #info img {
                width: 48px;
                margin-bottom: 12px;
            } 
    header img {
        width: 75px;
        top: 30px;
        right: 30px;
    }
    .clanci-1 {
        width: 600px;
        margin: 0 auto;
    }
    .kadar-text {
        height: 960px;
        padding: 60px 0;
    }
            .inter-text {
                width: 80%;
                top: 710px;
                height: 210px;
            }
            .inter-text h5,
            .inter-text p {
                font-size: 16px;
                line-height: 20px;
                letter-spacing: 1px;
            }
            .inter-text h1 {
                font-weight: 700;
                font-size: 50px;
                line-height: 54px;
                letter-spacing: 2px;
                -webkit-text-stroke: 3px;
                padding: 0 30px;
            }
            .btn {
                font-size: 12px;
                line-height: 14px;
                letter-spacing: 1px;
            }
    .kadar-slike {
        border-radius: 110px;
        height: 660px;
        width: 500px;
        top: 40px;
    }
            .kadar-slike img {
                height: 540px;
            }
    footer {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 1px;
        padding: 0 100px;
        bottom: 10px;
    }
}



/* DESK LANDSCAPE *********************************************/
@media (min-width: 992px) {
    #info {
        top: 160px;
        padding: 12px;
        font-size: 10px;
        line-height: 12px;
    }
            #info img {
                width: 45px;
            }
    header {
        height: 0;
    }
            header img {
                top: 40px;
                left: 80px;
                right: unset;
            }
    .clanci-1 {
        width: 854px;
    }
    .kadar-text {
        height: 680px;
        padding: 100px 60px 0 0;
    }
            .inter-text {
                width: 400px;
                top: 274px;
                height: 330px;
                text-align: start;
                left: unset;
                transform: unset;
                }
            .inter-text h1,
            .inter-text h5,
            .inter-text p,
            .btn {
                font-weight: 200;
                font-size: 14px;
                line-height: 18px;
                letter-spacing: 1px;
            }
            .inter-text h1 {
                font-weight: 700;
                font-size: 48px;
                line-height: 50px;
                letter-spacing: 3px;
                -webkit-text-stroke: 4px;
                padding: 0;
            }
            .inter-text h5 {
                margin-bottom: 10px;        
            }
            .inter-text p {
                margin: 10px 0 20px 0;        
            }
            .btn {
                font-size: 13px;
                line-height: 16px;
                left: unset;
                transform: unset;
            }
            .k-dots {
                position: fixed;
                top: 294px;
                width: 30px;
                height: 200px;
                left: unset;
                right: 9%;
            }
                    .k-dots div {
                        height: 18px;
                        width: 18px;
                        border-radius: 50%;
                        margin-bottom: 46px;
                        background-color: #fff;
                    }
                    .k-dots div.dot-active {
                        background-color: #c3dd1e;
                    }
    .kadar-slike {
        border-radius: 90px;
        margin: 0 auto;
        height: 520px;
        width: 380px;
        left: unset;
        right: 53%;
        transform: translateX(400px);
        top: 156px;
    }
            .kadar-slike img {
                height: 420px;
            }
    footer {
        padding: 20px 0 10px 0;
        font-size: 12px;
        line-height: 16px;
        bottom: 5px;
        padding: 10px;
    }
}


@media (min-width: 1200px) {
    .clanci-1 {
        width: 1028px;
    }
    .inter-text {
        width: 460px;
        height: 300px;
        top: 236px;
    }
    .kadar-slike {
        width: 450px;
        transform: translateX(500px);
        top: 100px;
        height: 550px;
    }
            .kadar-slike img {
                height: 480px;
            }
            .k-dots {
                top: 274px;
                right: 13%;
            }
            .k-dots div {
                margin-bottom: 46px;
            }
}

@media (min-width: 1365px) {
    .clanci-1 {
        width: 1050px;
    }
    .kadar-slike {
        top: 110px;
    }
    .k-dots {
        right: 13%;
    }
}

@media (min-width: 1535px) {
    .clanci-1 {
        width: 1055px;
    }
    .inter-text {
        top: 306px;
    }
    .kadar-slike {
        top: 110px;
        width: 484px;
        height: 632px;
    }
    .kadar-slike img {
        height: 528px;
    }
    .k-dots {
        top: 320px;
        right: 14%;
    }
}

       

@media (min-width: 1650px) {
    #info {
        top: 140px;
        padding: 12px;
        font-size: 11px;
        line-height: 10px;
    }
            #info img {
                width: 50px;
                margin-bottom: 12px;
            }
    header img {
            width: 110px;
            top: 40px;
            left: 140px;
        }
    .clanci-1 {
        width: 1200px;
        margin: 0 auto 66px auto; 
    }
            .inter-text {
                width: 500px;
                height: 350px;
                top: 322px;
            }
                    .inter-text h1 {
                        font-size: 60px;
                        line-height: 62px;
                        letter-spacing: 3px;
                        -webkit-text-stroke: 6px;
                    }
                    .inter-text h5,
                    .inter-text p {
                        font-size: 15px;
                        line-height: 19px;
                    }
                    .btn {
                        font-size: 16px;
                        line-height: 26px;
                        padding: 15px 40px;
                    }
            .kadar-slike {
                top: 138px;
                height: 680px;
                width: 520px;
                transform: translateX(600px);
            }
                    .kadar-slike img {
                        height: 580px;
                    }
                    .k-dots {
                        top: 320px;
                        width: 30px;
                        height: 380px;
                        right: 14%;
                    }
                    .k-dots div {
                        height: 18px;
                        width: 18px;
                        margin-bottom: 68px;
                    }
}  

            @media (min-width: 1919px) and (max-width: 1920px) {
                .k-dots {
                    right: 19%;
                }
            }


@media (min-width: 1921px) {
    #info {
        padding: 20px;
        font-size: 12px;
        line-height: 10px;
        top: 196px;
    }
            #info img {
                width: 60px;
                margin-bottom: 20px;
            }
    header img {
        top: 50px;
        left: 250px;
    }
    .clanci-1 {
        width: 1500px;
    }
            .kadar-text {
                height: 800px;
                padding: 220px 150px 0 0;
                top: 260px; 
            }
                        .kt-5 {
                            height: 870px;
                        }
                    .anchors {
                        position: absolute;
                        top: -150px;
                    }
                    .inter-text {
                        width: 630px;
                        height: 420px;
                        top: 450px;
                    }
                    .inter-text h1 {
                        font-size: 70px;
                        line-height: 72px;
                        letter-spacing: 3px;
                        -webkit-text-stroke: 6px;
                        margin-bottom: 30px;
                    }
                    .inter-text h5,
                    .inter-text p {
                        font-size: 18px;
                        line-height: 24px;
                    }
            .kadar-slike {
                height: 800px;
                width: 600px;
                border-radius: 120px;
                transform: translateX(650px); 
                right: 50%;
                top: 260px;
            }
                    .kadar-slike img {
                        height: 680px;
                    }
                    .k-dots {
                        top: 522px;
                        width: 30px;
                        height: 380px;
                        right: 21%;
                    }
                    .k-dots div {
                        height: 18px;
                        width: 18px;
                        margin-bottom: 68px;
                    }
        footer {
        font-size: 13px;
    }
}



