* {
    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 {
    /* https://css-tricks.com/the-trick-to-viewport-units-on-mobile/ */
    height: 100vh;
    /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
    /*eventualno da se proba --- https://chanind.github.io/javascript/2019/09/28/avoid-100vh-on-mobile-web.html
        ---- https://dev.to/admitkard/mobile-issue-with-100vh-height-100-100vh-3-solutions-3nae*/
}

.header {
    position: relative;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* header background  */

.parallax-img1 {
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

/* header logo */

.langLogoMenu {
    position: absolute;
    width: 100%;
    top: 8%;
    z-index: 1;
}

.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: #fff;
    margin: 3px 0;
    transition: 0.4s;
}

/* header text */

.header-text {
    text-align: center;
    color: #fff;
    margin: auto;
}

    .header-text h1 {
        font-size: 90px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .header-text p {
        font-size: 21px;
        color: #cccccc;
    }

/* 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: #fff;
    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;
        left: 0;
        right: 0;
        margin: auto;
        width: 1.25rem;
        height: 1.25rem;
        border: 0.25rem solid #fff;
        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;
        height: 160px;
        margin: 10px 10px;
    }

    .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: #fff;
    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);
}

/* MENU overlay */

.overlay {
    display: block;
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    overflow-y: 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;
    }
}
/* Block 2 Project Info */

.project-info-container-web-text {
    margin: 120px 0;
    text-align: center;
}

.project-info-row {
    width: 100%;
    margin: 0;
}

.project-text-web img {
    max-width: 100%;
    height: auto;
}

.project-text-web p {
    font-size: 18px;
}

.project-info-container-web-table {
    text-align: center;
}

.project-table-column-web {
    width: 70%;
}

/* Block 2 Project Info - TABLE*/

.project-table-web {
    width: 80%;
    margin: auto;
    font-size: 16px;
}

    .project-table-web tr {
        border-bottom: 1px solid #ccc;
    }

        .project-table-web tr:last-child {
            border-bottom: none;
        }

    .project-table-web th {
        border-right: 2px solid #000;
        text-align: left;
        padding: 20px;
    }

    .project-table-web td {
        text-align: left;
        padding: 20px;
    }

/* Block 2 Project Info - GALLERY*/

.galleryImg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	height: 750px;
}

.project-info-container-web-gallery {
    margin: 120px 0 170px;
    width: 100%;
}

.project-info-gallery-web {
    text-align: center;
}

/*.projectGalleryImg {
    height: 600px;
}*/

/*Gallery img height*/

/* @media (min-height: 937px) {

    .galleryImg {
        height: 800px;
    }
} */

@media (max-height: 900px) {

    .galleryImg {
        height: 700px;
    }
}

@media (max-height: 800px) {

    .galleryImg {
        height: 600px;
    }
}

@media (max-height: 700px) {

    .galleryImg {
        height: 500px;
    }
}

@media (max-height: 600px) {

    .galleryImg {
        height: 400px;
    }
}

@media (max-height: 500px) {

    .galleryImg {
        height: 300px;
    }
}

@media (max-height: 400px) {

    .galleryImg {
        height: 200px;
    }
}

@media (max-width: 400px) {

    .galleryImg {
        height: 350px;
    }
}

@media (max-width: 350px) {

    .galleryImg {
        height: 300px;
    }
}

/*@media (min-height: 300px) {

    .projectGalleryImg {
        height: 200px;
    }
}*/


/*Gallery img height END*/

.projects-gallery-buttons {
    width: 180px;
    margin: auto;
    margin-top: 3%;
}

.carousel-control-prev {
    position: relative;
    height: 40px;
    width: 40px;
    border: 3px solid black;
    opacity: 1;
    margin-top: -4px;
    float: left;
}

.carousel-control-next {
    position: relative;
    height: 40px;
    width: 40px;
    border: 3px solid black;
    opacity: 1;
    margin-top: -4px;
    float: left;
}

.num {
    color: #adadad;
}

#slidetext1 {
    color: #000;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #000;
}

.carousel-control-prev img,
.carousel-control-next img {
    height: 23px;
}

#slidetext {
    font-size: 24px;
    width: 100px;
    position: relative;
    float: left;
}

/* SIMILAR PROJECTS */

.similar-project-row-mobile {
    display: none;
}

.similar-projects-web h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 3%;
}

.construction-projects-container-mobile {
    display: none;
}

.similar-project-row {
    width: 100%;
    margin: 0;
}

.similar-projects-selection {
    display: inline-block;
    padding: 0;
}

/* gray image */

/* https://codepen.io/codewithJahid/pen/JRPvBj */

.similar-project-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.similar-project-image {
    filter: gray;
    -webkit-filter: grayscale(1);
}

    .similar-project-image:hover {
        filter: none;
    }

.similar-project-text {
    bottom: 0;
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    width: 100%;
}

    .similar-project-text h5 {
        font-size: 38px;
        font-weight: bold;
    }

    .similar-project-text p {
        font-size: 22px;
        color: #cccccc;
    }

.similar-project-image a {
    text-decoration: none;
}

.similar-projects-button {
    text-align: center;
    margin-bottom: 70px;
}

.similar-projects-btn {
    margin-top: 3%;
}

/* FOOTER  */

