body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    margin: unset;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

a,
a:-webkit-any-link,
a:-webkit-any-link:active,
a:active,
a:hover {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a:-webkit-any-link {
    color: none !important;
    cursor: pointer;
    text-decoration: none !important;
}

content.main {
    display: flex;
    flex-direction: column;
    margin: 0% 7vw;
}

content.main > element.hero {
    display: flex;
    flex-direction: column;
    position: relative;

    justify-content: center;
    align-items: flex-start;
    /* align-items: center; */

    /* height: 45vw; */
    height: 30vw;

    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 10%;
    box-sizing: border-box;
}

content.main > element.hero:before {
    background: rgba(0, 0, 0, .25);
    border-radius: inherit;
    content: "";
    display: inherit;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

content.main > element.hero > content.hero {
    display: flex;
    flex-direction: column;
    color: #FFF;
    position: relative;
}

content.main > element.hero > content.hero > h1 {
    
}

content.main > widget.blocks {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: -7% 2% 0% 2%;

    gap: 1%;
}

content.main > widget.blocks > a.block {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;

    height: 16rem;
    width: calc(50% - 4px);

    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 6px 6px;
}

content.main > widget.blocks > a.block:before {
    background: rgba(0, 0, 0, .25);
    border-radius: inherit;
    content: "";
    display: inherit;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

content.main > widget.blocks > a.block > p {
    position: relative;
    color: #FFF;
}

content.main > widget.obavjestenja {
    display: flex;
    flex-direction: row;
    position: relative;
    box-sizing: border-box;
    width: 100%;

    margin: 2.5% 0% 0% 0%;
}

content.main > widget.obavjestenja > div.vijesti {
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;

    padding: 5% 2.5%;
    box-sizing: border-box;

    background: purple;
}

content.main > widget.obavjestenja > div.vijesti > p.vijesti {
    font-size: 2vw;
}

content.main > widget.obavjestenja > div.vijesti > a.vijest {
    color: #FFF;
    p.title {
        font-weight: 900;
        font-size: 1.1rem;
    }
    p.content {
        font-size: 1.0rem;
    }
}

content.main > widget.obavjestenja > div.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* flex: 0 0 auto; */

    padding: 5% 2.5%;

    width: auto;
    box-sizing: border-box;
    flex: 0 0 40%;

    /* background: green; */
    background: #e1e1e1;
    justify-content: center;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

content.main > widget.obavjestenja > div.links:before {
    background: rgba(0, 0, 0, .5);
    border-radius: inherit;
    content: "";
    display: inherit;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;

    backdrop-filter: blur(3px);
}

content.main > widget.obavjestenja > div.links > a.link {
    display: flex;
    flex-direction: row;
    position: relative;

    width: 100%;
    background: purple;
    padding: 3% 3%;
    box-sizing: border-box;

    color: #FFF;
    font-weight: 600;
}

content.main > widget.obavjestenja > div.links > a.link:hover {
    background: rgb(69 6 69 / 80%);
    /* padding: 3.5% 3%; */
}