* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/*PRELOADER*/

.loader-container {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    position: absolute;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    25% {
        color: #0062A3;
    }

    50% {
        color: #fff;
    }

    75% {
        color: #0062A3;
    }

    to {
        transform: rotate(360deg);
    }
}

/*PRELOADER END*/

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: overlay;
}

/* Scrollbar*/

/*::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgb(139, 139, 139);
        border-radius: 10px;
    }

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}*/

/* Блок 1 – Logo & Header */

.header {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    position: relative;
    text-align: center;
}

/* header background  */

.parallax-img1 {
    background-color: #fff;
    height: 100%;
    position: relative;
}

/* header logo */

.langLogoMenu {
    position: absolute;
    width: 100%;
    top: 8%;
}

.logo,
.logo-menu {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 8%;
}

    .logo img,
    .logo-menu img {
        width: 144px;
        height: 35px;
        left: 0;
        right: 0;
        margin: auto;
    }

/* LANGUAGE SELECTOR */
.language-active {
    color: #515151 !important;
}

.language-container-mobile {
    display: none;
}

.language-container {
    position: absolute;
    left: 5%;
}

    .language-container:focus {
        outline: none;
        box-shadow: none;
    }

.lang-btn:focus {
    outline: none;
    box-shadow: none;
}

.lang-btn {
    padding: 0 5px 0 0;
}

    .lang-btn h5 {
        color: #ccc;
        margin: 0;
        font-size: 1rem;
    }

    .lang-btn:nth-child(1) {
        border-right: 2px solid #ccc;
        border-radius: 0;
    }

/* meni ikonce - fiksirana za header */

.bar1-fixed,
.bar2-fixed,
.bar3-fixed {
    width: 24px;
    height: 4px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.4s;
}

/* header text */

.header-text {
    text-align: center;
    color: #000;
    margin: auto;
}

.fillHeader {
    font-size: 90px;
    font-weight: 900;
    margin-bottom: 0;
}

.header-p {
    font-size: 28px;
    color: #ccc;
}

.news-subtitle {
    font-size: 18px;
    margin: 20px 0;
    color: #adadad;
}

/* header arrows - showing to scroll down */
/* ARROWS TESTING */
.scroll-down {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 20%;
    transition: transform 0.5s 1.5s, opacity 0.3s 1.7s, z-index 0.5s 1.5s;
    color: #000;
    text-align: center;
}

    .scroll-down.removed {
        transform: translateY(-20rem);
        opacity: 0;
        z-index: -10;
        transition: transform 0.5s, opacity 0.3s 0.2s, z-index 0.5s;
    }

    .scroll-down:after {
        content: "";
        position: absolute;
        display: block;
        bottom: -3rem;
        margin: auto;
        left: 0;
        right: 0;
        width: 1.25rem;
        height: 1.25rem;
        border: 0.25rem solid #000;
        border-left: none;
        border-top: none;
        transform-origin: 50% 50%;
        transform: rotate(45deg);
        animation: arrowMove 1.2s infinite;
    }

@keyframes arrowMove {
    to {
        transform: rotate(45deg) translateY(2rem) translateX(2rem);
        opacity: 0;
    }
}

@keyframes navArrowMove {
    to {
        transform: translateX(2rem);
        opacity: 0;
    }
}

/* FULL SCREEN WEB MENU */

/* menu selection */

.overlayWeb {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    z-index: 7;
}

.menu-container {
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: table;
    width: 100%;
}

.menu {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.rows {
    text-align: center;
}

    .rows a {
        display: inline-block;
        width: 210px;
        height: 210px;
        border: 1px solid #ccc;
        text-decoration: none;
        color: inherit;
        margin: 25px 25px;
        text-align: center;
    }

        .rows a:hover {
            border: none;
        }

.menu-option {
    height: 100%;
    width: 100%;
    text-align: center;
    position: relative;
}

    .menu-option h4 {
        font-size: 25px;
        font-weight: bold;
    }

.h4Div {
    top: 40%;
    width: 100%;
    color: black;
    position: absolute;
}

.h4Div-correction {
    top: 35%;
}

.h4Div h4 {
    margin: auto;
}

@media (max-height: 769px) {
    .rows a {
        width: 160px;
        margin: 10px 10px;
        height: 160px;
    }

    .h4Div h4 {
        font-size: 19px;
    }
}

/* MENU ANIMATIONS */

.menu-link {
    position: relative;
}

    .menu-link:hover {
        cursor: pointer;
    }

.menu-anim {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
}

    .menu-anim video {
        width: 100%;
        height: 100%;
    }

/* Home button */

.homeBtn {
    position: absolute;
    top: 8%;
    left: 5%;
}

.btn-home {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #9D9D9D;
}

    .btn-home:hover {
        color: #9D9D9D;
    }

    .btn-home:focus {
        box-shadow: none;
    }

.homeBtn button:focus {
    outline: none;
}

.homeBtn button img {
    margin-right: 6px;
    margin-bottom: 3px;
}

/* menu icon web */

.menu-icon-black {
    right: 4.8%;
    top: 7.5%;
    float: right;
    position: absolute;
}

    .menu-icon-black:hover {
        cursor: pointer;
    }

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 7px 0;
    transition: 0.4s;
}

.bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.bar2 {
    opacity: 0;
}

.bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-10px, -6px);
}

.menu-black {
    background-color: #000;
}

/* FULL SCREEN WEB MENU END */

/* menu droping effect */

.menu-icon-button {
    background: none;
    border: none;
}

    .menu-icon-button:focus {
        outline: none;
    }

    .menu-icon-button:hover {
        cursor: pointer;
    }

.menu-icon {
    cursor: pointer;
    position: absolute;
    z-index: 6;
    top: 8%;
    right: 5%;
}

.menu-icon-mobile {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 8%;
    right: 5%;
}

.bar1-mobile,
.bar2-mobile,
.bar3-mobile {
    width: 24px;
    height: 4px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.4s;
}

.change .bar1-mobile {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2-mobile {
    opacity: 0;
}

.change .bar3-mobile {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-10px, -6px);
}

.overlay {
    display: block;
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    overflow-y: hidden;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 18%;
    text-align: center;
    width: 85%;
    left: 0;
    right: 0;
    margin: auto;
}

.overlay .menu-link {
    padding: 15px 0;
    border-bottom: 1px solid black;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    display: block;
    transition: 0.3s;
    margin: auto;
}

    .overlay .menu-link:nth-child(9) {
        border-bottom: none;
    }

    .overlay .menu-link:hover,
    .overlay .menu-link:focus {
        text-decoration: none;
        color: #0062A3;
    }

#contactBtn {
    margin-bottom: 15px;
}

/* MOBILE MENU HEIGHT RESPONSIVNES  */
@media screen and (max-height: 715px) {
    .overlay-content {
        top: 20%;
    }

    .overlay .menu-link {
        padding: 10px 0;
    }
}

@media screen and (max-height: 640px) {
    .overlay .menu-link {
        padding: 10px 0;
        font-size: 16px;
    }
}

@media screen and (max-height: 580px) {
    .overlay {
        overflow: auto;
    }
}

@media screen and (max-height: 370px) {
    .overlay {
        overflow: auto;
    }
}

/* NEWS POST */

.news-post-container-mobile {
    display: none;
}

.news-main-img img {
    width: 100%;
}

.news-2imgs-img img {
    width: 100%;
}

.news-post-text {
    text-align: justify;
    margin: 6% 0;
}

    .news-post-text img {
        max-width: 100%;
        height: auto;
    }

.news-post-text2 {
    text-align: justify;
    margin: 6% 0 2%;
    border-bottom: 2px solid black;
}

.category {
    text-align: center;
    font-weight: 900;
}

.share-social {
    text-align: center;
    margin-top: 25px;
}


/* NEWS POST */

.news-post-section {
    margin: 60px 0 120px;
}

.horizontalLine {
    height: 0.2px;
    background-color: #000;
    margin: 30px 0;
}


/* RELATED POSTS */
/* news - small squares before date */
.news-black-square {
    width: 10px;
    height: 10px;
    background-color: #000;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 1px;
}

.related-section {
    margin: 120px 0;
}

.news-h {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-h {
    text-align: center;
    font-size: 50px;
    font-weight: 900;
}

    .related-h h2 {
        font-size: 45px;
        font-weight: 900;
    }

.related-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}


.related-img-row {
    margin-top: 35px;
}

.related-img img {
    width: 100%;
}

.related-news-link {
    color: unset;
}

    .related-news-link:hover {
        text-decoration: none;
        color: unset;
    }

.news-project-text {
    margin-top: 4%;
}

    .news-project-text .news-h {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 0;
    }

    .news-project-text .news-p {
        color: #ccc;
        font-size: 18px;
        font-weight: 900;
    }

.news-date-black-square {
    font-weight: 900;
}

/* FOOTER  */

