

*{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0;
}
@viewport{
    width: device-width;
    zoom: 1.0;
}
html{
    font-size: 10px;
    overflow-x: hidden; /*boban*/
}

body{
    font-size: 2rem;
    font-family: Big Shoulders Display, sans-serif;
    overflow-x: hidden; /*boban*/
}
::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fbfbfb;
  }
  ::-webkit-scrollbar-thumb {
    background: #807e79;
    border-radius: 3px;
    transition: .4s;
  }
img{
    max-width: 100%;
}

.clearfix::after{
    clear: both;
    content: '';
    display: table;
}


.d-flex{
    display: flex;
    -webkit-display:flex;
    -moz-display :flex;
    -ms-display:flexbox;
}
.justify-content{
    justify-content:space-between;
    -webkit-justify-content:space-between;
    -moz-justify-content :space-between;
    -ms-flex-pack:justify;
}
.justify-end{
    justify-content:flex-end;
    -webkit-justify-content:flex-end;
    -moz-justify-content :flex-end;
    -ms-flex-pack:flex-end;
}
.justify-content2{
    justify-content:space-around;
    -webkit-justify-content:space-around;
    -moz-justify-content :space-around;
    -ms-flex-pack:justify;
}


.align-items{
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;

}

.wrap{
    flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.one-column{
    flex:0 0 60%;
    -webkit-flex:0 0 60%;
    -moz-flex:0 0 60%;
    -ms-flex:0 0 60%;
}
.extra{
    flex:0 0 66.66%;
    -webkit-flex:0 0 66.66%;
    -moz-flex:0 0 66.66%;
    -ms-flex:0 0 66.66%;
}

.two-column{
    flex:0 0 48%;
    -webkit-flex:0 0 48%;
    -moz-flex:0 0 48%;
    -ms-flex:0 0 48%;
}
.three-column{
    flex:0 0 33.33%;
    -webkit-flex:0 0 33.33%;
    -moz-flex:0 0 33.33%;
    -ms-flex:0 0 33.33%;
}
.four-column{
    flex: 0 0 24%;
    -webkit-flex:0 0 24%;
    -moz-flex:0 0 24%;
    -ms-flex:0 0 24%;
}

a {
    text-decoration: none;
}
h1, h2{
    font-family: Big Shoulders Display , sans-serif;
    text-align: center;
    color:#4f4d49;
    font-weight: bolder;
    font-size: clamp(4rem, 1.0774rem + 3.7936vw, 5.625rem);
}
h2{
    font-size: clamp(3.6rem, 1.0774rem + 3.7936vw, 5rem);
}
h3{
    color:#4f4d49;
    text-align: center;
    font-size: clamp(2rem, 1.0774rem + 3.7936vw, 3rem);
}
/*********************   HEADER       ********************/
header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color:#f3f3f3;
    padding: 14px 0;
    z-index: 10;
    border-bottom: 1px solid rgba(128, 128, 128, 0.686);
}
header .logo {
    padding-bottom: 3px;
}
header .logo img{
    height: 40px;
}
header nav {
    padding: 5px;
}
header nav li {
    list-style: none;
}
header ul {
    display: flex;
    gap: 3rem;
}
header ul li a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    color: /*#c2bebe;*/#807e79;
    font-weight: bolder;
    font-size: 3rem;
    transition: .3s;
    position: relative;
    text-wrap: nowrap;
}
header ul li a::before {
    position: absolute;
    content: '';
    top: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: #000;
    transition: .5s;
}
header ul li a:hover:before {
    width: 100%;
}
header ul li a:hover {
    color: #000;
}
header .language  {
    padding-top: 2px;
}
header .language img {
    width: 40px;
    transition: .3s;
}
header .language img:hover {
    transform: scale(1.2);
}
header .active1 {
    color: #000;
}
header .active1::before {
    position: absolute;
    content: '';
    top: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
}
.hamburger {
    display: none;
}
.language1 {
    display: none;
}
@media only screen and (max-width: 1000px) {
    header .logo img {
        height: 34px;
    }
    header ul li a {
        font-size: 2.5rem;
    }
    header .language img {
        width: 34px;
    }
}
@media only screen and (max-width: 800px) {
    header .nav {
        position: absolute;
        bottom: 0;
        left: 100%;
        width: 0%;
        height: 91vh;
        background: #807e79;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .5s;
        z-index: 999999;
        padding: 0;
        overflow: hidden;
    }
    header .nav.open {
        left: 0;
        width: 100%
    }
    html.open {
        overflow: hidden;
    }
    header .nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    header nav li {
        width: 100%;
    }
    header nav li a {
        color: #fff;
        font-size: 3.5rem;
        padding: 20px 0;
        border-top: 1px solid white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .8s;
    }
    header nav li a:last-child {
        border-bottom: 1px solid white;
    }
    header nav li a::before {
        display: none;
    }
    header nav li a:hover {
        color: #fff;
        background: #000;
        transition: .3s;
    }
    header .active {
        display: none;
    }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        height: 40px;
        width: 40px;
        cursor: pointer;
    }
    .hamburger .ham-line {
        width: 35px;
        height: 3px;
        background: #000;
        border-radius: 5px;
        transition: .4s;
    }
    header .hamburger.open .ham-line:nth-child(2) {
        transform: rotate(45deg);
    }
    header .hamburger.open .ham-line:nth-child(3) {
        transform: rotate(-45deg) translateX(6px) translateY(-6px);
    }
    header .hamburger.open .ham-line:nth-child(1) {
        transform: translateX(29px);
        opacity: 0;
    }
    .language {
        display: none;
    }
    .language1 {
        display: block;
        width: 35px;
    }
}
/******************  SECTION HEADER END  *********************/
/******************  SECTION HERO START  *********************/
.main-img {
    position: relative;
    display: flex;
}
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
}
.hero2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .3s;
    opacity: 0;
}
.hero.active {
    opacity: 1;
}
.text-box {
    position: absolute;
    left: 10%;
    bottom: 10%;
    border: solid 1px rgba(124, 124, 124, 0.497);
    padding: 50px;
    background-color: rgba(181, 181, 181, 0.262);
    backdrop-filter:  blur(3px) brightness(80%);
}
.text-box h1 {
    text-align: left;
    color: white;
    text-transform: uppercase;
    font-size: clamp(4rem, 1.0774rem + 3.7936vw, 5.625rem);
}
.text-box p {
    color: white;
    font-size: clamp(2.2rem, 1.0774rem + 1.7936vw, 3rem);
}
.social {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
    height: fit-content;
}
.social a {
    color: white;
    font-size: 3rem;
    transition: .3s;
}
.social a:hover {
    transform: scale(1.1) translateY(-3px);
}
.social a:nth-child(2) {
    color: white;
    font-size: 2.8rem;
}
@media only screen and (min-width: 500px) {
    .hero {
        height: 88vh;
    }
}
@media only screen and (max-width: 700px) {
    .text-box {
        left: 7%;
        bottom: -80px;
        transform: translateY(-50%);
        padding: 20px;
    }
}
@media only screen and (max-width: 500px) {
    .text-box {
        left: 50%;
        top: 50%;
        transform: translate( -50%, -50%);
        height:100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: none;
        padding: 15px;
        background-color: rgba(181, 181, 181, 0);
        backdrop-filter:  blur(0px) brightness(50%);
    }
    .text-box h1, .text-box p {
        text-align: center;
    }
    .social {
        position: absolute;
        left: 3%;
        top:unset;
        right: unset;
        margin: 0;
        bottom: 3%;
        transform: translateY(0);
        flex-direction: row;
    }
}

