html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    background-color: #F5F6F8;
}
#global100 {
    width: 100%;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}
a {
    transition: opacity .3s;
}
a:hover {
    opacity: .7;
}
img {
    border: none;
}
.content {
    max-width: 1100px;
    margin: 0 auto;
    min-width: 1024px;
}
input:focus {
    outline: none;
}
@media only screen and (min-width : 1200px) {
    .content {
        max-width: 94%;
        width: 100%;
        min-width: 1200px;
    }
}
@media only screen and (min-width : 1800px) {
    .content {
        max-width: 1540px;
    }
}
#global100 > .top_banner img,
#global100 > .top_banner a {
    display: block;
    margin: 0;
    width: 100%;
}
#global100.scroll > .header_stub {
    height: 167px;
}
header {
    background-color: #F5F6F8;
    height: auto;
    z-index: 201;
    position: relative;
}
header .top_part {
    min-height: 120px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1F2933;  
    background-color:#fefeff;  
        padding: 0 20px;
    box-sizing: border-box;
    margin-top: 54px;
    border-radius: 10px 10px 0 0;
    
}
header .content a.logo {
    min-width: 50%;
    text-align: center;
}
header .content .right_part,
header .content .left_part {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 335px;
    width: 100%;
    min-width: 250px;    
}

header .content .right_part {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

footer .social a,
header .content .right_part .social a {
    display: inline-block;
    font-size: 25px;
    width: 1em;
    height: 1em;
    background: no-repeat center center / contain;
    margin-left: 9px;
}
footer .social a.vk,
header .content .right_part .social a.vk {
    background-image: url('style/soc_vk.svg');
}
footer .social a.fb,
header .content .right_part .social a.fb {
    background-image: url('style/soc_fb.svg');
}
footer .social a.yt,
header .content .right_part .social a.yt {
    background-image: url('style/soc_yt.svg');
}
footer .social a.tw,
header .content .right_part .social a.tw {
    background-image: url('style/soc_tw.svg');
}
header .content .right_part .personal,
header .content .right_part .search {
    width: 1em;
    height: 1em;
    font-size: 20px;
    background: no-repeat center center / contain;
    margin-left: 20px;
    min-width: 1em;
    display: block;
}
header .content .right_part .personal {
    background-image: url(style/personal.svg);
}
header .content .right_part .search {
    /*margin-left: 40px;*/
}
.menu_trigger {
    position: relative;
    width: 1.2em;
    height: 1em;
    /*top: 0;
    bottom: 0;
    margin: auto;*/
    display: block;
    font-size: 24px;
    z-index: 200;
    min-width: 1.2em;
    cursor: pointer;
    transition: all .3s;
    margin-right: 20px;
}   
.menu_trigger:hover {
    opacity: .8;
}
.menu_trigger:before, .menu_trigger:after, .menu_trigger span {
    content:'';
    display: block;
    width: 100%;
    height: 4px;
    background: #1F2933;
    position: absolute;
    transition: all .3s;
}
body.show_menu .menu_trigger:before,
body.show_menu .menu_trigger:after,
body.show_menu .menu_trigger span {
    background: #ED1C24;
}
.menu_trigger:before {
    top: 0;
}
.menu_trigger:after {
    bottom: 0;     
    z-index: 100;
}
.menu_trigger span {
    top: 0;
    bottom: 0;
    margin: auto;
}
body.show_menu .menu_trigger:before {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);    
    top: 0.42em;  
}
body.show_menu .menu_trigger:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);  
    bottom: 0.42em;   
}   
body.show_menu .menu_trigger span {
    background: transparent;
}   
header nav {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 0;
    background-color: #fefeff;
    padding: 0 20px 20px;
    box-sizing: border-box;
     border-radius:  0 0 10px 10px;
}
header nav a {
    text-decoration: none;
    color: #1F2933;
    font-size: 1.05em;
}
#global100 > .screen {
    padding: 54px 0 ;
}
section.index_slider {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;   
}
section.index_slider .slider_container {
    max-width: 74.54%;
    flex: 0 0 74.54%;
    -webkit-flex: 0 0 74.54%;
    -ms-flex: 0 0 74.54%;
    background: #eee;


    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
section.index_slider .slider_container .pic {
    position: relative;
}
section.index_slider .slider_container .pic img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
section.index_slider .slider_container .text,
section.index_slider .slider_container .pic {
    max-width: 50%;
    flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    height: 100%;
    box-sizing: border-box;
}
section.index_slider .slider_container .text {
    border-right: 1px solid #F5EFE9;
}
section.index_slider .slider_container .text > .block {
    height: 33%;
    background: #fff;
    box-sizing: border-box;
    padding: 17px 32px;
    border-left: 6px solid #F5EFE9;
}
section.index_slider .slider_container .text > .block:hover {
    border-left: 6px solid #D87075;
    transition: all .3s;
    cursor: pointer;  
    background: #F4F2EF;
}
section.index_slider .slider_container .text > .block.active {
    border-left: 6px solid #D90C14;
    background: #F5EFE9;
}
section.index_slider .slider_container .text > .block:nth-child(1) {
    border-top: 1px solid #F5EFE9;
}
section.index_slider .slider_container .text > .block:nth-child(3) {
    border-bottom: 1px solid #F5EFE9;
}
section.index_slider .slider_container .text > .block:nth-child(1),
section.index_slider .slider_container .text > .block:nth-child(2) {
    border-bottom: 1px solid #F5EFE9;
}
section.index_slider .slider_container .text > .block:last-child {
    height: 34%;
}
section.index_slider .slider_container .text .block a.title {
    font-size: 1.1em;
    font-weight: bold;
    color: #2A2625;
    margin-bottom: 8px;
    text-decoration: none;
}
section.index_slider .slider_container .text .block p {
    font-size: .9em;
    color: #2A2625;
    line-height: 1.4em;
    margin-bottom: 0;
}
section.index_slider .slider_container .text .block a.more {
    float: right;
}
a.more {
    text-decoration: none;
    font-size: 1.05em;
    color: #2A2625;
}
a.more:after {
    content:'';
    display: inline-block;
    font-size: 1.2em;
    width: 1.2em;
    height: 1em;
    background: url(style/arr_more.svg) no-repeat center center / contain;
    margin-left: 8px;
    position: relative;
    top: 4px;
}
section.index_slider .important {
    max-width: 23.5%;
    flex: 0 0 23.5%;
    -webkit-flex: 0 0 23.5%;
    -ms-flex: 0 0 23.5%;    
    position: relative;
    cursor: pointer;
}
section.index_slider .important .wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.index_slider .important .news {
    height: 100%;
    width: 100%;
    position: relative;    
}
section.index_slider .important .news:before {
    background: linear-gradient(180deg, rgba(42,38,37,0.6) 0%, rgba(42,38,37,0) 50%, rgba(42,38,37,1) 100%);
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 10;

}
section.index_slider .important .news img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.index_slider .important .news .title {
    position: absolute;
    top: 35px;
    left: 39px;
    right: 39px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 2em;
    z-index: 15;
    font-weight: bold;
    text-transform: uppercase;
}
section.index_slider .important .news .bottom {
    bottom: 35px;
    left: 39px;
    right: 39px;    
    color: #fff;
    position: absolute;
    z-index: 15;
    transition: transform .3s;
}
section.index_slider .important .news .bottom .date {
    font-size: .88em;
}
section.index_slider .important .news .bottom a {
    font-size: 1.1em;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 8px 0;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;

}
section.index_slider .important .news .bottom span {
    font-size: .88em;
}
section.index_slider .important:before {
    width: 100%;
    padding-top: 135.35%;
    height: 0;
    content:'';
    display: block;    
}
.beige,
section.beige {
    background: #F5EFE9;
}
.lenta_wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;    
}
.lenta_wrap .block {
    max-width: 31.5%;
    flex: 0 0 31.5%;
    -webkit-flex: 0 0 31.5%;
    -ms-flex: 0 0 31.5%;
    margin: 0 2.75% 2.75% 0;
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.lenta_wrap .block:nth-child(3n+3) {
    margin-right: 0;
}
.lenta_wrap .block .img {
    position: relative;
    display: block;

    max-width: 25.15%;
    flex: 0 0 25.15%;
    -webkit-flex: 0 0 25.15%;
    -ms-flex: 0 0 25.15%;   
    margin-right: 19px; 
}
.lenta_wrap .block .img:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;     
}
.lenta_wrap .block .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lenta_wrap .block .date {
    font-size: .8em;
    color: #2A2625;
    font-weight: 300;
    margin-bottom: 6px;
}
.lenta_wrap .block a {
    font-size: 1.1em;
    color: #2A2625;
    font-weight: bold;
    text-decoration: none;
}
.lenta_wrap .block p {
    margin-top: 5px;
    font-weight: 300;
    color: #666666;
    font-size: 0.88em;
}
h2 {
    font-size: 2.2em;
    color: #2A2625;
    font-weight: bold;
    display: inline-block;
    border-bottom: 3px solid #D90C14;
    padding-bottom: 3px;
}
h2 span {
    color: #D90C14;
}


