
#main_content,
#primary{
    margin: 0;
    width: 100%;
    max-width: initial;
}

#primary > section{
    /* margin-bottom: 20px; */
}
#primary > section > .section_wrapper{
    max-width: var(--full-content-width);
    width: 100%;
    margin: 0 auto;
}


#primary > section.notification_bar{
    background: var(--primary-color-opacity);
    padding: 10px 0;
    /* min-height: 2572px; */
}
#primary > section.notification_bar h3{
    text-align: center;
}


#primary > section.hero{
    margin: 120px auto;
}
#primary > section.hero > .section_wrapper{
    display: flex;
    align-items: center;
}
#primary > section.hero > .section_wrapper > div{
    width: 50%;
}

#primary > section.hero .left_part .title_big{
    /* margin: 13px auto 6px; */
    font-size: 32px;
}
#primary > section.hero .left_part p{
    margin: 30px 0 40px;
}
#primary > section.hero .left_part a{
    margin-right: 10px;
}


#primary > section.featured_slider{
    background: var(--primary-color);
    margin-bottom: 30px;
    min-height: 454px;
    display: none;
}


#primary > section.breaking_news{
    background: #eee;
    padding-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 20px;
}
#primary > section.breaking_news h2{
    text-align: center;
    position: relative;
}
#primary > section.breaking_news h2:after{
    content: "";
    background: #ddd;
    height: 2px;
    width: 60%;
    /* margin: 0 auto; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
#primary > section.breaking_news .news_container{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
#primary > section.breaking_news .news_container .news_single{
    background: lightgrey;
    width: 23%;
    width: calc( 25% - 15px );
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}
#primary > section.breaking_news .news_container .news_single.new .corner{
    position: absolute;
    top: 0;
    left: 0;
    width: 0; 
	height: 0; 
	border-top: 100px solid var(--secondary-color-light);
	border-bottom: 100px solid transparent;
	border-right: 100px solid transparent;
}
#primary > section.breaking_news .news_container .news_single.new .corner span {
    /* background: pink; */
    position: absolute;
    /* position: relative; */
    top: 35px;
    top: -75px;
    width: 50px;
    left: 10px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: arial;
    transform: rotate(-45deg);
    display: block;
}
#primary > section.breaking_news .news_container .news_single:not(.new) .corner{
    display: none;
}
#primary > section.breaking_news .news_container .news_single .news_image{
    padding-top: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#primary > section.breaking_news .news_container .news_single .news_title{
    min-height: 90px;
    /* background: cyan; */
    margin-bottom: 0;
    font-weight: 500;
}
#primary > section.breaking_news .news_container .news_single .news_excerpt{
    flex-grow: 10;
    /* background: pink; */
}
#primary > section.breaking_news .news_container .news_single .news_link{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
#primary > section.breaking_news .news_container .news_single .news_link .news_date{
    /* color: var(--primary-color); */
    font-size: 12px;
}



#primary > section.cooperation{
    padding: 70px 0;
}
#primary > section.cooperation .logo_images {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    --slider-speed: 5s;
    --slider-speed: 20s;
}
#primary > section.cooperation .logo_images > .image_track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    list-style: none;
    margin: 0;
    -webkit-transform: translate3d(0, 0, 0);
    animation: logo_scroll linear infinite var(--slider-speed);
    width: calc(2 * var(--full-content-width));
    transition: animation-play-state ease 0.3s;
}
#primary > section.cooperation .logo_images > .image_track:hover {
    animation-play-state: paused;
}
#primary > section.cooperation .logo_images > .image_track > a {
    display: block;
    height: 100px;
    width: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 30px;
    transition: all 200ms linear;
    transform: scale(0.9);
}
#primary > section.cooperation .logo_images > .image_track > a:hover {
    transform: scale(1);
}

@keyframes logo_scroll {
    0% {
        transform: translateX(-5%);
        transform: translateX(0px);
    }
    100% {
        transform: translateX(calc((0px - var(--full-content-width)) - 5%));
        transform: translateX(calc((0px - var(--full-content-width)) ));
    }
}