.footer {
    text-align: center;
    height: 60px;
}

    .footer hr {
        background: #000;
        height: 1.0px;
        margin: 50px 0 20px;
    }

.copyright p {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 20px
}

.footer-link {
    color: #000;
}

    .footer-link:hover {
        cursor: pointer;
        text-decoration: underline;
        color: #000;
    }

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 1800px) {


    .fillHeader {
        font-size: 85px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 1650px) {


    .fillHeader {
        font-size: 70px;
    }
}

/* -----------------------MEDIA QUERIES------------------------ */

@media screen and (max-width: 1200px) {

    .fillHeader {
        font-size: 60px;
    }

    /* Block 2 - Menu */
    .rows a {
        width: 150px;
        height: 150px;
        margin: 10px 10px;
    }

    .h4Div {
        top: 48%;
    }

        .h4Div h4 {
            line-height: 0px;
            font-size: 18px;
        }

    .h4Div-correction {
        top: 33%;
    }

        .h4Div-correction h4 {
            line-height: 24px;
        }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 991px) {

    /* LOGO */
    /*     .logo img,
    .logo-menu img {
        width: 200px;
        height: 50px;
    } */

    .fillHeader {
        font-size: 45px;
    }

    .overlay a {
        padding: 4px;
        font-size: 18px;
    }

    .down-arrow-top {
        width: 10px;
        height: 10px;
    }

    .down-arrow-middle {
        width: 10px;
        height: 10px;
    }

    .down-arrow-bottom {
        width: 10px;
        height: 10px;
    }

    /* RELATED POSTS */
    .related-h h2 {
        font-size: 30px;
    }

    .news-project-text .news-h {
        font-size: 18px;
    }

    .news-project-text .news-p {
        font-size: 14px;
    }

    .news-date-black-square {
        font-size: 14px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 768px) {
    .overlay .closebtn {
        color: black;
        text-decoration: none;
        position: absolute;
        top: 3%;
        right: 4%;
        font-size: 55px;
    }

    .menu-icon {
        display: none;
    }

    .menu-icon-mobile {
        display: block;
    }

    /* LANGUAGE SELECTOR */
    .language-container {
        display: none;
    }

    .language-container-mobile {
        display: unset;
        margin-left: -10px;
    }

        .language-container-mobile:focus {
            outline: none;
            box-shadow: none;
        }

    .lang-btn-mobile:focus {
        outline: none;
        box-shadow: none;
    }

    .lang-btn-mobile {
        padding: 0 !important;
        margin-bottom: 15px;
    }

        .lang-btn-mobile h5 {
            color: #ccc;
            margin: 0;
            font-size: 16px;
        }

    .lang-mk-mobile {
        padding: 0 6px 0 0;
    }

    .lang-btn-mobile:nth-child(1) {
        border-right: 2px solid #ccc;
        border-radius: 0;
    }

    /* NEWS POST */

    .news-post-container-mobile {
        display: block;
    }

    .news-main-img-mobile img {
        width: 100%;
    }

    .news-main-img {
        display: none;
    }

    .news-2imgs-img {
        margin-bottom: 10%;
    }

    .news-post-text2 p {
        margin-bottom: 10%;
    }

    .news-post-text2 {
        margin: 6% 0 10%;
    }

    .news-p {
        margin: 0;
    }

    /* RELATED  */
    .related-section {
        margin: 100px 0;
    }

    .related-img {
        margin-bottom: 5%;
    }

    /* FOOTER */
    .copyright p {
        font-size: 10px;
    }

    .policy-section {
        margin-bottom: 15%;
    }
}


/* -----------------------MEDIA QUERIES-------------------------------------------------------------------------- */

@media screen and (max-width: 576px) {

    .fillHeader {
        font-size: 30px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 500px) {
    .header-p {
        font-size: 22px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 375px) {

    /* MAIN NEWS */
    .news-h-mobile {
        font-size: 24px;
    }

    .news-p-mobile {
        font-size: 20px;
    }

    .news-date-black-square-mobile {
        font-size: 18px;
    }

    /* RELATED  */
    .related-section {
        margin: 60px 0;
    }
}

.all-btn {
    background-color: #0062A3;
    color: #fff;
    border-radius: 32px;
    padding: 8px 16px;
    font-size: 20px;
    background-position: center;
    transition: background 0.8s;
}

    .all-btn:hover {
        background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
        color: #fff;
    }

    .all-btn:focus {
        box-shadow: none;
    }

    .all-btn:active {
        background-color: #6eb9f7;
        background-size: 100%;
        transition: background 0s;
    }