@media only screen and (min-width : 1200px) and (max-width : 1799px)  {
    section.index_slider .slider_container .text > .block {
        padding: 13px 22px;
    }
    section.index_slider .slider_container .text .block p {
        font-size: .8em;
        margin-top: 8px;
    }
    a.more {
        font-size: .9em;
    }
    .lenta_wrap .block a {
        font-size: 1em;
    }
    .lenta_wrap .block p {
        font-size: .8em;
    }
}
.category_single {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
.category_single .block {
    max-width: 49%;
    flex: 0 0 49%;
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;    
    margin: 0 2% 2% 0;

    max-width: 24%;
    flex: 0 0 24%;
    -webkit-flex: 0 0 24%;
    -ms-flex: 0 0 24%;    
    margin: 0 1.33% 0% 0;

    
}
.category_single h2 {
    font-size: 1.9em;
}
.news_single:before {
    width: 100%;
    padding-top: 54.43%;
    /*padding-top: 104.43%;*/
    padding-top: 114.43%;
    height: 0;
    content:'';
    display: block;    
    z-index:10;
    position: relative;

/*    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0.09287464985994398) 0%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0.09287464985994398) 0%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0.09287464985994398) 0%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);
*/    
    /*background: rgb(42,38,37);*/
    /*background: -moz-linear-gradient(180deg, rgba(42,38,37,0.09287464985994398) 0%, rgba(42,38,37,1) 65%);*/
    background: -webkit-linear-gradient(-90deg, rgba(42,38,37,0.09287464985994398) 40%, rgba(42,38,37,1) 100%);
}
.news_single img {
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.news_single {
    position: relative;
    cursor: pointer; 
    background: rgba(42,38,37,1);   
}
.news_single .bottom {
    padding: 30px 35px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.75);
    z-index: 30;
    transition: transform .3s;
}
.news_single .bottom .date {
    font-size: .88em;
    margin-bottom: 8px;
}
.news_single .bottom a {
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.news_single .bottom p {
    font-size: 0.88em;
}
/*.category_single .block:nth-child(4n+4) {
    margin-right: 0;
}*/
.category_single .block.last_block {
    margin-right: 0;
}
/*.category_single .block:nth-child(2n+2) {
    margin-right: 0;
}*/
.category_single .block:nth-last-child(2),
.category_single .block:nth-last-child(1) {
    margin-bottom: 0;
}
.news_from_category .wrap .block:hover .bottom,
.big_news_centered .block:hover .bottom,
section.index_slider .important .news:hover .bottom,
.news_single:hover .bottom {
    transform: translate(0, -20px);
}
.banner_betweeen_rows img {
    max-width: 100%;
    width: auto;
    display: block;
    margin: 0 auto;
}
.big_news_centered .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;    
}
.big_news_centered .wrap .left_part, 
.big_news_centered .wrap .right_part {
    max-width: 23.57%;
    flex: 0 0 23.57%;
    -webkit-flex: 0 0 23.57%;
    -ms-flex: 0 0 23.57%;    
    position: relative;
} 
.big_news_centered .wrap .left_part {
    max-width: 22.97%;
    flex: 0 0 22.97%;
    -webkit-flex: 0 0 22.97%;
    -ms-flex: 0 0 22.97%;     
}
.big_news_centered .wrap .right_part {
    max-width: 21.77%;
    flex: 0 0 21.77%;
    -webkit-flex: 0 0 21.77%;
    -ms-flex: 0 0 21.77%;    
}
.big_news_centered .wrap .big {
    max-width: 49.16%;
    flex: 0 0 49.16%;
    -webkit-flex: 0 0 49.16%;
    -ms-flex: 0 0 49.16%;      
}
.big_news_centered .wrap .right_part .banner_vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.big_news_centered .wrap .right_part .banner_vertical img {
    height: 100%;
}
.big_news_centered .wrap .left_part > .block,
.big_news_centered .wrap .right_part > .block,
.big_news_centered .wrap .big > .block {
    width: 100%;
}
.big_news_centered .wrap .block:before {
    width: 100%;
    padding-top: 128%;
    height: 0;
    content:'';
    display: block;     
    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);    z-index: 10;
    z-index: 10;   
    position: relative; 


    background: rgb(42,38,37);
    background: linear-gradient(180deg, rgba(42,38,37,0.00009287464985994398) 40%, rgba(42,38,37,1) 65%);    
}
.big_news_centered .wrap .block {
    position: relative;
    cursor: pointer;
    background: rgba(42,38,37,1);
}
.big_news_centered .wrap .block img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.big_news_centered .wrap .left_part .block img,
.big_news_centered .wrap .right_part .block img {
    height: 70%;
}
.big_news_centered .wrap .block .bottom p {
    color: #C8C8C8;    
    margin: 12px 0 0 0;
}
.big_news_centered .wrap .block .bottom {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 20;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform .3s;
}
.big_news_centered .wrap .block .bottom a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
text-shadow: 0px 0px 4.2px rgba(0, 0, 0, 0.95);
}
.big_news_centered .wrap .right_part > .block:first-child,
.big_news_centered .wrap .left_part > .block:first-child {
    margin-bottom: 7.8%;
}
.big_news_centered .wrap .big,
.big_news_centered .wrap .left_part {
    margin-right: 1.946052%;
}
.big_news_centered .wrap .block .date {
    font-size: .8em;
    margin-bottom: 6px;
}
.big_news_centered .wrap .right_part > .block p,
.big_news_centered .wrap .left_part > .block p {
    font-size: .88em;
}
.big_news_centered .wrap .big .block a {
    font-size: 1.8em;
}

