:root {
    --text-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #efefef;
}

header {
    display: flex;

}

.title-logo {
    display: flex;
    width: 30%;
}

.title-logo .logo {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
}

.logo img {
    width: 410px !important;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.6));
}

/* TOGGLE */
.toggle {
    position: absolute;
    height: 10px;
    width: 10px;
    right: 100px;
    top: 120px;
    display: none;
}

.toggle span {
    height: 5px;
    display: block;
    width: 50px;
    background: var(--text-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-10px);
    transition: 0.5s;
}

.toggle span:nth-child(4) {
    transform: translate(-50%, -50%) translateY(10px);
    transition: 0.5s;
}

.toggle.active span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-20px);
    transition: 0.5s;
    opacity: 0;
}

.toggle.active span:nth-child(4) {
    transform: translate(-50%, -50%) translateY(20px);
    transition: 0.5s;
    opacity: 0;
}

.toggle.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.5s;
    transition-delay: 0.3s;
}

.toggle.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.5s;
    transition-delay: 0.3s;
}

.toggled-thing {
    display: none;
}

.toggled-thing.active {
    display: flex;
}

nav {
    width: 70%;

}

nav ul {
    height: 40%;
    display: flex;
    width: 98%;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10%;
}

nav ul li {
    list-style: none;
    width: 25%;
    text-align: left;

}

nav ul li a {
    color: var(--text-color);

    padding: 10px 0;
    font-weight: 700;
    transition: color ease-in-out 300ms;
    font-size: 24px;
}

nav ul li a:hover {
    color: var(--text-color);
    transition: all ease-in-out 300ms;
    background-color: green;
}

/* container */
.container {
    width: 60%;
    margin: 0 auto;
    min-height: 100vh;

}



.container.pocetna {
    width: 90%;
    margin: 0 auto;
    min-height: 100vh;
}

