/******************************/ 
/* HOMEPAGE - DESKTOP */

.cover{
    background-image: url(/images/new/home-cover.jpg);
    background-position: left;
}

.one{
    padding-top: 2.5% !important;
}

.homepage-welcome{
    width: 60vw;
    margin: auto;
    display: flex;
}

.homepage-welcome-left{
    width: 50%;
}

.homepage-welcome-right{
    width: 50%;
    text-align: right;
    z-index: 98 ;
}

.homepage-welcome-right img{
    height: 24vw;
    margin-top: -10vw;
}

.five a{
    color: black !important;
}

/******************************/ 
/* HOMEPAGE - LAPTOP, VEĆI */

@media only screen and (min-width: 1260px) and (max-width: 1450px){
    
    .homepage-welcome{width: 65vw;}

    .homepage-welcome-left{width: 50%;}
    .homepage-welcome-right{width: 50%;}
    .homepage-welcome-right img{margin-top: -8vw;}
}

/******************************/ 
/* HOMEPAGE - LAPTOP */

@media only screen and (min-width: 960px) and (max-width: 1260px){

    .homepage-welcome{width: 65vw;}

    .homepage-welcome-left{width: 60%;}
    .homepage-welcome-right{width: 40%;}
    .homepage-welcome-right img{margin-top: -6vw;}
}

/******************************/ 
/* HOMEPAGE - TABLET */

@media only screen and (min-width: 480px) and (max-width: 960px){
   
    .homepage-welcome{
        width: 70vw;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .homepage-welcome-left{
        margin-top: -4vw;
        width: 100%;
    }

    .homepage-welcome-right{width: 45%;}    

    .homepage-welcome-right img{
        height: 30vw;
        margin-top: -20vw;
    }
}

/******************************/ 
/* HOMEPAGE - MOBILNI */

@media only screen and (max-width: 480px){

    .homepage-welcome{
        width: 80vw;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .homepage-welcome-left{
        width: 100%;
        
    }

    .homepage-welcome-right{width: 100%;}

    .homepage-welcome-right img{
        width: 85%;
        height: auto;
        margin-top: -25vw;
    }
}