a.button {
    display: inline-block;
    padding: 5px 25px 11px 25px;
    border-radius: 2px;
    background: #D90C14;
    color: #fff;
    font-size: 1.05em;
    text-decoration: none;
    border: none;
    line-height: normal; 
    font-family: 'Roboto', sans-serif;
}
a.button:after {
    content:'';
    background: url('style/arr_white.svg') no-repeat center center / contain;
    height: 20px;
    width: 32px;
    display: inline-block;
    position: relative;
    margin-left: 9px;   
    top: 5px;
}
input[type=submit].button {
    display: inline-block;
    padding: 9px 57px 11px 25px;
    border-radius: 2px;
    background: #D90C14;
    color: #fff;
    font-size: 1.05em;
    text-decoration: none;
    border: none;
    line-height: normal; 
    font-family: 'Roboto', sans-serif;    

    background: #D90C14 url('style/arr_white.svg') no-repeat center right 16px;
    cursor: pointer;
    transition: opacity .3s;

}
input[type=submit].button:hover {
    opacity: .6;
}
.big_news_centered a.button.view_more {
    margin-top: 31px;
}
section.chess .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
.chess .category {
    padding: 40px 50px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
    max-width: 49%;
    flex: 0 0 49%;
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%; 
    margin: 0 0 1% 0;
    box-sizing: border-box;
}
.chess .category:nth-child(4n+1),
.chess .category:nth-child(4n+0) {
    background: #F5EFE9;
}
.chess .category .category_link {
    display: block;
    position: relative;
    max-width: 44.96951%;
    flex: 0 0 44.96951%;
    -webkit-flex: 0 0 44.96951%;
    -ms-flex: 0 0 44.96951%;
    overflow: hidden;
}
.chess .category .category_link .bottom {
    position: absolute;
    bottom: 26px;
    left: 24px;
    right: 24px;
    z-index: 20;
    color: #fff;
    transform: translate(0, 15px);
    transition: transform .3s;
}
.chess .category .category_link .bottom span {
    font-size: 1.4em;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-weight: bold;
}
.chess .category .category_link .bottom .more {
    transform: translate(0, 50px);
    transition: transform .3s;
}
.chess .category .category_link .bottom .more:after {
    content:'';
    display: inline-block;
    font-size: 1.2em;
    width: 1.2em;
    height: 1em;
    background: url(style/arr_more.svg) no-repeat center center / contain;
    margin-left: 8px;
    position: relative;
    top: 6px;    
}
.chess .category .category_link:hover .bottom,
.chess .category .category_link:hover .bottom .more {
    transform: translate(0, 0px);
}
.chess .category .category_link:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content:'';
    display: block; 
    z-index: 10;
    position: absolute;     
    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);    z-index: 10;
}
.chess .category .category_link img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.chess .category .cont {
    max-width: 50.45732%;
    flex: 0 0 50.45732%;
    -webkit-flex: 0 0 50.45732%;
    -ms-flex: 0 0 50.45732%;
}
.chess .category .cont .block {
    margin-bottom: 27px;
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.chess .category .cont .block:nth-last-child {
    margin-bottom: 0;
}
.chess .category .cont .block .img {
    position: relative;
    display: block;

    max-width: 29.9%;
    flex: 0 0 29.9%;
    -webkit-flex: 0 0 29.9%;
    -ms-flex: 0 0 29.9%;   
    margin-right: 14px; 
}
.chess .category .cont .block .img:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;     
}
.chess .category .cont .block .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chess .category .cont .block .date {
    font-size: .8em;
    color: #2A2625;
    font-weight: 300;
    margin-bottom: 3px;
}
.chess .category .cont .block a {
    font-size: 0.88em;
    color: #2A2625;
    font-weight: bold;
    text-decoration: none;
}
.chess .category .cont .block p {
    margin-top: 5px;
    font-weight: 300;
    color: #666666;
    font-size: 0.8em;
    margin-bottom: 0;
}
.two_columns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
.two_columns > .column {
    max-width: 49%;
    flex: 0 0 49%;
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;    
}
.two_columns > .column:first-child {
    margin-right: 2%;    
}
.lenta_mneniy {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.lenta_mneniy .block {
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: calc(50% - 10px);
    background: #F5EFE9;    
    margin-bottom: 24px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.lenta_mneniy .block .data {
    padding: 30px;    
    box-sizing: border-box;    
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
}
.lenta_mneniy .block .pic {
    display: block;
    max-width: 24.76821%;
    flex: 0 0 24.76821%;
    -webkit-flex: 0 0 24.76821%;
    -ms-flex: 0 0 24.76821%;
    position: relative;
}
.lenta_mneniy .block .pic:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;
}
.lenta_mneniy .block .pic img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lenta_mneniy .block .data .date {
    font-size: .8em;
    color: #2A2625;
}
.lenta_mneniy .block .data a.title {
    font-size: .8em;
    margin: 8px 0 7px 0;
    color: #2A2625;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
.lenta_mneniy .block .data p {
    font-size: .8em;
    color: #666666;
    margin: 0;
}
.lenta_mneniy .block .data a:not(.title) {
    color: #D90C14;
    font-size: .8em;
    margin-top: 5px;
}
.lenta_mneniy .block .data a:not(.title):hover {
    text-decoration: none;
}
.lenta_mneniy .banner_wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;    
}
.lenta_mneniy .banner_wrap .banner img {
    max-width: 100%;
}
.voting {
    padding: 60px 90px;
    position: relative;
    box-sizing: border-box;
}
.voting > * {
    z-index: 20;
    position: relative;
}
.voting > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.voting:before {
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10; 
    background: rgba(245, 239, 233, 0.95);
}
.voting h3 {
    color: #D90C14;
    font-size: 1.5em;
    font-weight: bold;
    margin-top:0;
}
form.vote .string {
    display: block;
    padding: 10px 0;
}
form.vote label {
    cursor: pointer;
    transition: opacity .3s;        
}
form.vote input[type=radio] {
    display: none;
}
form.vote label:before {
    content:'';
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 16px;
    background: #fff;
    border-radius: 1em;
    border: 2px solid #fff;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px rgba(0,0,0,.3);
    top: 3px;
    margin-right: 10px;
    position: relative;
    transition: background .3s;    
}
form.vote input[type=radio]:checked + label:before {
    background: #D90C14;
}
form.vote label:hover {
    opacity: .7;
}
footer {
    margin-top: -445px;
    background: #2A2625;
}
footer .top_line {
    height: 98px;
    color: #fff;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;    
}
footer .top_line a {
    color: #fff;
}
footer .top_line .left .logo {
    margin-right: 44px;
}
footer .top_line .left {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .top_line .right a {
    margin-right: 60px;
    font-size: .88em;
    text-decoration: none;
}
footer .middle_line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);    
    padding: 45px 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;   
}
footer .middle_line .name {
    text-transform: uppercase;
    color: #4A4A4A;
    font-size: 1.1em;
    font-weight: bold;
    margin-right: 80px;
}
footer .middle_line .right,
footer .middle_line .left {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
footer .middle_line .links {
    columns: 3;
    column-width:150px;
    max-width: 500px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;    
}
footer .middle_line .links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: .88em;
    text-decoration: none;
}
footer .middle_line .links a:after {
    content:'';
    display: block;
    clear: both;
    height: 23px;
}
footer .middle_line .mail_list {
    max-width: 359px;
    color: rgba(255, 255, 255, 0.6);
}
footer .middle_line .mail_list input {
    width: 100%;
    display: block;
    padding: 0 10px;
    font-size: 1.05em;
    box-sizing: border-box;
    height: 40px;
    margin: 14px 0 16px 0;
}
footer .middle_line .mail_list .button {
    background: #fff;
    color: #2A2625;
    padding: 8px 25px 9px 25px;
    cursor: pointer;
}
footer .middle_line .mail_list .button:after {
    display: none;
}
footer .bottom_line {
    min-height: 87px;
    color: rgba(255, 255, 255, 0.6);
    font-size: .8em;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;   
}
#global100:after {
    display: block;
    height: 445px;
    content:'';
}
section.main {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
/*    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;*/
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;   
}
section.main .left {
    max-width: 57.4%;
    flex: 0 0 57.4%;
    -webkit-flex: 0 0 57.4%;
    -ms-flex: 0 0 57.4%;    
}
section.main .right {
    max-width: 33.9%;
    flex: 0 0 33.9%;
    -webkit-flex: 0 0 33.9%;
    -ms-flex: 0 0 33.9%;
    /*padding-bottom: 105px;*/
    /*position: sticky;*/
}
section.main .left > h1 {
    font-size: 2.5em;
    color: #2A2625;
    font-weight: bold;
    display: inline-block;
    border-bottom: 3px solid #D90C14;
    padding-bottom: 3px;
    margin-top: 0;
}
section.main .left > h1 span {
    color: #D90C14;
}
section.main .left .header_alt {
    color: #C4C4C4;
    font-size: 1.05em;
    font-weight: 600;
    text-transform: uppercase;
}
.completed_vote .date,
.current_vote .date {
    color: #C4C4C4;
    font-size: 1.05em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;    
}
.sb-row-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.current_vote .stat span {
    color: #D90C14;
    font-size: 1.1em;
}
.completed_vote {
    margin: 45px 0;
}
.completed_vote h3 {
    color: #D90C14;
    margin-top: 0;
    font-size: 1.4em;
}
.completed_vote .completed_voting_wrap {
    margin-top: 38px;
    margin-bottom: 30px;
}
.completed_vote .completed_voting_wrap .string {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; 
    margin-bottom: 10px;   
}
.completed_vote .completed_voting_wrap .string label {
    max-width: 25.72%;
    flex: 0 0 25.72%;
    -webkit-flex: 0 0 25.72%;
    -ms-flex: 0 0 25.72%;    
    box-sizing: border-box;
    padding-right: 10px;
}
.completed_vote .completed_voting_wrap .bar {
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    position: relative;   
    min-height: 27px;
    background: #F5EFE9;
} 
.completed_vote .completed_voting_wrap .bar div {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #D90C14;
}
.completed_vote .completed_voting_wrap .string .stat {
    min-width: 116px;
    flex: 0 0 116px;
    -webkit-flex: 0 0 116px;
    -ms-flex: 0 0 116px;    
    box-sizing: border-box;
    padding-right: 10px;
    text-align: right;
    padding-left: 10px;
    font-size: 1.05em;
}
.completed_vote .completed_voting_wrap .string .stat span {
    color: #D90C14;
}
.completed_vote .stat {
    font-size: 1.05em;
}
.completed_vote .stat span {
    color: #D90C14;
}
.right_column_banner,
.right_column_category {
    padding-bottom: 39px;
}
.right_column_other h3,
.right_column_category h3 {
    color: #2A2625;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.right_column_banner a,
.right_column_banner a img {
    display: block;
    max-width: 100%;
    max-width: 362px;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
}
.right_column_category .wrap .block {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 27px;
}
.right_column_category .wrap .block .img {
    position: relative;
    display: block;

    max-width: 25.15%;
    flex: 0 0 25.15%;
    -webkit-flex: 0 0 25.15%;
    -ms-flex: 0 0 25.15%;   
    margin-right: 19px; 
}
.right_column_category .wrap .block .img:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;     
}
.right_column_category .wrap .block .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right_column_category .wrap .block .date {
    font-size: .8em;
    color: #2A2625;
    font-weight: 300;
    margin-bottom: 6px;
}
.right_column_category .wrap .block a {
    font-size: 1.1em;
    color: #2A2625;
    font-weight: bold;
    text-decoration: none;
}
.right_column_category .wrap .block p {
    margin-top: 5px;
    font-weight: 300;
    color: #666666;
    font-size: 0.88em;
}
.right_column_category.beige {
    padding: 35px 30px;
}
.right_column_category.beige h3 {
    border-bottom: none;
}
.right_column_other .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
.right_column_other .wrap > * {
    max-width: 49%;
    flex: 0 0 49%;
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;     
    margin: 0 0 2% 0;
    position: relative;
}
.right_column_other .wrap > .banner img {
    max-width: 100%;
}
.right_column_other .wrap > .other_category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.right_column_other .wrap > .other_category:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;  
    z-index: 10;     
    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);    position: relative;
}
.right_column_other .wrap > *:nth-child(odd) {
    margin-right: 2%;
}
.right_column_other .wrap > .other_category span {
    position: absolute;
    bottom: 20px;
    left: 28px;
    z-index: 20;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
}
.right_column_category.with_border {
    border: 1px solid #E5E5E5;
    padding: 35px 30px;
}
.right_column_other {
    margin-bottom: 39px;
}
.news_big_photo {
    position: relative;
    margin-bottom: 30px;
        overflow: hidden;
}
.news_big_photo:before {
	content:'';
	background: rgba(42, 38, 37, 0.5);
	position: absolute;
	width: 100%;
    height: 99%;
}
.news_big_photo > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
/*.news_big_photo:before {
    width: 100%;
    padding-top: 48.87%;
    height: 0;
    content:'';
    display: block;    
    background: rgba(42, 38, 37, 0.6);
    z-index: 10;
    position: relative;


    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0) 35%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);    
}*/
.news_big_photo .bottom {
    bottom: 28px;
    left: 42px;
    right: 42px;
    z-index: 20;
    color: #fff;
    z-index: 20;
    position: absolute;
}
.news_big_photo .tag {
    display: inline-block;
    background: #D90C14;
    border-radius: 2px;
    color: #fff;
    padding: 3px 11px 5px 11px;
}
.news_big_photo .date {
    font-size: .88em;
    margin: 9px 0;
}
.news_big_photo h1 {
    margin: 0 0 9px 0;
    color: #fff;
}
.news_big_photo .bottom p {
    margin: 0;
    font-size: 1.1em;
}
.news_share {
    margin: 35px 0;
}
.news_share .share {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;    
    color: #D90C14;
    font-size: .88em;
}
.news_share .share .ya-share-container {
    margin-left: 5px;
}
.news_share .views {
    color: #A5A5A5;    
    font-size: .88em;
}
.news_share .views:before {
    content:'';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url('style/views.svg') no-repeat center center / contain;
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    top: 5px;
}
.main_text {
    font-size: 1.15em;
    line-height: 1.6em;
    font-weight: 300;
}
.main_text ol {
    list-style: none;
    counter-reset: myCounter;
}
.main_text ol li {
    counter-increment: myCounter;
}
.main_text ol li:before {
    content:counter(myCounter) ". ";    
    color: #D90C14;
    font-weight: 400;
}
blockquote {
    background: #F5EFE9;    
    padding: 36px 95px 39px 95px;
    position: relative;
    margin: 30px 0;
    text-align: center;
    line-height: 1.4em;
    font-weight: 500;
}
blockquote .quote {
    display: block;
    margin: 0 auto 23px auto;
    width: 1em;
    height: 1em;
    font-size: 39px;
    background: url('style/quote.svg') no-repeat center center / contain;
}
blockquote .author {
    margin-top: 28px;
    font-size: 0.88em;
    font-weight: 300;
}
blockquote .author span {
    color: #D90C14;
}
.news_share .report_error {
    text-decoration: underline;
    cursor: pointer;
    font-size: .88em;
}
.news_share .report_error:before {
    content:'';
    display: inline-block;
    background: url('style/mini_logo.png') no-repeat center center / contain;
    width: 77px;
    height: 19px;
    margin-right: 7px;
    top: 3px;
    position: relative;
}
.banner_after_news {
    margin: 30px 0;
    max-width: 100%;
}
.banner_after_news a,
.banner_after_news a img {
    max-width: 100%;
}
.news_from_category .wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}
.news_from_category .wrap .banner,
.news_from_category .wrap .block {
    flex: 0 0 49%;
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;  
    position: relative;  
    margin-bottom: 2%;
    cursor: pointer;
}
.news_from_category .wrap .block:after {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;      
    background: rgb(42,38,37);
    background: -moz-linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    background: linear-gradient(180deg, rgba(42,38,37,0) 40%, rgba(42,38,37,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2625",endColorstr="#2a2625",GradientType=1);    
    position: relative;
    z-index: 10;
}
.news_from_category .wrap .block img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.news_from_category .wrap .block .bottom {
    position: absolute;
    bottom: 21px;
    left: 27px;
    right: 27px;
    z-index: 20;
    color: #fff;
    transition: transform .3s;
    cursor: pointer;
}
.news_from_category .wrap .block .bottom .date {
    font-size: .8em;
    margin-bottom: 6px;
}
.news_from_category .wrap .block .bottom a {
    font-size: 1.25em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.news_from_category .wrap .block .bottom p {
    margin-bottom: 0;
    color: #C8C8C8;
    font-size: .88em;
}
.news_from_category .wrap .banner {
    position: relative;
}
.news_from_category .wrap .banner:before {
    width: 100%;
    padding-top: 100%;
    height: 0;
    content:'';
    display: block;     
}
.news_from_category .wrap .banner a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.news_from_category .wrap .banner a img {
    width: 100%;
    max-width: 100%;
}
@media only screen and (min-width : 1200px) and (max-width : 1799px)  {
    .big_news_centered .wrap .right_part .block .bottom,
    .big_news_centered .wrap .left_part .block .bottom {
        position: absolute;
        bottom: 15px;
        left: 12px;
        right: 12px;
    }
    .big_news_centered .wrap .block .left_part .bottom p,
    .big_news_centered .wrap .block .right_part .bottom p {
        font-size: .8em;
    }
    .big_news_centered .wrap .right_part .block  .bottom a,
    .big_news_centered .wrap .left_part .block .bottom a {
        font-size: 1em;
    }
    .chess .category {
        max-width: 50%;
        flex: 0 0 50%;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        margin: 0;
        padding: 20px;
    }
    .chess .category .cont .block .date,
    .chess .category .cont .block p {
        font-size: .7em;
    }
    .lenta_mneniy .block .data {
        padding: 10px 30px;
    }
    .lenta_mneniy .block .data a.title {
        font-size: 1.2em;
    }
    section.main .left {
        max-width: 62.4%;
        flex: 0 0 62.4%;
        -webkit-flex: 0 0 62.4%;
        -ms-flex: 0 0 62.4%;        
    }
}

@media only screen and (max-width: 768px) {
    .lenta_mneniy {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .lenta_mneniy .block {
        width: 100%;
    }
}





header .content .right_part .search {
    cursor: pointer;
    transition: .3s;
    padding: 10px 10px;
    background-color: #f1e7e6;
    border-radius: 5px;
    background-size: 20px;
}
header .content .right_part .search:hover {
    opacity: .6;
}
body.show_search header .content .right_part .search {
    background-image: url('style/cross_search.svg');
}
header .content .right_part .search {
    background-image: url('style/search.svg');
}

header .content .right_part .regions {
	background-color: #B7352D;
	color: #fff;
	position: relative;
	padding: 10px 10px;
	border-radius: 5px 5px 0 0;
	cursor: pointer;
	width: 143px;
	text-align: center;
}

header .content .right_part .regions .defregion {
	
}

header .content .right_part .regions .selregion {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #B7352D;
	top: 42px;
	width: 140px;
	z-index: 100;
	    left: 0;
	    padding: 10px;
	    text-align: left;
	
}

header .content .right_part .regions a.region {
	text-decoration: none;
	display: block;
	color: #1F2933;
	padding: 5px 0;
	border-bottom: 1px solid #B7352D;
}

#main_menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    position: fixed;
    z-index: 0;
    padding: 90px 0px 90px;
    height: 100vh;
    visibility: hidden;
    -webkit-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
    background: #2a2625;
    opacity: 0;
    padding: 300px 0px 200px;
    padding: 320px 0px 0px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
}
body.show_menu #main_menu {
    visibility: visible;
    z-index: 200;
    opacity: 1;
}
#main_menu .content-wrapper {
    width: 100%;
}
#main_menu .content-wrapper .content-narrow {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 600px;
    margin: 0 auto;
}
#main_menu .content-wrapper .content-narrow .block,
#main_menu .content-wrapper .content .block {
    max-width: 48%;
}
body.full-screen-modal {
    overflow: hidden;
}
#main_menu .content-wrapper .content-narrow .block a,
#main_menu .content-wrapper .content .block a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
#main_menu .content-wrapper .content-narrow .block a:not(:last-child),
#main_menu .content-wrapper .content .block a:not(:last-child) {
    margin-bottom: 10px;
}