/* pocetna */
.pocetna-bg {
    background-image: url('../assets/Slika_Početna.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

.ostalo-bg {
    background-image: url('../assets/Slika_za_ostalo.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pocetna-wrapp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 6%;
    align-items: center;
    min-height: 60vh;
    flex-direction: column;
}

.pocetna-wrapp .krugovi-wrapp {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pocetna-wrapp .social-pocetna {
    width: 30%;
}

.pocetna-wrapp .krugovi-wrapp .krugovi {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
}

.pocetna-wrapp .krugovi-wrapp .krugovi .krug {
    width: 270px;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    border: var(--text-color) solid 1px;
    border-radius: 50%;
    font-size: 40px;
    border: 10px solid green;
}

.pocetna-wrapp .krugovi-wrapp .krugovi p {
    color: var(--text-color);
    text-align: center;
    font-size: 24px;
    margin: 10px;
}

.pocetna-wrapp .krugovi-wrapp .krugovi .krug:hover {
    cursor: pointer;
    transition: background 300ms ease-in-out;
    background-color: var(--text-color);
    color: green;
    opacity: .7;
}

.pocetna-wrapp .social-pocetna {
    display: flex;
    flex-direction: column;

    justify-content: center;


}

.pocetna-wrapp .social-pocetna li {
    list-style: none;
    width: 100%;
    border: 1px solid var(--text-color);
    text-align: center;
    margin: 10px;

}

.pocetna-wrapp .social-pocetna li a {
    color: var(--text-color);
    display: block;
    padding: 10px 0;
    font-weight: 700;
    transition: color ease-in-out 300ms;
}

.pocetna-wrapp .social-pocetna li a:hover {
    color: green;
    transition: all ease-in-out 300ms;
    background-color: var(--text-color);
}

/* footer */
.footer {


    display: flex;
    background-color: transparent;
    width: 100%;
}

.footer h6 {
    color: white;
    font-size: 16px;
    padding: 5px;
    font-weight: 500;
}

.footer h6 a {
    color: white;
}

/* kontakt */
.kontakt-wrapp {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    align-items: center;
    min-height: 60vh;
}

.kontakt-wrapp .info {
    width: 100%;
    color: var(--text-color);


}

.kontakt-wrapp .map {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.kontakt-wrapp .info .item {
    margin: 10px 0;
    font-size: 25px;
}

.item-info {
    color: var(--text-color);
}

/* onama */
.onama-header {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.onama-header h1 {
    color: var(--text-color);
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    margin: 20px auto;
    flex-direction: column;

}

.social-icons.pocetna {
    flex-direction: column;
    width: 65%;
    margin: 30px auto;
}

.social-icons a {
    color: white;
    margin: 5px;
    font-size: 125px;
    display: flex;
    align-items: center;

}

.social-icons.pocetna a {
    width: 100%;
    justify-content: center;
    font-size: 145px;
}

.social-icons a .instagram,
.social-icons a .facebook,
.social-icons a .mail {
    background: green;
    width: 0%;
    overflow: hidden;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;

}

.social-icons a:nth-of-type(1):hover>.instagram,
.social-icons a:nth-of-type(2):hover>.facebook,
.social-icons a:nth-of-type(3):hover>.mail {
    width: 100%;

}

.onama-wrapp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

.onama-wrapp .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    width: 75%;
}

.onama-wrapp .item .naslov {
    color: var(--text-color);
    font-weight: 900;
    margin: 40px 0;
    font-size: 36px;
    font-family: 'Marck Script', cursive;
}

.onama-wrapp .item .text {
    line-height: 30px;
    color: var(--text-color);
    font-size: 21px;
}

.slova-iskosena {
    font-size: 30px;
    margin: 20px auto;
    font-family: 'Dancing Script', cursive;
    color: var(--text-color);
}

/* PODRZI... */
h2 {
    margin: 20px 0;
    color: var(--text-color);
}

.podrziwrapp {
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 50vh;
    align-items: center;
}

.podrziwrapp .item {
    width: 33%;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.podrziwrapp .item .krug {
    width: 240px;
    height: 240px;
    border-radius: 50%;
}

.podrziwrapp .item .text {
    color: white;
    font-size: 21px;
}

.ukljuciwrapp {
    display: flex;
    flex-direction: column;
    line-height: 36px;
    color: var(--text-color);
    font-size: 22px;
}

.greentext {
    color: green;
    cursor: pointer;
    font: bold;
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 20px auto;
    justify-content: center;
    align-items: left;
}

form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    line-height: 36px;
}

form .form-group label {
    color: var(--text-color);
    font-weight: 700;
    font-size: 27px;
}

form .form-group input,
form .form-group select,
form .form-group textarea {
    border: green 1px solid;
    outline: none;
    font-size: 15px;
    padding: 5px;
}

form .form-group button {
    color: green;
    font-size: 27px;
    border: 1px solid green;
    margin-top: 5px;
}

form .form-group button:hover {
    color: white;
    background-color: green;
    transition: all ease-in-out 300ms;
    cursor: pointer;
}

.goback {
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 24px;
    margin: 20px 0;
    transition: letter-spacing ease-in-out 500ms;
}

.goback:hover {
    letter-spacing: 2px;
    transition: all ease-in-out 500ms;
}

/* projekti */
.uvod-text {
    margin: 10% 0;
    line-height: 28px;
    font-size: 20px;
    text-align: center;
    color: var(--text-color);
}

.projekti {
    display: flex;
    flex-direction: column;
    line-height: 30px;
    margin-bottom: 35px;
}

.projekti li {
    list-style-image: url('../assets/bulet.png');
    color: var(--text-color);
    font-size: 20px;

}

.projekti li-h {
    color: var(--text-color);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
}

.projekti .projekat {
    color: var(--text-color);
    font-weight: 700;
    margin: 0 2px;
}

/* galerija */

.gallery-wrapp {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-wrapp .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-wrapp .naslov {
    color: var(--text-color);
    margin: 20px 0;
    font-size: 24px;
}

.gallery-wrapp .slike {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery-wrapp .slike a {
    margin: 8px;
    box-shadow: 0 0 3px 6px rgba(34, 139, 34, 0.3);
    border-radius: 15px;
}

.gallery-wrapp .slike a img {
    display: block;
    border-radius: 15px;

}

/* VESTI - PUBLIKACIJE */
.vesti-wrapp {
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    align-items: center;
    margin: 10px auto;

}

.vesti-wrapp .vest {
    background-color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 25px;

}

.vesti-wrapp .vest p,
.vesti-wrapp .vest ol {
    padding: 20px;
    color: green;
}

.vesti-wrapp .vest.publikacija {
    width: 100%;
}

.vesti-wrapp .vest img,
.vesti-wrapp .vest .galerija {
    width: 350px;
    margin: 10px auto;
    border-radius: 15px;
}

.vesti-wrapp .vest .vest-naslov {
    color: green;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

@media screen and (max-width:1400px) {
    nav {
        display: flex;
        justify-content: flex-end;
    }

    nav ul {
        margin-top: 12.5%;
    }

    .logo img {
        width: 365px !important;
    }

}

@media screen and (max-width:1200px) {
    .logo img {
        width: 320px !important;
    }

    nav ul li a {
        font-size: 22px;
    }

}

@media screen and (max-width:1100px) {
    .container {
        width: 75%;
    }

    .footer h6 {
        font-size: 11px;
    }

    .logo img {
        width: 200px !important;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 200px;
        height: 200px;
        font-size: 35px;
    }

    .logo img {
        width: 260px !important;
    }

    nav ul li a {
        font-size: 20px;
    }

    nav ul {
        margin-top: 11.5%;
    }
}

@media screen and (max-width:920px) {
    .logo img {
        width: 220px !important;
    }

    nav ul li a {
        font-size: 22px;
    }

    nav ul li a {
        font-size: 18px;
    }

    footer h6 {
        font-size: 11px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }

    .social-icons a {
        font-size: 95px;
    }

    .social-icons.pocetna {
        width: 85%;
    }

    .social-icons.pocetna a {
        justify-content: flex-start;
        font-size: 95px;
    }
}

@media screen and (max-width:750px) {
    .container {
        width: 85%;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 170px;
        height: 170px;
        font-size: 25px;

    }

    .pocetna-wrapp .krugovi-wrapp .krugovi p {
        font-size: 13px;
    }

    .pocetna-wrapp .social-pocetna {
        width: 90%;
    }

    .pocetna-wrapp .social-pocetna li a {
        font-size: 13px;
    }

    form .form-group label {
        font-size: 18px;
    }

    .podrziwrapp {
        flex-direction: column;
    }

    .podrziwrapp .item {
        width: 70%;
        margin-bottom: 40px;
    }

    nav {
        display: none;
    }

    .toggle {
        display: block;
    }

    .toggled-thing ul {
        display: flex;
        width: 98%;
        justify-content: space-evenly;
        margin: auto;
        flex-direction: column;
    }

    .toggled-thing ul li {
        list-style: none;
        width: 100%;

        text-align: center;

    }

    .toggled-thing ul li a {
        color: var(--text-color);
        display: block;
        padding: 10px 0;
        font-weight: 700;
        transition: color ease-in-out 300ms;
        text-transform: uppercase;
    }

    .toggled-thing ul li a:hover {
        color: white;
        transition: all ease-in-out 300ms;
        background-color: green;
    }

    .title-logo .title a {
        font-size: 30px;
    }

    .title-logo .title {
        width: 70%;
    }

    .kontakt-wrapp .info .item {
        font-size: 20px;
    }

    .gallery-wrapp .slike {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo img {
        width: 260px !important;
    }
}

@media screen and (max-width:600px) {
    .title-logo .title {
        width: 63%;
    }

    .kontakt-wrapp {
        flex-direction: column;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 150px;
        height: 150px;
        font-size: 25px;
        border: 10px solid green;
    }

    .social-icons.pocetna a {
        justify-content: flex-start;
        font-size: 75px;
    }
}

@media screen and (max-width:520px) {
    .title-logo .title a {
        font-size: 25px;
    }

    .pocetna-wrapp {
        min-height: 42vh;
        overflow: hidden;
    }

    .gallery-wrapp .naslov {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 130px;
        height: 130px;
        font-size: 20px;
        border: 5px solid green;
    }

    .pocetna-wrapp {
        margin-top: 30%;
    }

    .slova-iskosena {
        font-size: 25px;
        margin: 20px auto;
        font-family: 'Dancing Script', cursive;
        color: var(--text-color);
    }

    .social-icons.pocetna a,
    .social-icons a {
        font-size: 48px;
    }
}

@media screen and (max-width:490px) {
    .container {
        width: 93%;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi {
        margin: 5px;
        justify-content: start;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 100px;
        height: 100px;
        font-size: 15px;
        border: 5px solid green;
    }

    .container.pocetna {
        min-height: 72vh;
    }
}

@media screen and (max-width:450px) {
    .title-logo .title a {
        font-size: 20px;
    }

    .title-logo .title {
        width: 50%;
    }

    .pocetna-wrapp .krugovi-wrapp {
        width: 70%;
    }

    .social-icons a {
        font-size: 80px;
    }

    .social-icons.pocetna a,
    .social-icons a {
        font-size: 48px;
    }

    .logo img {
        width: 200px !important;
    }

    .toggle {
        top: 95px;
        right: 50px
    }

    .vesti-wrapp {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 10px auto;

    }

    .vesti-wrapp .vest {
        background-color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        padding: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 25px;

    }

    .vesti-wrapp .vest img {
        width: 100%;
    }

    .vesti-wrapp .vest .vest-naslov {
        font-size: 14px;
    }
}

@media screen and (max-width:400px) {
    .pocetna-wrapp {
        flex-direction: column;
    }

    .pocetna-wrapp .krugovi-wrapp .krugovi .krug {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .pocetna-wrapp .krugovi-wrapp {
        width: 90%;
    }

    .pocetna-wrapp .social-pocetna {
        width: 90%;
    }

    .title-logo .title a {
        font-size: 21px;
    }

    .title-logo .title {
        width: 49%;
    }

    .uvod-text {
        font-size: 15px;
        line-height: 25px;
    }
}