/******************  SECTION HERO END  *********************/
/******************  SECTION OURWORK START  *********************/


section.ourWork img{
    width:100%;
}
section.ourWork h3{
    font-family: Big Shoulders Display , sans-serif;
    text-align: center;
    color:#4f4d49;
    margin-bottom: 15px;
    font-size: clamp(3rem, 1.0774rem + 1.7936vw, 4.2rem);
}

section.ourWork figure{
    width: 100%;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 10px;
}
section.ourWork figure img{
    transition: all 1s ease-in-out;
}


section.ourWork a.readmore{
    display: inline-block;
    padding: 8px 30px;
    font-family: Big Shoulders Display , sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 15%;
    border: 1px solid #4f4d49;
    letter-spacing: 0.1rem;
    color:#4f4d49;
    font-size: 1.7rem;
    transition: all 0.2s linear;/*boban*/

}

section.ourWork a.readmore:hover{
    color: white;
    background-color:#807e7a;
    border: 1px solid #000;
}
section.ourWork article{
    text-align: center;
    margin-bottom: 7rem;
}

/**************** SECTION OURWORK END**********************/


/********************** SECTION ABOUT US START**********************/
h1#about{
    margin-top: 0px;
}
section.aboutUs h2{
    font-family: Big Shoulders Display , sans-serif;
    text-align: center;
    color:#4f4d49;
    font-size: 5rem;
    margin-bottom: 30px;
}
aside.aboutUs a.jedan{
    color: white;
    text-decoration: none;
    font-size: 3rem;
    background-color: #4f4d49;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.5s linear;
    margin-bottom: 40px;
}