.main-search-container {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    visibility: hidden;
    background: #2A2625;
    padding: 120px 0px;
    z-index: 200;
    -webkit-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
    opacity: 0;
    color: #fff;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
}
.main-search-container .content-wrapper {
    width: 100%;
}
body.full-screen-modal {
    overflow: hidden;
}
body.show_search .main-search-container {
    visibility: visible;
    opacity: 1;
}
.main-search-container .form-control {
    border: none;
    background: none;
    font-size: 2rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 20px 10px;
    height: 80px;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: #fff;
}
.main-search-container .form-control:focus {
    border-bottom-color: #fff;
}
.main-search-container .content-wrapper form {
    width: 66%;
    margin: 0 auto;
}
.form-control {
    display: block;
    width: 100%;
    line-height: 1.42857143;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    box-sizing: border-box;
}
.main-search-container input,
.main-search-container button,
.main-search-container select,
.main-search-container textarea {
    font-family: inherit;
}
.main-search-container .content-wrapper .label {
    font-size: .875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}
input.form-control:placeholder {
    color: rgba( 255, 255, 255, .6 );
}
input.form-control::placeholder {
    color: rgba( 255, 255, 255, .6 );
}
input.form-control:-ms-input-placeholder {
    color: rgba( 255, 255, 255, .6 );
}
input.form-control::-ms-input-placeholder {
    color: rgba( 255, 255, 255, .6 );
}
input.form-control::-moz-placeholder {
    color: rgba( 255, 255, 255, .6 );
}
input.form-control::-webkit-input-placeholder {
    color: rgba( 255, 255, 255, .6 );
}
.lenta_wrap:not(.inner) .block {
    display: none;
}
.lenta_wrap .block:nth-child(1),
.lenta_wrap .block:nth-child(2),
.lenta_wrap .block:nth-child(3),
.lenta_wrap .block:nth-child(4),
.lenta_wrap .block:nth-child(5),
.lenta_wrap .block:nth-child(6),
.lenta_wrap .block:nth-child(7),
.lenta_wrap .block:nth-child(8),
.lenta_wrap .block:nth-child(9),
.lenta_wrap .block:nth-child(10),
.lenta_wrap .block:nth-child(11),
.lenta_wrap .block:nth-child(12) {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.lenta_wrap.full .block {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.lenta_wrap.inner .block {
    max-width: 100%;
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    margin: 0 0% 2.75% 0;
}
.lenta_wrap.inner .block .img {
    max-width: 15.15%;
    flex: 0 0 15.15%;
    -webkit-flex: 0 0 15.15%;
    -ms-flex: 0 0 15.15%;  
}
.top_banner noindex a img {
    width: 100%;
    height: auto !Important;
}
section.screen.main.content.noflex {
    display: block;
    flex: none;
}
#global100 > .screen.banner_betweeen_rows {
    padding: 0;
    margin-bottom: 30px;
    margin: 15px auto;
}
section.index_slider .important .wrap .banner noindex a img {
    width: auto !important;
    height: auto !important;
    max-height: 100%;
    max-width: 100%;
}
.big_news_centered .wrap .right_part noindex a img { 
    width: 100%;
    height: auto !important;
} 
section.index_slider .important .wrap {
    overflow: hidden;
}
header .content .right_part .social {
    height: 0;
    overflow: hidden;
}
.full-screen-modal.show_menu header .content .right_part .social {
    height: auto;
    overflow: hidden;
}
header .date:first-letter {
    text-transform: uppercase;
}




.big_news_centered.with_news .wrap .left_part, .big_news_centered.with_news .wrap .right_part {
    max-width: 23.57%;
    flex: 0 0 23.57%;
    -webkit-flex: 0 0 23.57%;
    -ms-flex: 0 0 23.57%;
    position: relative;
}
.big_news_centered.with_news .wrap .big {
    max-width: 48.96%;
    flex: 0 0 48.96%;
    -webkit-flex: 0 0 48.96%;
    -ms-flex: 0 0 48.96%;
}
.big_news_centered .wrap .big .block:before {
    padding-top: 61.5%;
}
.auto_init_swiper.swiper-container-fade .swiper-slide {
    background: #fff;
}
#global100 > section.single_posts_screen + .screen.banner_betweeen_rows {
    margin: 0px auto 0px auto;
}
#global100 > section.index_slider + .screen.banner_betweeen_rows{
    margin-top: -30px;
}
#global100 .vote-form-box-buttons.vote-vote-footer {
    margin-top: 30px;
}
footer .top_line a {
    cursor: pointer;
}
.main_text_ip.detail_news .button.view_more {
    margin-top: 1em;
}
.category_single .block .button.view_more {
    margin-top: 1em;
}
#add2maillistwarning {
    max-width: 600px;
}
#add2maillistwarning a.button {
    margin-right: 10px;
    cursor: pointer;
}
#add2maillistwarning a.button.close {
    background: none;
    color: #D90C14;
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8) url(style/loading.svg) no-repeat center center/ 150px auto;
    z-index: 99999;
}
header .weather {
    position: relative;
    margin-top: -10px;
}
header .weather img {
    position: absolute;
    top: -1px;
    left: -26px;
}
.index_slider  .swiper-container .block {
    height: 100%;
    max-height: 100%;
}
header .weather,
header .curs {
    white-space: nowrap;
    margin: 0 .5em;
}
header .top_part .date {

}
header .curs .val_name {
    color: rgba(255, 255, 255, 0.6);
}
header .curs .green-arr:after,
header .curs .red-arr:after {
    display: inline-block;
    margin: 0 5px 0 0px;
    font-weight: bold;
    width: 10px;
    height: 1em;
    position: relative;
    top: 2px;    
}
header .curs .green-arr:after {
    content: '';
    background: url(style/arr-red.svg) no-repeat center center / contain;
}
header .curs .red-arr:after {
    content: '';
    background: url(style/arr-green.svg) no-repeat center center / contain;
}
.full-screen-modal.show_menu header .curs,
.full-screen-modal.show_menu header .weather {
    display: none;
}
.big_news_centered .right_part .swiper-container img {
    width: 100%;
    height: auto !important;
    max-height: 100%;
}
footer .bottom_line .left {
    font-size: 1em;
}
#global100 > .screen.with_voting,
#global100 > .screen.chess.content + .two_columns.with_voting {
    padding-top: 0;
}

