.container{
    padding-top: 54px;
}

.news-holder{
    display: flex;
    width: 100%;
    max-width: 1286px;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.news-box{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 48px 20px 20px;
    width: 100%;
    height: 100%;
    /*background-color: #F3F3F0;*/
    border: 3px solid #f3f3f0;
    /*border-top: 5px solid #ffcc00;*/
}

.news-box:last-of-type{
    margin-bottom: 0px;
}

.news-date{
    position: absolute;
    top: -3px;
    left: -3px;
    max-width: 105px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    background-color: #ffcc00;
    color: #000;
}

.content-holder{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.content-holder img{
    height: auto;
    width: 50%;
    margin-right: 20px;
}

.descr{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.news-header{
    color: #000;
    max-width: 100%;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 8px;
}

.new-word{
    color: #E50000;
}

.descr p{
    display: inline-block;
    text-align: left;
    line-height: 135%;
}

@media (max-width: 840px){
    .content-holder{
        flex-direction: column;
    }
    
    .content-holder img{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .descr{
        margin-left: 0px;
    }
}

/* MENU ITEM COLOR-CHANGE */

@media (max-width: 1024px){
    .navbar-links > ul > li:nth-child(3) > a{
        background-color: #ffcc00;
    }
}