aside.aboutUs img{
    display:inline;
}



/***************** SECTION ABOUT US END  *************************/


/************  SECTION CONTACT START  *********************/
::placeholder{
    padding: 0 10px;
    color: white;
    font-family: Big Shoulders Display , sans-serif;
    font-size: 2rem;
}
div.contact{
    text-align: center;
}
section.contact article{
    padding: 20px 0;
}
section.contact p a{
    color: white;
    margin: 0;
    font-size: 3.3rem;
}
section.contact p{
    font-family: Big Shoulders Display , sans-serif;
    text-align: center;
    color:#fff;
    margin: 20px 0;
    font-size: 4.7rem;
}
section.contact a.contact{
    text-decoration: none;
    color:white;
    font-weight: normal;
    font-size: 4rem;
    font-family: Big Shoulders Display , sans-serif;
}

section.contact video{
    width: 100%;
    margin-bottom: 20px;
}
section.contact input{
    display: block;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid white;
    color:white;
    background-color: #3e423f;
    margin-bottom: 16px;
    border: 2px solid #fff;
    font-family: Big Shoulders Display , sans-serif;
    font-size: 2rem;
}
section.contact input:focus{
    border: 2px solid #000;
    color: black;
    background-color: #c2bebe;
    letter-spacing: 0.2rem;
}

section.contact button{
    display: inline-block;
    padding: 8px 34px;
    border-radius: 10%;
    border-color: #000;
    background-color: /*#3e423f;*/#fff;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    font-weight: bolder;
    font-size: 2.3rem;
    float: right;
    font-family: Big Shoulders Display , sans-serif;
    letter-spacing: 2px;
    transition: all 0.2s linear;
    cursor: pointer;
}
section.contact button:hover{
    transform:translateY(-10px);
    background-color:/*#c2bebe;*/#3e423f;
    color: #fff;
    border-color: white;
}
section.contact textarea{
    display: block;
    width: 100%;
    border: 1px solid #FFFFFF;
    background-color: #3e423f;
    color:white;
    margin-bottom: 30px;
    font-family: Big Shoulders Display , sans-serif;
    font-size: 2rem;
    border: 2px solid white;
    padding: 5px 10px;
}

section.contact textarea:hover,
input.yourname:hover,
input.youremail:hover{
    border: 2px solid #000;
    background-color: grey;
}
section.contact textarea:focus{
    color: black;
    background-color: #c2bebe;
}
section.contact iframe{
    width: 100%;
    aspect-ratio: 16 / 10;
}
/************ SECTION CONTACT END ************************/


/******************** FOOTER START ***********************/
footer{
    background-color: #f3f3f3;
    padding: 15px;
    border-top: 1px solid grey;
}
footer .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer img {
    height: 35px;
}
.footer a {
    font-size: 2.5rem;
    color: #807e79;
    font-weight: bold;
}
.footer a:hover {
    color: black;
}
.social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/************************Projekti************************/
.projekti {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 8px;
    padding: 50px 15px;
}
.projekti a {
    color: #807e79;
    font-weight: bold;
    font-size: 2.5rem;
}
@media only screen and (max-width: 500px){
    .projekti a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: solid;
        height: 50px;
        width: 46%;
    }
    .projekti a:last-child {
        width: 100%;
    }
}
/************************FOOTER END************************/