.screen.main.content  .screen.content {
    padding: 30px 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}
.screen.main.content  .screen.content.banner_betweeen_rows img {
    height: auto !important;
}
.with_voting .voting.completed_vote {
    margin: 0;
}
.glavred {
    float: left;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;    
    padding-right: 52px;
    border-right: 1px solid rgba(42, 38, 37, 0.2);
    margin-right: 15px;
}    
.glavred img {
    margin-right: 24px;
}
.glavred .text .state {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #D90C14;    
}
.glavred .text .name {
    font-size: 18px;
    line-height: 21px;   
    color: #2A2625; 
}
.with_voting .voting.completed_vote .completed_voting_wrap .string label {
    max-width: 45.72%;
    flex: 1 0 45.72%;
    -webkit-flex: 1 0 45.72%;
    -ms-flex: 1 0 45.72%;   
}


@media only screen and (min-width : 1200px) and (max-width : 1799px)  {
    .news_single .bottom a {
        font-size: 1.2em;
    }
    .news_single .bottom {
        padding: 0px 15px;
    }
    .category_single h2 {
        font-size: 1.5em;
    }
    .big_news_centered .wrap .big .block a {
        font-size: 1.4em;
    }


}
.youtoube_video {
    display: block;
    position: relative;
}
.youtoube_video:after {
    content:'';
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;    
}
.youtoube_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    width: 100%;
    height: 100%;
}

