#BizkodKontejner {
    display: flex;  
    padding: 40px 0;
}

#BizkodKontejner > div:last-of-type {
    width: 50%;
    overflow: hidden;
}

#BizkodKontejner > div:last-of-type img {
    height: 100%;
    width: auto;
}

#BizkodOpis {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 50px 20px 20px;
    justify-content: center;
    
}

#BizkodOpis a:link,
#BizkodOpis a:visited,
#BizkodOpis a:hover,
#BizkodOpis a:active {
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    /*    background-color: #FFCC00;*/
    margin-top: 20px;
    background-color: #fff5cc;
}

#BizkodOpis > img {
    margin-bottom: 10px;
}

#BizkodOpis > span {
    font-size: 18px;
    line-height: 180%;
} 

#BizkodOpis img {
    width: 252px;
    height: 146px;
}


@media screen and  (max-width: 1050px) {

    #BizkodKontejner > div:last-of-type {
        display: none;
    }

    #BizkodOpis {
        width: 100%;
        padding: 40px;
        align-items: center;
    }

    #BizkodOpis > span {
        font-size: 16px;
        line-height: 180%;
        width: 100%;
        text-align: center;
    } 

    #BizkodOpis img {
        width: 160px;
        height: 124px;
    }

}