/*********************  SLAJDER  ****************************/
.mySlides{
    display: none;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 46%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #000;
    font-weight: bold;
    font-size: 22px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next{
    right: 0%;
    border-radius: 3px 0 0 3px;
}
div.slideshow-container{
    position: relative;
}

/* Caption text */
.text {
    color: #fff;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 18%;
    width: 100%;
    right: 18.5%;
    text-align: center;
}

/* The dots/bullets/indicators */
.dot{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.actives{
    background-color: #4f4d49;
}

/* Fading animation */
.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

video{
    width: 100%;
}


hr{
    margin: 30px 40px 30px;
}

/********** play and reload na videima ******************************/
img.play,.reload{
    width: 8%;
    position: relative;
    bottom:5rem;
    left: 1rem;
}

div.bl62{
    text-align: center;
    font-size: 1.5rem;
}

.project_title{
    margin: 0.5rem 0;
}

h3.studio{
    color:#fff;
    letter-spacing: 0.2rem;
    font-weight: normal;
}

/* SECTION PROJECTS START*/

ul#navprojects{
    text-align: center;
    padding: 4rem 0;
    /*margin-top: 5rem;*/
}
ul#navprojects li{
    list-style: none;
}

ul#navprojects li a{
    display:block;
    font-family: Big Shoulders Display , sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #4f4d49;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
}

ul#navprojects a:hover {
    background-color: #4f4d49;
    color: #fff;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
    /*font-weight: bold;*/
}

ul#navprojects a:focus {
    color: /*#3ebbc4*/ #fff;
    background-color: #4f4d49;
    /*font-weight: bold;*/
} 


/* SECTION PROJECTS END */


/****************      MEDIA QUERIES 
 *************************************************************************/
/****************      MEDIA QUERIES 
 *************************************************************************/

@media all and (min-width:320px){
    .container{
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }

    /*ABOUT US*/
    section.aboutUs div.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    /*CONTACT*/
    section.contact div.wraper{
        display: none;
    }

}
@media all and (min-width:320px) and (max-width: 479px){

    .present3Video .three-column, .singleWrapper, .twoWrapper .videoWraper {
        flex: none;
        -webkit-flex: none;
        -moz-flex: none;
        -ms-flex: none;
        height: 60vw;
    }
    p.usluge{
        margin-top: 10px;
    }
}

@media all and (min-width:320px) and (max-width: 599px){

    .saveti{
        padding: 0 10px;
    }

    p.hrist{
        text-align: justify;
        padding: 0 10px;
    }
    p.usluge{
        padding: 0 10px;
    }
}