footer .social a.tg, header .content .right_part .social a.tg, #main_menu .social a.tg {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3e%3cg%3e%3ccircle xmlns='http://www.w3.org/2000/svg' cx='12' cy='12' fill='%231F2933' r='12' data-original='%23039be5' class=''%3e%3c/circle%3e%3cpath xmlns='http://www.w3.org/2000/svg' d='m5.491 11.74 11.57-4.461c.537-.194 1.006.131.832.943l.001-.001-1.97 9.281c-.146.658-.537.818-1.084.508l-3-2.211-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.121l-6.871 4.326-2.962-.924c-.643-.204-.657-.643.136-.953z' data-original='%231F2933' class=''%3e%3c/path%3e%3c/g%3e%3c/svg%3e");
}

footer .social a.dz, header .content .right_part .social a.dz, #main_menu .social a.dz {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3c!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3e%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 24.5 24.7' style='enable-background:new 0 0 24.5 24.7;' xml:space='preserve'%3e%3cstyle type='text/css'%3e .st0%7bfill-rule:evenodd;clip-rule:evenodd;fill:%231F2933;%7d %3c/style%3e%3cg id='Слой_2'%3e%3c/g%3e%3cg id='Слой_1'%3e%3cpath class='st0' d='M12.1,24.7c6.7,0,12.1-5.4,12.1-12.1c0-6.7-5.4-12.1-12.1-12.1C5.4,0.5,0,5.9,0,12.6 C0,19.3,5.4,24.7,12.1,24.7z'/%3e%3cpath d='M19.5,12.4C19.5,12.4,19.5,12.4,19.5,12.4c0.1,0,0.2,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.3c-0.3-3.7-3.3-6.7-7-7 c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3C12.6,10.3,13.2,12.3,19.5,12.4z M19.5,13c-6.3,0.1-6.9,2.1-7,7.1 c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.2,0.1c0,0,0,0,0,0c3.7-0.3,6.6-3.3,7-7c0-0.1,0-0.2-0.1-0.3C19.7,13.1,19.6,13,19.5,13z M11.5,5c-3.7,0.3-6.6,3.3-6.9,7c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.2,0.1c0,0,0,0,0,0c6.3-0.1,6.9-2.1,7-7 c0-0.1,0-0.2-0.1-0.3C11.7,5,11.6,5,11.5,5z M4.9,13c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0.3,3.7,3.3,6.7,6.9,7 c0,0,0,0,0,0c0.1,0,0.2,0,0.2-0.1c0.1-0.1,0.1-0.2,0.1-0.3C11.8,15.1,11.1,13.1,4.9,13z'/%3e%3c/g%3e%3c/svg%3e ");
	}
	
	@media only screen and  (max-width : 424px)  {
	footer .top_line .left .logo {
    margin-right: 10px;
}
}


	.nflex {
		display: flex;
	}
	
	.nalign {
		align-items: center;
	}
	
	.njustify {
		justify-content: space-between;
	}
	
	.njustify-center {
		justify-content: center;
	}
	
	.new_region_main {
		gap: 20px;
		background-color: #F5F6F8;
		flex-wrap: wrap;
	}
	
	.new_regions_blocks {
		width: 100%;
	}
	
	.new_regions_wrapper {
		gap: 10px;
	}
	
	.new_region_block {
		width: 19%;
		background-color: #fff;
		border-radius:  0 0 5px 5px;
		box-shadow: 0px 2px 10px #ccc;
		
	}
	
	.new_region_scroll {
		height: 895px;
    overflow-y: scroll;
	}
	
	.new_all_regions_block {
		width: 100%;
		background-color: #fff;
		border-radius:  5px 5px 5px 5px;
		box-shadow: 0px 2px 10px #ccc;
	}
	
	.new_region_block .new_region_name {
		padding: 10px 10px;
		background-color: #B7352D;
		border-radius: 5px 5px 0 0;
		color: #fff;
		    font-size: 20px;
    font-weight: 600;
    display: block;
	}
	
	.new_region_block .new_region_all {
		padding: 10px 10px;
		background-color: #B7352D;
		border-radius:  0 0 5px 5px;
		color: #fff;
		    font-size: 20px;
    font-weight: 600;
    display: block;
	}
	
	.new_region_block .new_region_big_news {
		padding: 10px;
		    border-bottom: 1px solid #E6E8EC;
	}
	
	.new_region_block .new_region_big_news .new_region_img {
		display: block;
		margin-bottom: 10px;
	}
	
	.new_region_block .new_region_big_news .new_region_img img {
		width: 100%;
	}
	
	.new_region_block .new_region_big_news .new_region_title {
		font-size: 16px;
    font-weight: 600;
    color: #1F2933;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
	}
	
	.new_region_block .new_region_big_news .new_region_date {
		color: #9AA5B1;
	}
	
	.new_region_block .new_region_small_news {
		padding: 10px;
		    border-bottom: 1px solid #E6E8EC;
	}
	
	.new_region_block .new_region_small_news:last-child {
		border-bottom: none;
	}
	
	.new_region_block .new_region_small_news .new_region_title {
		font-size: 16px;
    font-weight: 600;
    color: #1F2933;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
	}
	
	.new_region_block .new_region_small_news .new_region_title .new_region_badge {
		height: 12px;
    padding: 3px 10px 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    float: left;
    margin-right: 5px;
	}
	
	.new_region_block .new_region_small_news .new_region_date {
		color: #9AA5B1;
	}
	
	.new_all_regions_block .new_region_name {
		padding: 10px 10px;
		background-color: #f1e7e6;
		border-radius: 5px 5px 0 0;
		color: #1F2933;
		    font-size: 20px;
    font-weight: 600;
    display: block;
	}
	
	.new_all_regions_block .new_region_all {
		    height: 45px;
		background-color: #f1e7e6;
		border-radius:  0 0 5px 5px;
		color: #1F2933;
		    font-size: 20px;
    font-weight: 600;
    display: block;
	}
	
	.new_all_regions_block .new_region_small_news {
		padding: 10px;
		    border-bottom: 1px solid #E6E8EC;
	}
	
	.new_all_regions_block .new_region_small_news:last-child {
		border-bottom: none;
	}
	
	
	
	.new_all_regions_block .new_region_small_news .new_region_title {
		font-size: 16px;
    font-weight: 600;
    color: #1F2933;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
	}
	
	.new_all_regions_block .new_region_small_news .new_region_title .new_region_badge {
		height: 12px;
    padding: 3px 10px 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    float: left;
    margin-right: 5px;
	}
	
	.new_all_regions_block .new_region_small_news .new_region_date {
		color: #9AA5B1;
	}
	
	@media (max-width: 1120px) {
		
		.new_region_main {
			flex-wrap: wrap;
		}
		
		.new_regions_blocks {
			width: 100%;
		}
		
		.new_all_regions_block {
			width: 100%;
		}
		
	}

		.new_regions_blocks {
			box-sizing: border-box;
    		overflow: hidden;
    		position: relative;
    		padding-bottom: 20px;
		}
		
		.new_regions_wrapper {
			gap: 0;
		}
		
		.new_regions_blocks.swiper-container-horizontal > .swiper-pagination-bullets {
			bottom: 0;
		}
	
	@media (max-width: 1080px) {

		
.new_region_scroll {
    height: 600px;
}
		

	}
	
	@media (max-width: 870px) {
		
		.new_region_block .new_region_name {
			    font-size: 16px;
		}
		
		div.detail_news img {
			width: 100%;
			height: auto;
		}
		
	}
	

	
	
	@media (max-width: 550px) {
		
		.new_region_block .new_region_scroll {
		    height: 205px;
		}
		
		.new_region_desc {
			position: absolute;
    top: 110px;
        padding: 0 5px;
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
            height: 120px;
    border-radius: 0 0 5px 5px;
		}
		
		.new_region_block .new_region_big_news .new_region_title {
			    color: #fff;
			        font-size: 12px;
		}
		
		.new_region_block .new_region_big_news .new_region_date {
			color: #fff;
			font-size: 12px;
			position: absolute;
    bottom: 5px;
		}
		
		.new_region_block .new_region_big_news {
			border-bottom: none;
			padding: 0;
		}
		
		.new_region_block .new_region_name {
			font-size: 12px;
			padding: 5px 5px;
		}
	
		.new_regions_blocks .new_region_small_news, .new_region_block .new_region_all {
			display: none;
		}
		
		.new_region_block {
			/*width: 100%;*/
		}
		
		.new_all_regions_block {
			/*width: 100%;*/
		}
		
	}