.footer {
    text-align: center;
    font-size: 15px;
    height: 60px;
}

    .footer hr {
        background: #000;
        height: 1.0px;
        margin: 0 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 (max-width: 1650px) {

    /* HEADER resize and reposition */
    .header-text h1 {
        font-size: 70px;
    }
}

/*----------------------------------------------------------MEDIA QUERIES--------------------------------------*/

@media (max-width: 1450px) {

    /* Gallery image */

    /*    .projectGalleryImg {
        height: 500px;
    }*/
}



/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */
@media (max-width: 1257px) {
    /* HEADER resize and reposition */
    .header-text h1 {
        font-size: 60px;
    }

    .down-arrow-top {
        border-width: 0px 3px 3px 0;
        padding: 6px;
    }

    .down-arrow-middle {
        border-width: 0px 3px 3px 0;
        padding: 6px;
    }

    .down-arrow-bottom {
        border-width: 0px 3px 3px 0;
        padding: 6px;
    }

    /* project info resize and reposition */
    .project-text-web p {
        font-size: 17px;
    }

    /* TABLE */
    .project-table-web {
        font-size: 15px;
    }

    /* SIMILAR */
    .similar-project-text h5 {
        font-size: 30px;
    }
}

/* -----------------------MEDIA QUERIES------------------------ */

@media screen and (max-width: 1200px) {

    /* 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: 1191px) {

    .similar-projects-web {
        margin-top: 16%;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media (max-width: 991px) {

    /* HEADER resize and reposition */


    .header-text h1 {
        font-size: 45px;
    }

    .overlay a {
        padding: 4px;
        font-size: 18px;
    }

    /* project info resize and reposition */
    .project-text-web p {
        font-size: 14px;
    }

    /* TABLE */
    .project-table-web {
        font-size: 14px;
    }

        .project-table-web th {
            padding: 9px;
        }

        .project-table-web td {
            padding: 9px;
        }

    /* GALLERY */

    /*    .projectGalleryImg {
        height: 450px;
    }*/

    .carousel-control-prev img,
    .carousel-control-next img {
        height: 20px !important;
    }

    .carousel-control-prev {
        height: 30px;
        height: 40px;
        width: 40px;
    }

    .carousel-control-next {
        height: 30px;
        height: 40px;
        width: 40px;
    }

    /* SIMILAR */
    .similar-project-text h5 {
        font-size: 27px;
    }

    .similar-project-text p {
        font-size: 16px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media (max-width: 768px) {

    /* HEADER resize and reposition */
    .logo,
    .logo-menu {
        top: 10%;
    }

    .menu-icon {
        display: none;
    }

    .menu-icon-mobile {
        display: block;
    }

    .overlay .closebtn {
        color: black;
        text-decoration: none;
        position: absolute;
        top: 3%;
        right: 4%;
        font-size: 55px;
    }

    /* 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;
    }

    .header-text p {
        width: 90%;
        margin: auto;
        font-size: 16px;
    }

    /* PROJECT INFO -resize */
    .project-text-column-web {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-text-web {
        width: 100%;
    }

        .project-text-web img {
            max-height: 200px;
            max-width: 250px;
        }

    /* TABLE */
    .project-table-web {
        width: 100%;
        font-size: 12px;
    }

        .project-table-web th {
            padding: 5px;
        }

        .project-table-web td {
            padding: 5px;
        }

    /* GALLERY */
    .project-gallery-column-web {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*    .projectGalleryImg {
        max-height: 200px;
        max-width: 250px;
    }*/

    /* SIMILAR */
    .similar-project-row {
        display: none;
    }

    .container-flow-similar-slide {
        overflow: scroll;
        margin-left: 5px;
    }

        .container-flow-similar-slide::-webkit-scrollbar {
            display: none;
        }

    .container-flow-similar-slide {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .similar-project-row-mobile {
        display: revert;
        margin-right: -30000px;
        width: fit-content;
    }

    .similar-projects-selection-mobile {
        position: relative;
        display: block;
        float: left;
        margin: 0px 10px;
    }

    .similar-project-image-mobile {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
        width: 300px;
    }

    /*       .similar-project-image-mobile img {
            width: 300px;
        }*/

    .similar-projects-web h2 {
        font-size: 30px;
    }

    .similar-project-text h5 {
        font-size: 20px;
    }

    .similar-project-text p {
        font-size: 14px;
    }

    /* SIMILAR BUTTON */
    .similar-projects-btn {
        margin: 12% 0 14%;
    }

    /* FOOTER */
    .footer {
        font-size: 15px;
    }

    .copyright p {
        font-size: 10px;
    }
}

/* -----------------------MEDIA QUERIES------------------------------------------------------------------------ */

@media screen and (max-width: 700px) {
    .carousel-control-prev {
        height: 30px;
        height: 35px;
        width: 35px;
    }

    .carousel-control-next {
        height: 30px;
        height: 35px;
        width: 35px;
    }
}

@media screen and (max-width: 576px) {

    /* HEADER - resize and reposition */


    .header-text h1 {
        font-size: 30px;
    }

    .header-text p {
        font-size: 14px;
    }

    /* Block 2 - resize and reposition */
    /* table */
    .project-table-column-web {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-table-web th {
        padding: 10px;
    }

    .project-table-web td {
        padding: 10px;
    }

    /* GALLERY */
    .project-info-container-web-gallery {
        margin: 85px 0 140px;
    }
    /*
    .projects-gallery-buttons {
        margin-top: 10%;
    }*/

    /* Block 3 - resize and reposition */
    .similar-projects-web {
        margin-top: 25%;
    }

        .similar-projects-web h2 {
            font-size: 26px;
        }

    .similar-project-image-mobile {
        height: 230px;
        width: 230px;
    }

    /* SIMILAR BUTTON */
    .similar-projects-btn {
        margin: 15% 0 20%;
    }
}

/* ALL BUTTONS CLASS */

.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;
    }