@media all and (min-width:480px){
    .container{
        width: 470px;
        margin: 0 auto;
        flex-direction: row;
    }
    div.sectorHamburger {
        flex: 0 0 24%;
        -webkit-flex:0 0 24%;
        -moz-flex:0 0 24%;
        -ms-flex:0 0 24%;
    }

    /* SECTION OUR WORKS*/
    section.ourWork div.container article{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }

    /* CONTACT */
    section.contact div.container article.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.contact div.wraper{
        display: block;
        border: 2px white solid;
    }

    /* SERVICES */
    .basis {
        margin: 50px 0;
    }
    section.basis div.container{
        flex-wrap: wrap;
        margin-top: 30px;
    }
    section.basis div figure.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div div.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
        text-align: justify;
    }
    aside.aboutUs img{
        width: 24%;
    }
    /* PROJECTS */
    div.one-column {
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.videoWraper {
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.present3Video{
        flex-wrap:wrap;
    }
    .projekti {
        padding-top: 0;
    }
}
@media all and (min-width:600px){

    .container{
        width: 575px;
    }

    /* CONTACT */
    section.contact div.container article.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.contact a.contact:hover{
        color: black;
        background-color:#c2bebe;
        border: 2px solid grey;
    }
    /* SERVICES */
    section.basis div.container{
        flex-wrap: wrap;
    }
    section.basis div figure.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
        margin-bottom: 3%;
    }
    section.basis div div.two-column{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
        text-align: justify;
    }
    aside.aboutUs img{
        width: 20%;
    }
    /* PROJECTS */
    div.one-column {
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.videoWraper {
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.present3Video{
        flex-wrap:wrap;
    }
.dot {
    height: 7px;
    width: 7px;
}
}

@media all and (min-width:768px){
    .container{
        width: 750px;
    }
    /* OUR WORKS */
    section.ourWork div.container article{
        flex:0 0 48%;
        -webkit-flex:0 0 48%;
        -moz-flex:0 0 48%;
        -ms-flex:0 0 48%;
    }
    section.ourWork article:nth-of-type(2) h2{
        width: 50%;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    /*SECTION CONTACT*/
    section.contact div.container article.two-column{
        flex:0 0 48%;
        -webkit-flex:0 0 48%;
        -moz-flex:0 0 48%;
        -ms-flex:0 0 48%;
    }

    /* SERVICES */
    
    section.basis div.container{
        flex-wrap:wrap;
    }
    section.basis div figure.two-column{
        flex:0 0 48%;
        -webkit-flex:0 0 48%;
        -moz-flex:0 0 48%;
        -ms-flex:0 0 48%;
        margin-bottom: 0;
    }
    section.basis div div.two-column{
        flex:0 0 48%;
        -webkit-flex:0 0 48%;
        -moz-flex:0 0 48%;
        -ms-flex:0 0 48%;
    }

    aside.aboutUs img{
        width: 15%;
    }
    /* PROJECTS */
    section.basis div.videoWraper {
        flex:0 0 48%;
        -webkit-flex:0 0 48%;
        -moz-flex:0 0 48%;
        -ms-flex:0 0 48%;
    }
    section.basis div.present3Video{
        flex-wrap:wrap;
    }
}

@media all and (min-width:992px){
    .container{
        width: 970px;
    }
    div.abouthouse{
        width: 15%;
    }
    section.ourWork div.container article{
        flex:0 0 32%;
        -webkit-flex:0 0 32%;
        -moz-flex:0 0 32%;
        -ms-flex:0 0 32%;
    }
    section.ourWork article h2{
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .prev:hover, .next:hover{
    background-color: rgba(0,0,0,0.7);
    color: #fff;
}
    /********* CONTACT ************/
    aside.aboutUs img{
        width: 9%;
    }

    /******* PROJECTS ****************/
    .abouthouse{
        position: absolute;
        top: 50%;
        right: 2%;
    }
    section.basis div.videoWraper {
        flex:0 0 33%;
        -webkit-flex:0 0 33%;
        -moz-flex:0 0 33%;
        -ms-flex:0 0 33%;
    }
    section.basis div.present3Video{
        flex-wrap:nowrap;
    }
    div.one-column{
        flex:0 0 60%;
        -webkit-flex:0 0 60%;
        -moz-flex:0 0 60%;
        -ms-flex:0 0 60%;
    }

}

@media all and (min-width:1200px){
    .container{
        width: 1150px;
    }
    /*SECTION OURWORKS*/
    section.ourWork article h2{
        width: 100%;
    }
    section.ourWork article:nth-of-type(2) h2{
        width: 100%;
    }

    /*SECTION CONTACT*/
    section.contact article.two-column h2{
        width: 50%;
        margin:0 auto;
        color: white;
    }
    section.contact div.wraper {
        border: none;
        padding: 0px 0;
    }
    section.contact iframe{
    height: 380px !important;
}
    /******* PROJECTS ****************/
    .abouthouse{
        right: 5%;
    }

}
div.abouthouse h2 {
    font-size: 2.2rem;
    color: #000;
}
div.abouthouse  {
    margin-top: 20px;
}
.contact{
    color: white;
}
.sedam{
    color:#4f4d49;
    text-align:center;
    margin-bottom: 15px;
}

h3.studio2 {
    color: #fff;
    letter-spacing: 0.2rem;
    font-weight: normal;
    text-transform: uppercase;
    padding: 20px;
}

.usluge {
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: center;
}
.saveti{
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: justify;
}

a.house img{
    width: 100%;
}

.present3Video {
    row-gap: 50px
}

.present3Video iframe, iframe.singleVideo {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

p.hrist{
    font-size: 2.2rem;
}

div.etherba{
    margin-bottom: 15px;
}
@media all and (min-width:320px) and (max-width: 992px){
    div.reverse{
        flex-direction: column-reverse;
    }
    .poredak img {
        margin-top: 15px;
    }
}
@media all and (min-width:768px) and (max-width: 992px){
    section.basis div.container div.poredak{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis2 div.container {
        flex-wrap: wrap;
    }
    section.basis2 div figure.two-column{
        flex:0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
        margin-bottom: 10px;
    }
    section.basis2 div div.two-column{
        flex:0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.container figure.fit{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
    section.basis div.container div.fit{
        flex: 0 0 100%;
        -webkit-flex:0 0 100%;
        -moz-flex:0 0 100%;
        -ms-flex:0 0 100%;
    }
}

h1.tips{
    margin: 0;
}

div#startreklama{
    margin-bottom: 60px;
}

#reklama{
    margin-top: 0px;
    margin-bottom: 30px;
}


 /* DOPISAN KOD - BOBAN */
 .pozovi {
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background-color:#25D366;
    border-radius: 50%;
    letter-spacing: 0.1rem;
    z-index: 9999;
 }
 .pozovi::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 38px;
    background-color:#25D366;
    border-radius: 50%;
    letter-spacing: 0.1rem;
    animation: pulsiranje 2.3s infinite linear;
    z-index: -9999;
 }
 @keyframes pulsiranje {
    0% {
        transform:  translate(-50%,-50%) scale(0.7);
        opacity: 1;
    }
    100% {
        transform:  translate(-50%,-50%) scale(1.5);
      opacity: 0;
    }
  }
 .imgzoom {
    max-width: 100%; 
    transition: transform 0.3s ease; 
  }
  
  .zoomed {
    transform: scale(2); 
  }
.ourWork #project {
    margin-bottom: 30px;
}
.contact {
    padding-top: 50px;
}
section.contact  h2{
    color: white;
}
.contact h3 {
    font-size: 2.2rem;
}
.margin {
    margin-top: 50px;
}
.padding {
    padding-top: 50px;
}
.contact .info p {
    line-height: 3rem;
}
.contact .info h2 {
    margin-bottom: 10px;
}
h1.tips {
    margin-top: 40px;
}
aside.aboutUs {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media all and (min-width:768px) {
}
@media all and (max-width:768px) {
    section.basis div div.two-column .sedam{
        margin-bottom: 40px;
        margin-top: 15px;
    }
    section.ourWork a.readmore{
        font-size: 1.5rem;
    }
    section.contact p a{
        font-size: 2.5rem;
    }
    section.contact p {
        margin: 0;
    }
    .contact .margin h3 {
        font-size: 1.6rem;
        margin-top: 20px;
    }
    section.contact button{
        font-size: 1.7rem;
    }
}
@media all and (max-width:480px) {
    section.basis, .ourWork {
        margin-top: 50px;
    }
    .padding {
        padding: 0 20px;
        padding-top: 50px;
    }
    .pozovi {
        bottom: 100px;
     }
    ul#navprojects li a {
    	font-size: 2.2rem;
	}
}
@media all and (max-width:650px) {
    footer .footer {
        flex-direction: column;
        gap: 10px;
    }
}
@media (min-width: 991px) and (max-width: 1200px) {
    .basis .container {
        display: flex;
        align-items: stretch;
        width: 100%;
        padding: 0 20px;
    }
    .two-column {
        width: 48%;
    }
    figure {
        overflow: hidden;
        display: flex;
    }
    .two-column img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* radovi u toku  */
article figure {
    position: relative;
}
.u-toku {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background: #d8d6d1;
    color: #000;
    z-index: 999;
    font-weight: bold;
}







/* OPSIRNIJE  */
.opsirnije .container p {
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: justify;
    text-align-last: left;
    display: block;
}
.opsirnije .container {
   align-items: stretch;
   padding: 0 10px;
   margin-top: 30px;
}

.citat {
    border: solid 1px black;
    padding: 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    border: solid;
}
.citat b {
    text-wrap: balance;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}


.opsirnije .container p .float-left1 {
    float: left;
    width: 400px;
    padding-right: 10px;
    padding-bottom: 10px;
    position: relative;
}
.opsirnije .container p .float-left2 {
    float: left;
    width:260px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.opsirnije .container p .float-left3 {
    float: left;
    width: 400px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.opsirnije .container p .float-left4 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.opsirnije .container p .float-right1 {
    float: right;
    width: 400px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.opsirnije .container p .float-right2 {
    float: right;
    width: 250px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.opsirnije .container p .width320 {
    width:320px;
}
.opsirnije .container p .width260 {
    width:260px;
}

.opsirnije .container p .width170 {
    width:170px;
}

.opsirnije .container .clear {
    clear: both;
}
.opsirnije .container .two-column {
    flex: 0 0 100%;
}
@media all and (max-width:1000px) {
.opsirnije .container p .float-left1 {
     width: 100%;
     padding-right: 0;
}
.opsirnije .container p .float-left2 {
     width: 100%;
     padding-right: 0;
}
.opsirnije .container p .float-left3 {
     width: 100%;
     padding-right: 0;
}
.opsirnije .container p .float-right1 {
     width: 100%;
         padding-left: 0;
}
.opsirnije .container p .float-right2 {
    width: 100%;
    padding-left: 0;
}
}



/* DUGME IZA SCENE  */
.vise {
    margin: 50px 0;
    background: #efefef;
    padding: 20px;
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
    .vise .readmore {
   display: inline-block;
    padding: 8px 30px;
    font-family: Big Shoulders Display, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 15%;
    border: 1px solid #4f4d49;
    letter-spacing: 0.1rem;
    color: #4f4d49;
    font-size: 1.7rem;
    transition: all 0.2slinear; 
    margin-top: 15px;
cursor: pointer;
    }


/* COUNTER  */
.counter-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    padding: 0 10px 80px 10px;
    background-color: white;
    margin: 0 10px;
    flex-wrap: wrap;
} 

.counter-box {
    background: #efefef;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.counter {
    font-size: 50px;
    font-weight: bold;
    color: #4f4d49;
    flex: 0 0 50%;

}
.counter-box .svg {
    width: 100%;
}
.counter-box svg {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.counter-box:nth-child(3) svg {
    width: 70px;
    height: 70px;
    transform: translateY(5px);
}
.counter-box svg:nth-child() {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.plus {
    font-size: 40px;
    color: #4f4d49;
    flex: 0 0 50%;

}
.counter p {
    flex: 0 0 100%;
}
@media all and (max-width:750px) {
.counter-section {
    flex-direction: column;
    align-items: center;
}
.counter-box {
    width: 100%;
    gap: 10px;
}
.counter {
    flex: 0 0 48%;
    text-align: right;

}
.plus {
    flex: 0 0 48%;
    text-align: left;
}
}
.none2 {
display: none;
}
@media all and (max-width:1000px) {
.none {
display:none;
}
.none2 {
display: inline;
}
}



/* HERO SECTION  */

#hero {
    position: relative;
    width: 100%;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(106, 106, 106);
}

#hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}


.hero-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    position: absolute;
}
.hero-text.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    #text-box {
        font-size: 1.8rem;
        width: 60%;
    }
}


@media only screen and (max-width: 700px) {
    .text-box {
        left: 7%;
        bottom: 6%;
        transform: translateY(-50%);
        padding: 20px;
    }
}
@media only screen and (max-width: 700px) {
    .text-box {
        left: 5%;
        bottom: 5%;
        padding: 20px;
    }
}

    .hero {
        height: 88vh;
    }
@media only screen and (max-width: 500px) {
    #hero-image {
        filter:  brightness(50%);
        
    }
    .text-box {
        left: 0%;
        top: 0%;
        backdrop-filter:  blur(0px) brightness(100%);
    }
    .hero-text {
        transform: translateY(20px);
    }
    .hero-text.active {
        transform: translateY(0);
    }
    .hero {
        height: 85vh;
    }
}



/* KOMENTARI KLIJENATA INDEX */
/* SLIDER TESTEMONIAL */
.content-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 460px;
  margin: 30px 0;
  margin-bottom: 50px;
  cursor: grab;
        background-color: #f5f5f5;
    background: url('../ASSETS/recenzijeImg/marble-bg-rekonstrikcije-i-adaptacija-stanova-beograd-3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  height: 460px;
}
.slide {
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10%;
  top: -30px;
}
.slide .card {
  overflow: hidden;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.02);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}
.card img {
  max-height: 80px;
  pointer-events: none;

  width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.397);
    flex-shrink: 0;
}
.card .testimonial-text {
    margin-bottom: 15px;
    margin-top: 15px;
    font-style: italic;
    color: #555;
    text-align: left;
}
.card .testimonial-name {
    font-weight: bold;
}
.content-slider .svg1 {
    position: absolute;
    top: 20px;
    left: 100px;
    opacity: .15;
}
.content-slider .svg2 {
    position: absolute;
    bottom: 20px;
    right: 100px;
    opacity: .15;
}
.content-slider .readmore{
    display: inline-block;
    padding: 8px 30px;
    font-family: Big Shoulders Display , sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 15%;
    border: 1px solid #4f4d49;
    letter-spacing: 0.1rem;
    color:#4f4d49;
    font-size: 1.7rem;
    transition: all 0.2s linear;
    z-index: 99;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.arrow-left,
.arrow-right {
  background-color: rgba(181, 181, 181, 0.468);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px rgb(108, 108, 108);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-left:hover,
.arrow-right:hover {
  background: rgb(143, 143, 143);
  border: rgb(50, 50, 50) 1px solid;
}
.arrow-left:hover .left {
  border-right: 10px solid rgb(50, 50, 50);
}
.arrow-right:hover .right {
  border-left: 10px solid rgb(50, 50, 50);
}
.arrow-left {
  left: 2rem;
}
.arrow-right {
  right: 2rem;
}
.left {
  border-top: 6px solid transparent;
  border-right: 10px solid rgb(108, 108, 108);
  border-bottom: 6px solid transparent;
  border-radius: 2px;
  transform: translateX(-1px);
}
.right {
  border-top: 6px solid transparent;
  border-left: 10px solid rgb(108, 108, 108);
  border-bottom: 6px solid transparent;
  border-radius: 2px;
  transform: translateX(1px);
}

@media only screen and (max-width: 1000px) {
.content-slider .svg1 {
    left: 50px;
}
.content-slider .svg2 {
    right: 50px;
}
.content-slider {
  height: 550px;
}
.slider-container {
  height: 550px;
}
.slide {
  height: 550px;
}
.content-slider {
        background-color: #f5f5f5;
        background: url('../ASSETS/recenzijeImg/marble-bg-rekonstrikcije-i-adaptacija-stanova-beograd-1000w.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
}
}
@media only screen and (max-width: 800px) {
    .card .testimonial-text {
    font-size: 1.8rem;
}
}
@media only screen and (max-width: 500px) {
.content-slider .svg1 {
    left: 20px;
}
.content-slider .svg2 {
    right: 20px;
}
.content-slider {
  height: 630px;
}
.slider-container {
  height: 630px;
}
.slide {
  height: 630px;
}
.slide {
    padding: 0 0;
}
.arrow-left {
  left: 1rem;
  opacity: .3;
}
.arrow-right {
  right: 1rem;
  opacity: .3;
}
.arrow-left:hover {
  left: 1rem;
  opacity: .8;
}
.arrow-right:hover {
  right: 1rem;
  opacity: .8;
}
.arrow-left:active {
  left: 1rem;
  opacity: .4;
}
.arrow-right:active {
  right: 1rem;
  opacity: .4;
}
.content-slider {
        background-color: #f5f5f5;
        background: url('../ASSETS/recenzijeImg/marble-bg-rekonstrikcije-i-adaptacija-stanova-beograd-500w.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
}
}
/* END KOMENTARI KLIJENATA INDEX */
/* KOMENTARI KLIJENATA STRANICA */

        .recenzije-sektor {
            padding: 40px 0px;
        }

        .naslov {
            margin-bottom: 50px;
        }

        .recenzije-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .recenzija {
            background-color: #f5f5f5;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid #e0e0e0;
        }

        .recenzija:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .slika-korisnika {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.397);
            flex-shrink: 0;
        }

        .sadrzaj-recenzije {
            flex: 1;
        }

        .tekst-recenzije {
            text-align: left;
            margin-bottom: 15px;
            color: #555;
            font-style: italic;
            line-height: 1.4;
        }

        .ime-prezime {
            font-weight: 600;
            text-align: right;
        }

        /* Responsivni dizajn */
        @media (max-width: 768px) {
            .recenzija {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .slika-korisnika {
                align-self: center;
            }

            .ime-prezime {
                text-align: center;
            }

        }

        @media (max-width: 480px) {
            .recenzije-sektor {
                padding: 40px 20px;
            }

            .slika-korisnika {
                width: 70px;
                height: 70px;
            }
        }
        /* END KOMENTARI KLIJENATA STRANICA */