@import url(normalize.css);
	
@font-face {
    font-family: 'PTSans';
    src: url(../fonts/PTSans-Regular.ttf);
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'PTSans';
    src: url(../fonts/PTSans-Bold.ttf);
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.eot');
    src: url('../fonts/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Oswald-Regular.woff') format('woff'),
        url('../fonts/Oswald-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.eot');
    src: url('../fonts/Oswald-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Oswald-Bold.woff') format('woff'),
        url('../fonts/Oswald-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Main */
body{
    font-family: 'PTSans';
    font-size: 16px;
    color: #16191e;
    font-weight: 400;

    background: #f5f3f0;
}
body.no-scroll{
    overflow-y: hidden;
    height: 100vh;
}
*{
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.wrap_320{
    min-width: 320px;
    width: 100%;
    overflow: hidden;
}
.content-width{
    width: 100%;
    max-width: 1660px;
    padding: 0 30px;
    margin: 0 auto;
}
h1{
    font-size: 34px;
    line-height: 40px;
}
h2{
    font-size: 27px;
    line-height: 31px;
    margin: 46px 0 0px;
}
h3{
    font-size: 23px;
    line-height: 29px;
    margin: 44px 0 0px;
}
@media screen and (max-width: 1000px){
    h1{
        font-size: 36px;
        line-height: 44px;
    }
}
@media screen and (max-width: 760px){
    h1{
        font-size: 22px;
        line-height: 28px;
    }
    h2{
        font-size: 22px;
        line-height: 28px;
        margin: 38px 0 0px;
    }
    h3{
        font-size: 18px;
        line-height: 23px;
        margin: 38px 0 0px;
    }
    .content-width{
        padding: 0 20px;
    }
}

/* Top Line */
.top-line{
    padding: 1px 0 10px;
    background: #fff;
}
.top-line__flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.top-line__logo{
    display: flex;
    color: #16191e;
}
.top-line__logo-ico{
    margin-left: -11px;
}
.top-line__logo-desc{
    margin-left: 3px;
    padding-top: 34px;
}
.top-line__logo-date{
    font-size: 14px;
    margin: 0;
}
.top-line__logo-headline{
    font-size: 28px;
    line-height: 33px;
    margin: 16px 0 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.top-line__social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px auto 0;
}
.top-line__social-label{
    font-size: 16px;
    font-weight: 700;
}
.top-line__social-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 22px;
}
.top-line__social-a{
    width: 43px;
    height: 43px;
    margin-right: 10px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.top-line__social-a:last-child{
    margin-right: 0;
}
.top-line__social-a.vk{
    background: url(../img/vk-ico.png) center no-repeat;
    /*background-size: 27px 16px;*/
    background-size: 21px 21px;
}
.top-line__social-a.instagram{
    background: url(../img/instagram-ico.svg) center no-repeat;
    background-size: 28px 27px;
}
.top-line__social-a.youtube{
    background: url(../img/youtube-ico.svg) center no-repeat;
    background-size: 21px 25px;
}
.top-line__social-a.rutube{
    background: url(../img/rutube-ico.png) center no-repeat;
    background-size: 21px 21px;
}
.top-line__social-a.tg{
    background: url(../img/tg-ico.png) center no-repeat;
    background-size: 21px 21px;
}
.top-line__social-a.ok{
    background: url(../img/ok-ico.png) center no-repeat;
    background-size: 21px 21px;
}
.top-line__social-a.rss{
    background: url(../img/rss-ico.svg) center no-repeat;
    background-size: 22px 21px;
}
.top-line__social-a:hover{
    background-color: #e8e8e8;
}
.top-line__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 15px 0 0;
}
.top-line__adress{
    font-size: 16px;
}
.top-line__btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1px;
}
.top-line__search{
    position: relative;
}
.top-line__search-input{
    width: 500px;
    height: 48px;
    background: #fff;
    border: 2px solid #e8e8e8;
    font-size: 16px;
    color: #16191e;
    position: absolute;
    padding-left: 15px;
    right: 56px;
    top: 0;
    z-index: 5;
    display: none;
}
.top-line__search-input:focus{
    outline: none;
}
.top-line__search-btn{
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #e8e8e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    margin-right: 10px;
}
.top-line__search-btn:hover{
    background: #516d33;
    border-color: #516d33;
}
.top-line__search-btn svg{
    width: 16px;
    height: 16px;
    fill: #16191e;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.top-line__search-btn:hover svg{
    fill: #fff;
}
.top-line__glasses{
    width: 48px;
    height: 48px;
    background: #e8e8e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    margin-right: 10px;
}
.top-line__glasses:hover{
    background: #516d33;
}
.top-line__glasses svg{
    width: 27px;
    height: 11px;
    fill: #16191e;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.top-line__glasses:hover svg{
    fill: #fff;
}
.top-line__reception{
    width: 194px;
    height: 48px;
    background: #d93a1f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.top-line__reception:hover{
    background: #516d33;
}
.menu-mob__btn{
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background: #516c33;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
}
.menu-mob__btn:focus{
    outline: none;
}
.menu-mob__btn span{
    display: block;
    position: relative;
    width: 28px;
    height: 3px;
    background: #fff;
    -webkit-transition: background 0 0.3s;
    transition: background 0 0.3s;
}
.menu-mob__btn span::before,
.menu-mob__btn span::after{
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}
.menu-mob__btn span::before{
    top: -9px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}
.menu-mob__btn span::after{
    bottom: -9px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}
@media screen and (max-width: 1450px){
    .top-line__flex{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .top-line__social{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .top-line__social-label{
        margin: 0 0 10px;
    }
    .top-line__social-links{
        margin-left: 0;
    }
    .top-line__adress{
        text-align: right;
    }
    .top-line__adress b{
        display: block;
    }
}
@media screen and (max-width: 1250px){
    .top-line__logo-headline{
        font-size: 24px;
        line-height: 28px;
    }
}
@media screen and (max-width: 1150px){
    .top-line__flex{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .top-line__logo{
        -webkit-box-flex: 1;
        -ms-flex: 1 0;
        flex: 1 0;
    }
    .top-line__social{
        display: none;
    }
}
@media screen and (max-width: 1020px){
    .top-line{
        padding: 20px 0 30px;
    }
    .top-line__flex{
        align-items: flex-start;
    }
    .top-line__logo{
        -webkit-box-align: start; 
        -ms-flex-align: start; 
        align-items: flex-start;
    }
    .top-line__logo-ico{
        width: 78px;
        height: auto;
    }
    .top-line__logo-desc{
        padding-top: 15px;
    }
    .top-line__logo-headline{
        font-size: 17.44px;
        line-height: 20.35px;
    }
    .top-line__right{
        padding-top: 10px;
        margin-left: -20px;
    }
    .top-line__adress{
        margin-top: 0;
    }
    .top-line__adress b{
        display: inline;
    }
    .top-line__reception{
        width: 136px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 12px;
        line-height: 14px;
    }
    .menu-mob__btn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media screen and (max-width: 900px){
    .top-line__search-input{
        width: 350px;
    }
}
@media screen and (max-width: 850px){
    .top-line__logo-headline br{
        display: none;
    }
}
@media screen and (max-width: 750px){
    .top-line{
        padding: 0 0 8px;
    }
    .top-line .content-width{
	    padding: 0;
    }
    .top-line__flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .top-line__glasses,
    .top-line__adress,
    .top-line__logo-date{
        display: none;
    }
    .top-line__logo{
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 20px;
    }
    .top-line__right{
        width: 100%;
        padding: 0;
        margin-left: 0;
    }
    .top-line__btns{
        width: 100%;
        margin-top: 0;
    }
    .top-line__search{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .top-line__search-btn{
        margin-right: 0;
        border: none;
    }
    .top-line__search-input{
        width: calc(100% - 45px);
        right: 0;
        left: 45px;
        border: none;
        border-left: 2px solid #e8e8e8;
    }
    .top-line__reception{
        width: calc(100% - 90px);
        margin-left: 45px;
    }
    .menu-mob__btn{
        margin-left: 0;
    }
    .top-line__logo-headline{
        font-size: 13.92px;
        line-height: 16.24px;
        margin-top: 0;
    }
    .top-line__logo-ico{
        margin-left: -10px;
    }
}
/* Nav */
nav{
    background: #516d33;
}
.nav{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 11px 0 10px;
    list-style: none;
    margin: 0;
	flex-wrap: wrap;
}
.nav li{
    margin-right: 60px;
	padding: 11px 0px 11px 0px;
}
.nav li:last-child{
    margin-right: 0;
}
.nav li a{
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.91px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    text-transform: uppercase;
}
.nav li a.active,
.nav li a:hover{
    color: #9cbb7a;
}
.mob-line__flex{
    width: 100%;
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}
.nav-mob__logo{
    font-size: 17.44px;
    text-transform: uppercase;
    color: #fff;
    line-height: 20.35px;
    font-weight: 700;
}
.nav-mob__close{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background: rgba(108, 29, 15, 0.3);
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.nav-mob__close:focus{
    outline: none;
}
.nav-mob__close span{
    display: block;
    position: relative;
    width: 28px;
    height: 3px;
    background: none;
    -webkit-transition: background 0 0.3s;
    transition: background 0 0.3s;
}
.nav-mob__close span::before,
.nav-mob__close span::after{
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    
    -webkit-transition-delay: 0, 0.3s;
    transition-delay: 0, 0.3s;
}
.nav-mob__close span::before{
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-mob__close span::after{
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.second-lvl{
    list-style: none;
    display: none;
}
.second-lvl li a{
    color: #f0c0bc;
}
@media screen and (max-width: 1250px){
    .nav li a{
        font-size: 14px;
    }
    .nav li{
        margin-right: 40px;
    }
}
@media screen and (max-width: 1020px){
    nav{
        display: none;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #d93a1f;
        overflow-y: auto;
    }
    .nav{
        display: block;
        padding: 37px 0 30px;
    }
    .mob-line__flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .nav li{
        margin-right: 0;
    }
    .nav li a{
        display: block;
        font-size: 24px;
        text-transform: none;
        padding: 14px 10px 17px;
        position: relative;
    }
    .nav li a:hover{
        color: #fff;
    }
    .nav li a.show{
        background: rgba(108, 29, 15, 0.3);
    }
    .second-tab:after{
        width: 19px;
        height: 11px;
        content: '';
        display: block;
        position: absolute;
        top: 22px;
        right: 13px;
        background: url(../img/menu-arrow.png);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .show.second-tab:after{
        top: 23px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@media screen and (max-width: 600px){
    nav .content-width{
        padding: 0;
    }
    .nav{
        padding-top: 0;
    }
    .nav-mob__logo{
        font-size: 13.92px;
        line-height: 16.94px;
        padding-top: 17px;
        padding-left: 20px;
    }
    .mob-line__flex{
        margin-bottom: 30px;
    }
    .nav li a{
        font-size: 17.68px;
        padding: 12px 20px 16px;
    }
    .second-tab:after{
        right: 34px;
    }
    .second-lvl li a{
        font-weight: 400;
    }
}

/* Youth sites */
.youth-sites{
    padding: 24px 0 60px;
    background: #fff;
}
.youth-sites h2{
    font-size: 34px;
    font-weight: 700;
    margin: 30px 0 0px;
}
.youth-sites__slider{
    margin-top: 33px;
}
.youth-sites .slick-list{
    margin: 0 -15px;
}
.youth-sites__item{
    display: block;
    border: 2px solid #dfe1da;
    font-size: 16px;
    color: #16191e;
    line-height: 18px;
    margin: 0 15px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.youth-sites__item:hover{
    border-color: #516d33;
    background: #516d33;
    color: #fff;
}
.youth-sites__item-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 129px;
    padding: 0 50px;
}
@media screen and (max-width: 1000px){
    .youth-sites{
        padding: 20px 0 50px;
    }
    .youth-sites h2{
        font-size: 30px;
    }
}
@media screen and (max-width: 729px){
    .youth-sites{
        padding: 20px 0 30px;
    }
    .youth-sites h2{
        font-size: 22px;
        line-height: 27.12px;
        margin-top: 18px;
    }
    .youth-sites__slider{
        width: 100%;
        max-width: 450px;
        margin: 16px auto 0;
    }
}
@media screen and (max-width: 450px){
    .youth-sites__item{
        font-size: 14px;
        line-height: 17px;
    }
    .youth-sites__item-flex{
        padding: 0 40px;
    }
}
/* Useful link */
.useful-link{
    padding: 24px 0 60px;
    background: #f5f3f0;
}
.useful-link h2{
    font-size: 34px;
    font-weight: 700;
    margin: 30px 0 0px;
}
.useful-link__slider{
    margin-top: 33px;
}
.useful-link .slick-list{
    margin: 0 -15px;
}
.useful-link__item{
    display: block;
    font-size: 16px;
    color: #16191e;
    background: #fff;
    line-height: 18px;
    margin: 0 15px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.useful-link__item:hover{
    border-color: #d93a1f;
    background: #d93a1f;
    color: #fff;
}
.useful-link__item-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 133px;
    padding: 20px 50px 24px;
}
.useful-link__item-link{
    font-size: 18px;
    color: #d93a1f;
    font-weight: 700;
    margin-top: auto;
}
.useful-link__item:hover .useful-link__item-link{
    color: #fff;
}
@media screen and (max-width: 1000px){
    .useful-link{
        padding: 20px 0 50px;
    }
    .useful-link h2{
        font-size: 30px;
    }
}
@media screen and (max-width: 729px){
    .useful-link{
        padding: 20px 0 30px;
    }
    .useful-link h2{
        font-size: 22px;
        line-height: 27.12px;
        margin-top: 18px;
    }
    .useful-link__slider{
        width: 100%;
        max-width: 450px;
        margin: 16px auto 0;
    }
}
@media screen and (max-width: 450px){
    .useful-link__item{
        font-size: 14px;
        line-height: 17px;
    }
    .useful-link__item-link{
        font-size: 16px;
    }
    .useful-link__item-flex{
        padding: 18px 40px 20px;
    }
}
/* Footer */
footer{
    background: url(../img/footer-bg.jpg) center top no-repeat #44582e;
    padding: 29px 0 80px;
}
.footer-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-left{
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
}
.footer-logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-logo__ico{
    width: 160px;
    height: auto;
}
.footer-logo-headline{
    font-size: 22.1px;
    color: #fff;
    line-height: 26.01px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px 0 0px 20px;
    letter-spacing: -0.4px;
}
.footer-copyright{
    font-size: 12px;
    color: #fff;
    opacity: .5;
    line-height: 18px;
    margin: auto 0 0;
}
.footer-right{
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: 39px;
}
.footer-adress{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15px;
    margin-bottom: 9px;
}
.footer-adress br{display: none;}
.footer-phone{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: block;
}
.footer-email{
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
    display: block;
    margin-top: 5px;
}
.footer-email:hover{
    text-decoration: none;
}
.footer-scheme{
    color: #fff;
    font-size: 16px;
    display: block;
    margin-top: 39px;
}
.footer-scheme a{
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
}
.footer-scheme a:hover{
    text-decoration: none;
}
.footer-bottom{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-right__dev{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 44px;
}
.footer-right__dev-link{
    font-size: 12px;
    color: #fff;
    opacity: .5;
    line-height: 18px;
    margin: 0;
}
.footer-count{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 36px;
    margin-left: 36px;
}
.footer-count img,
.footer-count div{
    margin: 0 1px;
}
@media screen and (max-width: 1100px){
    .footer-adress{
        text-align: right;
        line-height: 21px;
    }
    .footer-adress br{
        display: block;
    }
}
@media screen and (max-width: 850px){
    footer{
        padding-top: 10px;
    }
    .footer-logo__ico{
        width: 140px;
        height: auto;
    }
    .footer-logo-headline{
        font-size: 16px;
        line-height: 20px;
    }
    .footer-right__dev{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .footer-right__dev-link{
        margin-top: 15px;
    }
}
@media screen and (max-width: 750px){
    footer{
        padding-bottom: 50px;
    }
    .footer-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-left,
    .footer-right{
        width: 100%;
    }
    .footer-logo{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-logo__ico{
        width: 110px;
        margin-left: -11px;
    }
    .footer-logo-headline{
        margin: 0 0 0px 10px;
        font-size: 13.16px;
        line-height: 15.49px;
    }
    .footer-right{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 20px;
    }
    .footer-adress{
        text-align: center;
    }
    .footer-bottom{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-right__dev{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .footer-count{
        margin-left: 0;
    }
    .footer-copyright{
        margin-top: 30px;
        text-align: center;
    }
}
/* Main */


/* Index Header */
.header{
    position: relative;
}
.header-prev,
.header-next{
    position: absolute;
    height: 100%;
    width: 10%;
    z-index: 10;
    top: 0;
}
.header-prev{
    left: 0;
    cursor: url(../img/cursor-left.svg) 22 17,pointer;
}
.header-next{
    right: 0;
    cursor: url(../img/cursor-right.svg) 22 17,pointer;
}
.header-slide{
	background: #aaa;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 507px;
    padding-top: 65px;
	display: none;
}
.header-slide:first-child{
	display: block;
}
.header-desc{
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.header-headline{
    font-size: 92px;
    line-height: 88px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 0;
}
@media screen and (max-width: 1000px){
    .header{
        height: 477px;
    }
    .header-headline{
        font-size: 78.38px;
        line-height: 74.97px;
    }
}
@media screen and (max-width: 700px){
    .header-headline{
        font-size: 54px;
        line-height: 52px;
    }
}
/* Index Header */

/* Index Timer */
.index-banner{
    margin-top: -85px;
    margin-bottom: -85px;
}
.index-banner__img{
    -webkit-box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.54);
    box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.54);
    position: relative;
    z-index: 2;
	max-width: 1598px;
	line-height: 1px;
}
.index-banner__img img{
	width: 100%;
	height: auto;
}
.index-banner__flex{
    height: 171px;
    background: url(../img/timer-bg.png) center no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.54);
    box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.54);
    position: relative;
    z-index: 2;
    padding: 0 23px;
}
.index-banner__desc{
    width: calc(100% - 508px);
    max-width: 720px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 34px;
    color: #fff;
    margin: 0px auto 0;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
    padding: 0 20px 0 0;
}
.index-banner__desc img{
    margin: 0 25px;
}
.index-banner__desc span{
    width: auto;
    padding-top: 11px;
}
.index-timer{
    width: 508px;
    height: 125px;
    background: rgba(0,0,0,.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 0 0;
}
.index-timer__num{
    text-align: center;
    font: 55px 'Oswald';
    font-weight: 700;
    line-height: 55px;
    color: #fff;
    display: block;
}
.index-timer__txt{
    font-size: 11.11px;
    line-height: 11px;
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    margin-top: 7px;
}
.index-timer__dots{
    font: 47.9px 'Oswald';
    color: #e31e24;
    margin: 0px 22px 0;
}
@media screen and (max-width: 1200px){
    .index-banner{
        margin-top: -69px;
        margin-bottom: -69px;
    }
    .index-banner__flex{
        height: 136px;
    }
    .index-banner__desc{
        width: calc(100% - 405px);
        max-width: 720px;
        font-size: 27.04px;
        line-height: 30.22px;
    }
    .index-banner__desc img{
        width: 76px;
        height: auto;
    }
    .index-timer{
        width: 405px;
        height: 98px;
        padding-top: 21px;
    }
    .index-timer__num{
        font-size: 43.74px;
        line-height: 44px;
    }
    .index-timer__txt{
        font-size: 8.83px;
        margin-top: 4px;
    }
    .index-timer__dots{
        font-size: 38.09px;
        margin: 0px 18px 0;
    }
}
@media screen and (max-width: 1000px){
    .index-banner{
        margin-top: -51px;
        margin-bottom: -51px;
    }
	.index-banner__img{
		margin-top: 30px;
	}	
    .index-banner__flex{
        height: 100px;
    }
    .index-banner__desc{
        width: calc(100% - 298px);
        max-width: 350px;
        font-size: 20px;
        line-height: 22px;
    }
    .index-banner__desc img{
        width: 56px;
        height: auto;
        margin: 0 15px;
    }
    .index-banner__desc span{
        padding-top: 6px;
    }
    .index-timer{
        width: 298px;
        height: 72px;
        padding-top: 13px;
    }
    .index-timer__num{
        font-size: 32.16px;
        line-height: 33px;
    }
    .index-timer__txt{
        font-size: 6.49px;
        margin-top: 2px;
    }
    .index-timer__dots{
        font-size: 28.01px;
        margin: 0px 14px 0;
    }
}
@media screen and (max-width: 770px){
	.index-banner__img{
		overflow: hidden;
	}	
	.index-banner__img img{
		width: 150%;
	}
    .index-banner{
        margin-top: -88px;
        margin-bottom: -88px;
    }
    
    .index-banner__desc{
        padding: 0;
    }
    .index-banner__desc{
        width: 100%;
        max-width: 250px;
        font-size: 15px;
        line-height: 17px;
    }
    .index-banner__desc img{
        width: 42px;
        margin: 0 10px;
    }
}
@media screen and (max-width: 650px){
	.index-banner__img{
		margin-top: 50px;
		overflow: hidden;
	}	
	.index-banner__img img{
		width: 200%;
	}

    .index-banner__flex{
        height: 178px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 23px 0 0;
    }
    .index-timer{
        margin-top: 20px;
    }
}
@media screen and (max-width: 400px){
    .index-timer{
        width: 243px;
        height: 68px;
    }
    .index-timer__num{
        font-size: 29.91px;
        line-height: 30px;
    }
    .index-timer__txt{
        font-size: 6.04px;
        margin-top: 0px;
    }
    .index-timer__dots{
        font-size: 26.05px;
        margin: 0px 10px 0;
    }
}
/* Index Timer */

/* Index Content */
.index-c{
    padding: 105px 0 60px;
    background: #f5f3f0;
}
.index-c__flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.index-c__headline{
    font-size: 31px;
    font-weight: 700;
    color: #16191e;
}
.index-c__left{
    width: calc(100% - 407px);
}
.news-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 7px;
}
.index-c .news-item{
    width: calc(100% / 3 - 21px);
    margin-right: 30px;
}
.index-c .news-item:nth-child(3n){
    margin-right: 0;
}
.news-item{
    background: #fff;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
}
.news-item__foto{
    width: 100%;
    height: auto;
    display: block;
}
.news-item__headline{
    display: block;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #16191e;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    padding: 24px 28px 48px;
}
.news-item__headline:hover{
    color: #d93a1f;
}
.news-item__statistic{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    color: #404040;
    font-size: 14px;
    padding: 0 28px 0;
}
.news-item__calendar{
    position: relative;
    padding-left: 22px;
    margin-right: 20px;
}
.news-item__calendar:before{
    content: '';
    display: block;
    width: 14px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/calendar-ico.svg);
    background-size: 100% 100%;
}
.news-item__views{
    position: relative;
    padding-left: 23px;
    margin-right: 20px;
}
.news-item__views:before{
    content: '';
    display: block;
    width: 16px;
    height: 11px;
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../img/eye-ico.svg);
    background-size: 100% 100%;
}
.news-item__like{
    position: relative;
    padding-left: 23px;
    margin-right: 20px;
    color: #e31e24;
}
.news-item__like:before{
    content: '';
    display: block;
    width: 16px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 0px;
    background: url(../img/like-ico.svg);
    background-size: 100% 100%;
}
.red-item{
    background: #d93a1f;
}
.news-item__line{
    width: 152px;
    height: 2px;
    background: #fff;
    margin: -2px auto 0;
}
.red-item .news-item__headline{
    color: #fff;
    text-align: center;
}
.red-item .news-item__statistic{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}
.red-item .news-item__like{
    color: #fff;
}
.red-item .news-item__calendar:before{
    background: url(../img/calendar-white-ico.svg);
    background-size: 100% 100%;
}
.red-item .news-item__views:before{
    background: url(../img/eye-white-ico.svg);
    background-size: 100% 100%;
}
.red-item .news-item__like:before{
    background: url(../img/like-white-ico.svg);
    background-size: 100% 100%;
}
.all-news__link{
    width: 100%;
    height: 54px;
    text-align: center;
    background: rgb(84,114,52);
    background: -webkit-gradient(linear, left top, right top, from(rgba(84,114,52,1)), to(rgba(56,72,40,1)));
    background: linear-gradient(90deg, rgba(84,114,52,1) 0%, rgba(56,72,40,1) 100%);
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 54px;
    margin-top: 30px;
    border: none;
}
.all-news__link:hover{
    background: rgb(217,58,31);
}

.index-c__right{
    width: 377px;
    margin-left: 30px;
}
.calendar-events__wrap{
    width: 100%;
    /*height: 521px;*/
    background: #333;
    margin-top: 36px;
    padding-top: 20px;
	padding-bottom: 20px;
    background-size: cover;
}
.calendar-events__info {
	position: relative;
}

.calendar-events__wrap .calendar-events__loading {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: .2;
	background:  url(../img/loader.gif) no-repeat center;
    background-size: cover;
	display: none;
	z-index: 200;
}
.calendar-events__wrap.loading .calendar-events__loading {
	display: block;
}
.calendar-events__wrap.loading .calendar-events__desc {
	opacity: .7;
}
.calendar-events__date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    padding: 0px 44px 0px 44px;
}
.calendar-events__date .num{
    font-size: 68px;
    font-weight: 700;
    color: #d93a1f;
    letter-spacing: -5px;
}
.calendar-events__date .week{
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #d93a1f;
    padding-top: 15px;
    margin-left: 14px;
}
.calendar-events__date .white{
    display: block;
    color: #fff;
}
.calendar-events__desc{
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
    margin: 6px 0 0;
    padding: 0 44px 20px 44px;
    display: block;
}
.calendar-events .ui-widget-content{
    background: transparent;
}
.calendar-events .ui-widget.ui-widget-content{
    width: 100%;
    margin-top: 0px;
}
.calendar-events .ui-datepicker .ui-datepicker-prev,
.calendar-events .ui-datepicker .ui-datepicker-next{
    width: 11px;
    height: 20px;
}
.calendar-events .ui-datepicker .ui-datepicker-prev{
    left: 46px;
	cursor: pointer;
}
.calendar-events .ui-datepicker .ui-datepicker-next{
    right: 46px;
	cursor: pointer;
}
.calendar-events .ui-datepicker .ui-datepicker-header{
    background: transparent;
}
.calendar-events .ui-datepicker .ui-datepicker-title{
    font-size: 16px;
    font-weight: 400;
}
.calendar-events .ui-datepicker table {
    width: auto;
    margin: 10px 36px;
}
.calendar-events .ui-datepicker th {
    color: #fff;
}
.calendar-events .ui-state-default, 
.calendar-events .ui-widget-content .ui-state-default{
    width: 30px;
    height: 30px;
    line-height: 32px;
    border: none;
    background: transparent;
    font-weight: normal;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0 6px;
}
.calendar-events .ui-state-highlight, 
.calendar-events .ui-widget-content .ui-state-highlight{
    background: #d93a1f;
    color: #fff;
}
.calendar-events .ui-state-default:hover, 
.calendar-events .ui-widget-content .ui-state-default:hover{
    background: #6b6d70;
}
.preview-events{
    margin-top: 58px;
}
.preview-events__wrap{
    margin-top: 35px;
}
.preview-events__item{
    width: 100%;
    padding: 25px 50px 39px 23px;
    background: #fff;
    display: block;
    color: #16191e;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.preview-events__item:hover{
    background: rgb(84,114,52);
    background: -webkit-gradient(linear, left top, right top, from(rgba(84,114,52,1)), to(rgba(56,72,40,1)));
    background: linear-gradient(90deg, rgba(84,114,52,1) 0%, rgba(56,72,40,1) 100%);
}
.preview-events__text{
    position: relative;
    z-index: 2;
}
.preview-events__decor{
    width: 80px;
    height: 117px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../img/previews-event-decor.png);
    z-index: 1;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.preview-events__item:hover .preview-events__decor{
    background: url(../img/previews-event-decor-hover.png);
    background-size: 100% 100%;
}
.preview-events__date{
    color: #d93a1f;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.preview-events__item:hover .preview-events__date{
    color: #fff;
}
.preview-events__date b{
    font-size: 36px;
    font-weight: 700;
}
.preview-events__name{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    display: block;
    margin-top: 10px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.preview-events__item:hover .preview-events__name{
    color: #fff;
}
.all-previews-evets__link{
    width: 100%;
    height: 54px;
    text-align: center;
    background: rgb(84,114,52);
    background: -webkit-gradient(linear, left top, right top, from(rgba(84,114,52,1)), to(rgba(56,72,40,1)));
    background: linear-gradient(90deg, rgba(84,114,52,1) 0%, rgba(56,72,40,1) 100%);
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 54px;
    margin-top: 20px;
    border: none;
}
.all-previews-evets__link:hover{
    background: rgb(217,58,31);
}

.index-project{
    /*width: calc(100% - 407px);*/
    /*margin-top: -482px;*/
}
.index-project__slider{
    margin-top: 33px;
    margin-bottom: 42px;
}
.index-project__slider .slick-list{
    width: calc(100% + 30px);
    margin-left: -15px;
}
.index-project__item{
    position: relative;
    background-position: center;
    background-size: cover;
    display: block;
    margin: 0 15px;
}
.index-project__item-flex{
    width: 100%;
    height: 394px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}
.index-project__decor{
    width: 115px;
    height: 133px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../img/index-project-star.png);
    z-index: 2
}
.index-project__hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(217, 58, 31, 0.7);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.index-project__item:hover .index-project__hover{
    opacity: 1;
}
@media screen and (max-width: 1500px){
    .index-c .news-item{
        width: calc(50% - 15px);
    }
    .index-c .news-item:nth-child(3n){
        margin-right: 30px;
    }
    .index-c .news-item:nth-child(2n){
        margin-right: 0;
    }
    .index-project{
        width: 100%;
        margin-top: 30px;
    }
}
@media screen and (max-width: 1200px){
    .index-c{
        padding: 89px 0 60px;
    }
}
@media screen and (max-width: 1100px){
    .index-c .news-item{
        width: 100%;
        margin-right: 0;
    }
    .index-c .news-item:nth-child(3n){
        margin-right: 0px;
    }
    .index-news .hide-1024{
        display: none;
    }
}
@media screen and (max-width: 1000px){
    .index-c{
        padding: 71px 0 60px;
    }
    .index-c__left{
        width: calc(100% - 366px);
    }
    .index-c__headline{
        font-size: 30px;
        margin-top: 14px;
    }
    .news-flex{
        margin-top: 0;
    }
    .news-item{
        margin-top: 20px;
    }
    .news-item__headline{
        font-size: 22px;
        line-height: 26px;
    }
    .index-c__right{
        width: 336px;
    }
    .calendar-events__wrap{
        /*height: 480px;*/
        margin-top: 19px;
    }
    .calendar-events__date{
        padding: 0 25px;
    }
    .calendar-events__desc{
        font-size: 23px;
        line-height: 26.7px;
        padding: 0 25px;
		padding-bottom: 15px;
    }
    .preview-events{
        margin-top: 44px;
    }
    .preview-events__wrap{
        margin-top: 26px;
    }
    .preview-events__item{
        padding: 18px 50px 30px 23px;
    }
    .preview-events__decor{
        width: 72px;
        height: 104px;
        background-size: 100% 100%;
    }
    .index-project__item-flex{
        height: 351px;
    }
    .calendar-events .ui-datepicker .ui-datepicker-prev{
        left: 30px;
    }
    .calendar-events .ui-datepicker .ui-datepicker-next{
        right: 30px;
    }
    .calendar-events .ui-datepicker table {
        margin: 10px 14px;
    }
}
@media screen and (max-width: 770px){
    .index-c{
        padding: 88px 0 60px;
    }
}
@media screen and (max-width: 700px){
    .index-c{
        padding-bottom: 40px;
    }
    .index-c__headline{
        font-size: 22px;
    }
    .index-c__flex{
        display: block;
    }
    .index-c__left{
        width: 100%;
    }
    .index-news{
        margin-top: 35px;
    }
    .news-flex{
        max-width: 450px;
        margin: 0 auto;
    }
    .news-item__headline{
        font-size: 20px;
        line-height: 24px;
    }
    .all-news__link{
        margin-top: 20px;
    }
    .index-c__right{
        width: 100%;
        margin-left: 0;
    }
    .calendar-events{
        margin-top: 30px;
    }
    .calendar-events__wrap{
        max-width: 377px;
        margin: 17px auto 0;
    }
    .calendar-events__date{
        padding: 0;
    }
    .calendar-events__desc{
        font-size: 20px;
        line-height: 24px;
        padding: 0 0px;
    }
    .calendar-events__info{
        max-width: 255px;
        margin: 0px auto 0;
    }
    .preview-events__wrap{
        margin-top: 17px;
    }
    .preview-events__item{
        padding: 20px 25px 30px 23px;
    }
    .preview-events__name{
        font-size: 16px;
        line-height: 20px;
    }
    .index-project__slider{
        margin-top: 20px;
    }
    .index-project__item-flex{
        height: 292px;
        font-size: 20px;
        line-height: 24px;
    }
    .calendar-events .ui-datepicker table {
        margin: 10px auto;
    }
    .calendar-events .ui-state-default, .ui-widget-content .calendar-events .ui-state-default{
        margin: 0 3px;
    }
}

@media screen and (max-width: 1000px){
    
}
@media screen and (max-width: 700px){
    
}
/* Index Content */


/* Inner page */
.breadcrumb{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
    padding-top: 26px;
}
.breadcrumb__link{
    color: #000;
    text-decoration: none;
    letter-spacing: 0.6px;
}
.breadcrumb__link:after{
    content: '•';
    margin: 0 18px;
}
.breadcrumb__stat{
    color: #8b909d;
}

.inner-bg{
    background: #f5f3f0;
}
.inner-width{
    width: 100%;
    max-width: 1238px;
    margin: 0 auto;
}
.inner-content{
    font-size: 20px;
    color: #000;
    padding: 36px 30px 42px;
}
.inner-content p{
    margin-top: 28px;
    line-height: 29px;
}
.inner-content a{
    color: #d93a1f;
    text-decoration: none;
    /*display: inline-block;*/
}
.inner-content img.long{
    max-width: 100%; 
    height: auto;
}
.inner-content ul,
.inner-content ol{
    padding: 20px 0;
    margin-top: 0;
    list-style-position: inside;
    line-height: 29px;
	margin-left: 20px;
}
.table-scroll{
    margin-top: 35px;
    overflow-x: auto;
}
.inner-content table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}
.inner-content tr:nth-child(2n+1) td{
    background: #f4f3ef;
}
.inner-content table.compact tr:nth-child(2n+1) td{
    background: #fff;
}
.inner-content th{
    font-size: 16px;
    text-align: center;
    border: 1px solid #b7b9af;
    padding: 6px 10px 3px;
    line-height: 27px;
    background: #e0e1db;
}
.inner-content table.compact th{
	padding: 5px;
    line-height: 16px;
}
.inner-content td{
    font-size: 16px;
    border: 1px solid #dfe0da;
    padding: 17px 44px 13px;
    line-height: 27px;
}
.inner-content table.compact td{
	padding: 5px;
    line-height: 16px;
}
.inner-content td.center{
    text-align: center;
}
.inner-content td p,.inner-content th p{
    font-size: 16px;
	line-height: 27px;
	margin: 0px;
	padding: 5px 0px;
}
.inner-content table.compact td p,.inner-content table.compact th p{
    line-height: 16px;
}

@media screen and (max-width: 1024px){
    .inner-content{
        padding-bottom: 51px;
    }
    .breadcrumb{
        display: none;
    }
}
@media screen and (max-width: 760px){
    .inner-content{
        font-size: 17px;
        padding: 4px 20px 30px;
    }
    .inner-content p{
        line-height: 26px;
        margin: 10px 0 20px;
    }
    .inner-content th{
        font-size: 14px;
        line-height: 26px;
    }
    .inner-content td{
        font-size: 14px;
        line-height: 17px;
        line-height: 26px;
    }
    .table-scroll{
        margin-top: 30px;
    }
}
@media screen and (max-width: 600px){
    .inner-content ul,
    .inner-content ol{
        padding: 10px 0 0;
    }
    .table-scroll{
        margin-top: 20px;
    }
}
/* Inner page */

/* Article Page */
.article__date{
    font-size: 16px;
    color: #9f9f9f;
    padding: 0;
}
.article__foto{
    width: 100%;
    height: auto;
    display: block;
    margin: 37px 0 0;
}
p.article__foto-description{
    color: #636363;
    font-size: 16px;
    line-height: 24px;
    margin: 13px 0 40px;
    padding: 0;
}
.article__gallery{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 37px 0 28px;
	flex-wrap: wrap;
}
.article__gallery-item{
    width: calc(100% / 4 - 24px);
    margin-right: 24px;
    margin-bottom: 24px;
}
.article__gallery-item:last-child{
    margin-right: 0;
}
.article__gallery-foto{
    position: relative;
    cursor: pointer;
}
.article__gallery-foto img{
    width: 100%;
    height: auto;
    display: block;
}
.article__gallery-foto .hover{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    opacity: 0;
}
.article__gallery-foto .hover:hover{
    opacity: 1;
}
.article__gallery-foto .zoom-ico{
    width: 36px;
    height: 36px;
    background: url(../img/plus-white-ico.svg);
    background-size: 36px 36px;
}
p.article__gallery-description{
    font-size: 16px;
    line-height: 24px;
    margin: 6px 0 0;
    color: #000;
}
@media screen and (max-width: 1300px){
    .article__gallery-item{
        width: calc(100% / 3 - 21px);
        margin-right: 21px;
        margin-bottom: 21px;
    }
}
@media screen and (max-width: 760px){
    .article__date{
        font-size: 16px;
    }
    .article__foto-description{
        font-size: 13px;
        line-height: 18px;
    }
    .article__gallery-description{
        font-size: 13px;
        line-height: 18px;
    }
    .article__gallery{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }
    .article__gallery-item{
        width: 100%;
        max-width: 400px;
        margin-right: 0;
        margin-top: 15px;
    }
}
/* Article Page */

/* Form Page */
.inner-content .form-txt{
    font-size: 19px;
    line-height: 27px;
    max-width: 650px;
    margin-top: 26px;
}
.form-wrap{
    width: 100%;
    margin-top: 28px;
    /*max-width: 753px;*/
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;*/
    margin-bottom: 50px;
}
.form-wrap .input-wrap{
    position: relative;
    margin-bottom: 13px;
}
.form-wrap input[type=text],.form-wrap input[type=email],.form-wrap input[type=file]{
    width: 100%;
    line-height: 38px;
    background: #fff;
    padding-left: 17px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    border: none;
    outline: none;
	margin-top: 5px;
}
.form-wrap input[type=text].error{
    color: #d24c75;
    box-shadow: inset 0 0 0 2px #d24c75;
}
.form-wrap textarea{
    width: 100%;
    height: 184px;
    background: #fff;
    padding:10px 0 0 17px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    border: none;
    outline: none;
    margin-bottom: 0px;
}
.form-wrap textarea.error{
    color: #d93a1f;
    box-shadow: inset 0 0 0 2px #d93a1f;
}
.form-wrap input[type=text].error::-webkit-input-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #d93a1f;
}
.form-wrap input[type=text].error::-moz-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #d93a1f;
}
.form-wrap input[type=text].error:-ms-input-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #d93a1f;
}
.form-wrap input[type=text].error:-moz-placeholder,
.form-wrap textarea.error::-webkit-input-placeholder{
    color: #d93a1f;
}
p.form__error-txt{
    text-align: right;
    color: #d93a1f;
    font-size: 13px;
    margin: 5px 0 0;
    padding: 0;
}
.form-wrap input[type=submit]{
    width: 161px;
    height: 42px;
    color: #fff;
    outline: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: #d93a1f;
    border: none;
}
.form-wrap input[type=submit]:hover{
    background: #516d33;
}
.form-wrap .clean-input{
    width: 15px;
    height: 15px;
    position: absolute;
    display: none;
    top: 12px;
    right: 15px;
    background: url(../img/close-ico.png);
    background-size: 100% 100%;
    cursor: pointer;
}
@media screen and (max-width: 750px){
    .inner-content .form-txt{
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 500px){
    .form-wrap input[type=submit]{
        margin-top: 15px;
    }
}
/* Form Page */


/* News Page */
.news__filter{
    margin-top: 33px;
    max-width: 1192px;
}
.news__filter_flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news__filter_flex:last-child{
    margin-bottom: 30px;
}
.news__filter-search{
    width: calc(100% - 407px);
    position: relative;
    margin-right: 10px;
}
.news__filter-search-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.news__filter-search-btn svg{
    width: 16px;
    height: 16px;
    fill: #9f9f9f;
}
.news__filter input[type=text]{
    width: 100%;
    height: 41px;
    background: #fff;
    padding: 0 5px 0 16px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    border: none;
    outline: none;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.news__filter-calendar{
    position: relative;
    width: 184px;
    margin-right: 10px;
}
.news__filter-calendar-ico{
    width: 19px;
    height: 19px;
    background: url(../img/calendar-news.svg);
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    z-index: 5;
    cursor: pointer;
    outline: none;
    border: none;
    position: absolute;
    top: 11px;
    right: 15px;
}
.news__filter-calendar-input:focus{
    box-shadow: inset 0 0 0 1px #d93a1f;
}
.news__filter-calendar-input:focus + .news__filter-calendar-ico{
    background: url(../img/calendar-news-hover.svg);
}
.news__filter-them{
    background: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
}
.news__filter-them:last-child{
    margin-right: 0;
}
.news__filter-them input[type=checkbox]{
    display: none;
}
.news__filter-them label{
    height: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #9f9f9f;
    padding: 0 16px;
}
.news__filter-them input[type=checkbox]:checked + label{
    color: #16191e;
}
.news__filter-them label span{
    position: relative;
    padding-left: 18px;
}
.news__filter-them label span:before{
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 1px solid #9f9f9f;
    background: #fff;
}
.news__filter-them input[type=checkbox]:checked + label span:before{
    background: url(../img/checkbox-ico.png) center no-repeat #fff;
    background-size: 7px 7px;
    border-color: #16191e;
}
.filter-btn{
    width: 161px;
    height: 41px;
    text-align: center;
    color: #ffffff;
    background: #d93a1f;
    font-size: 14px;
    padding: 7px 12px 7px 12px;
    margin: 0px 10px 0px 0;
    cursor: pointer;
    font-weight: 700;
    line-height: 27px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    border: none;
    text-transform: uppercase;
}
.filter-btn:last-child{
    margin-right: 0;
}
.filter-btn:hover{
    background: #516d33;
}
.news-page .news-item{
    width: calc(25% - 22.5px);
    margin-right: 30px;
}
.news-page .news-item:nth-child(4n){
    margin-right: 0;
}
.news-page .news-item__headline{
    color: #16191e;
}
.news-page .red-item .news-item__headline{
    color: #fff;
}
.pagination-page{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 60px 0 0!important;
    padding: 0!important;
}
.pagination-page a{
    display: block;
    width: 31px;
    height: 29px;
    font-size: 18px;
    text-align: center;
    color: #16191e;
    line-height: 29px;
    text-decoration: none;
    margin: 0 5px;
}
.pagination-page a.active{
    background: #516d33;
    color: #fff;
}
@media screen and (max-width: 1400px){
    .news-page .news-item{
        width: calc(100% / 3 - 20px);
    }
    .news-page .news-item:nth-child(4n){
        margin-right: 30px;
    }
    .news-page .news-item:nth-child(3n){
        margin-right: 0px;
    }
}
@media screen and (max-width: 950px){
    .news-page .news-item{
        width: calc(50% - 15px);
    }
    .news-page .news-item:nth-child(3n){
        margin-right: 30px;
    }
    .news-page .news-item:nth-child(2n){
        margin-right: 0px;
    }
}
@media screen and (max-width: 900px){
    .news__filter{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .news__filter-search{
        width: 100%;
        max-width: none;
        margin-right: 0;
    }
    .news__filter-calendar{
        width: calc(50% - 5px);
        margin: 10px 0 0;
    }
    .news__filter-calendar:nth-child(3){
        margin-left: 10px;
    }
    .filter-btn{
        width: calc(50% - 5px);
        margin: 0px 10px 0 0;
    }
    .filter-btn:last-child{
        margin-right: 0;
    }
}
@media screen and (max-width: 700px){
    .news__filter_flex{
        margin-bottom: 20px;
    }
    .news-page .news-item{
        width: 100%;
        margin-right: 0;
    }
    .news-page .news-item:nth-child(4n),
    .news-page .news-item:nth-child(3n){
        margin-right: 0px;
    }
}
@media screen and (max-width: 450px){
    .pagination-page{
        margin: 30px 0 0!important;
    }
    .pagination-page .hide-450{
        display: none;
    }
    .news__filter-them{
        width: calc(50% - 5px);
    }
    .news__filter-them:nth-child(2n){
        margin-right: 0;
    }
}
/* News Page */

/* Document Page */
.document-filter{
    margin-top: 32px;
}
.document-filter__input{
    width: 100%;
    height: 41px;
    font-size: 16px;
    padding-left: 18px;
    background: #fff;
    color: #16191e;
    border: none;
}
.document-filter__flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.document-filter__flex.bottom{
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 5px;
}
.document-filter__number{
    margin-top: 4px;
    width: calc(100% - 388px);
}
.document-filter__desc{
    font-size: 20px;
    font-weight: 700;
    margin-bottom:11px;
}
.document-filter__data{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
}
.document-filter__data-item{
    position: relative;
    width: 184px;
    margin-right: 10px;
}
.document-filter__data-item:last-child{
    margin-right: 0;
}
.document-filter__data-input{
    width: 100%;
    height: 41px;
    background: #fff;
    padding: 0 5px 0 16px;
    font-size: 16px;
    color: #16191e;
    border: none;
    outline: none;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.document-filter__data-input:focus {
    box-shadow: inset 0 0 0 1px #d93a1f;
}
.document-filter__data-ico{
    width: 19px;
    height: 19px;
    background: url(../img/calendar-news.svg);
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    z-index: 5;
    cursor: pointer;
    outline: none;
    border: none;
    position: absolute;
    top: 11px;
    right: 15px;
}
.document-filter__data-input:focus + .document-filter__data-ico{
    background: url(../img/calendar-news-hover.svg);
}
.document-filter__checkbox{
    margin-right: 99px;
}
.document-filter__checkbox:last-child{
    margin-right: 0;
}
.checkbox-input{
    margin-bottom: 4px;
}
.checkbox-input:last-child{
    margin-bottom: 0;
}
.checkbox-input input{
    display: none;
}
.checkbox-input label{
    display: block;
    position: relative;
    font-size: 20px;
    padding-left: 30px;
}
.checkbox-input label:before{
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #9f9f9f;
    border-radius: 1px;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    box-sizing: border-box;
}
.checkbox-input input:checked + label:before{
    background: url(../img/checkbox-ico.png) center no-repeat #fff;    
}
.select-wrap{
    width: 100%;
    max-width: 377px;
    position: relative;
}
.select-wrap select{
    width: 100%;
    height: 41px;
    background: #fff;
    font-size: 16px;
    border: none;
    border-radius: 0px;
    padding-left: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select-wrap .select-arrow{
    width: 13px;
    height: 7px;
    background: url(../img/select-arrow.png);
    position: absolute;
    top: 19px;
    right: 17px;
    z-index: 2;
}
.document-filter__btn{
    width: 161px;
    height: 42px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #d93a1f;
    border: none;
    margin-top: 41px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    cursor: pointer;
}
.document-filter__btn:hover{
    background: #516d33;
}
.document-wrap{
    background: #fff;
}
.document-item{
    padding: 27px 0 32px;
    border-top: 1px solid #dfe1da;
}
.document-item:first-child{
    border-top: none;
}
.document-name{
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
    color: #16191e;
}
.document-name__ico{
    width: 36px;
    height: 41px;
    display: block;
    margin: 7px 19px 0 0;
}
.document-name__ico.doc{
    background: url(../img/doc-ico.svg);
    background-size: 100% 100%;
}
.document-name__ico.pdf{
    background: url(../img/pdf-ico.svg);
    background-size: 100% 100%;
}
.document-name__txt{
    color: #16191e;
    width: calc(100% - 55px);
}
.document-description{
    font-size: 20px;
    line-height: 29px;
    margin-top: 12px;
    display: block;
    margin-bottom: 11px;
}
.document-info{
    font-size: 20px;
    line-height: 29px;
    display: block;
}
.document-info b{
    font-weight: 700;
}
@media screen and (max-width: 760px){
    .document-filter__desc{
        font-size: 18px;
    }
}
@media screen and (max-width: 700px){
    .document-filter__desc{
        margin: 20px 0 10px!important;
    }
    .document-filter__number{
        width: 100%;
        max-width: 378px;
    }
    .document-filter__flex{
        display: block;
    }
    .document-filter__data{
        margin-left: 0;
        margin-top: 10px;
    }
    .checkbox-input label{
        font-size: 16px;
    }
    .checkbox-input label:before{
        top: 1px;
    }
    .document-name{
        font-size: 18px;
        line-height: 22px;
    }
    .document-name__ico{
        margin-top: 2px;
    }
    .document-description{
        font-size: 16px;
        line-height: 20px;
    }
    .document-info{
        font-size: 16px;
        line-height: 22px;
    }
    .document-filter__data-ico{
        right: 6px;
    }
    .document-filter__checkbox{
        margin-right: 0;
    }
    .document-filter__btn{
        margin-top: 20px;
    }
}
@media screen and (max-width: 400px){
    .document-filter__desc{
        font-size: 16px;
        line-height: normal!important;
    }
    .select-wrap .select-arrow{
        right: 7px;
    }
    .document-name{
        display: block!important;
    }
    .document-name__ico{
        margin: 0px 0 4px;
    }
}
/* Document Page */


/* Member Page */
.inner-content .member-txt{
    margin-top: 55px;
}
.inner-content .member-inv__btn{
    width: 260px;
    height: 42px;
    background: #516d33;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 42px;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
	display: block;
}
.member-inv__btn:hover{
    background: #d93a1f;
}
.member-search__flex{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
}
.member-search__name{
    width: calc(60% - 102px);
    margin-right: 40px;
}
.member-search__study{
    width: calc(40% - 102px);
    margin-left: 40px;
}
.member-search__name .label,
.member-search__year .label,
.member-search__study .label{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.member-search__inp{
    width: 100%;
    height: 41px;
    background: #fff;
    padding: 0 0 0 16px;
    font-size: 16px;
    color: #16191e;
    border: none;
    outline: none;    
}
.member-search__btn{
    width: 161px;
    height: 42px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #d93a1f;
    border: none;
    margin-top: 31px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    cursor: pointer;
}
.member-search__btn:hover{
    background: #516d33;
}
.member-wrap{
    background: #fff;
}
.inner-content a.member-item{
	color: #000;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 20px 0;
    border-top: 1px solid #dfe1da;
}
.inner-content a.member-item:first-child{
    border-top: none;
}
.member-foto{
    width: 194px;
    overflow: hidden;
}
.member-foto img{
    width: 100%;
    height: auto;
    display: block;
}
.member-description{
    width: calc(100% - 238px);
    margin-left: 44px;
    padding-bottom: 40px;
}
.member-name{
    font-size: 27px;
    font-weight: 700;
}
.member-info{
    margin-top: -9px;
    font-size: 20px;
    line-height: 24px;
}
.member-info p{
    margin: 4px 0 0;
    line-height: normal;
}
.member-info b{
    font-weight: 700;
}
.member-info .red{
    color: #d93a1f;
}
.member-show-all{
    width: 100%;
    height: 54px;
    text-align: center;
    background: rgb(84,114,52);
    background: -webkit-gradient(linear, left top, right top, from(rgba(84,114,52,1)), to(rgba(56,72,40,1)));
    background: linear-gradient(90deg, rgba(84,114,52,1) 0%, rgba(56,72,40,1) 100%);
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: none;
    font-weight: 700;
    line-height: 54px;
    margin-top: 20px;
}
.member-show-all:hover{
    background: rgba(217,58,31,1);
}
@media screen and (max-width: 1100px){
    .member-search__name{
        width: calc(50% - 102px);
        margin-right: 40px;
    }
    .member-search__study{
        width: calc(50% - 102px);
        margin-left: 40px;
    }
    .member-search__name .label,
    .member-search__year .label,
    .member-search__study .label{
        font-size: 18px;
    }
}
@media screen and (max-width: 760px){
    .inner-content .member-txt{
        margin-top: 30px;
    }
    .member-search__flex{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .member-search__name{
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .member-search__study{
        width: calc(100% - 160px);
    }
    .member-foto{
        width: 150px;
    }
    .member-description{
        width: calc(100% - 175px);
        margin-left: 25px;
        padding-bottom: 20px;
    }
    .member-name{
        font-size: 22px;
    }
    .member-info{
        font-size: 18px;
    }
}
@media screen and (max-width: 500px){
    .member-search__study{
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
    .inner-content a.member-item{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .member-description{
        margin-left: 0;
        width: 100%;
        padding-bottom: 0;
    }
    .member-name{
        text-align: center;
        font-size: 20px;
    }
    .member-info{
        font-size: 16px;
    }
}
/* Member Page */


/* Involvement Page */
.involvement-wrap h3{
    font-size: 20px;
    color: #000;
    margin-top: 35px;
}
.involvement-form{
    margin-top: 27px;
}
.involvement-input{
    margin-bottom: 14px;
}
.involvement-input:last-child{
    margin-bottom: 0;
}
.involvement-label{
    font-size: 20px;
    color: #333333;
    display: block;
    margin-bottom: 13px;
}
.involvement-input input{
    width: 100%;
    height: 42px;
    background: #fff;
    border: none;
    padding-left: 15px;
    font-size: 16px;
}
.involvement-desc{
    margin-top: 24px;
}
.involvement-desc p{
    margin: 0 0 15px;
}
.involvement-desc p a{
    display: inline;
}
.involvement__file-upload{
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 41px;
    margin-top: -5px;
    padding: 3px;
}
.involvement__file-upload input[type="file"]{
    display: none;
}
.involvement__file-upload_btn{
    width: 158px;
    height: 35px;
    display: block;
    font-size: 14px;
    background: #dfe1da;
    text-align: center;
    color: #000;
    line-height: 35px;
    cursor: pointer;
    margin-right: 18px;
}
.involvement__file-upload_text{
    font-size: 16px;
    width: calc(100% - 176px);
}
.involvement-submit{
    width: 161px;
    height: 42px;
    background: #d93a1f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    margin-top: 50px;
    text-transform: uppercase;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.involvement-submit:hover{
    background: #516d33;
}
@media screen and (max-width: 760px){
    .involvement-label{
        font-size: 18px;
    }
}
@media screen and (max-width: 500px){
    .involvement-label{
        font-size: 16px;
    }
    .involvement__file-upload{
        padding: 3px 3px 10px 3px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .involvement__file-upload label{
        width: 100%;
    }
    .involvement__file-upload_btn{
        width: 100%;
    }
    .involvement__file-upload_text{
        width: 100%;
        margin-top: 10px;
        padding-left: 6px;
    }
}
/* Involvement Page */

/* FAQ */

.toogle_wrap_1{
    
}
.toogle_wrap_1.marg_top_1{
    margin-top: 55px;
}
.toogle_wrap_1 .item{
    border-top: 1px solid #c0ced8;
    padding: 35px 0;
    position: relative;
}
.toogle_wrap_1 .item:last-child{
    border-bottom: 1px solid #c0ced8;
}
.toogle_wrap_1 .txt-1{
    font-size: 18px;
	font-weight: 700;
    color: #000000;
    float: left;
    width: calc(100% - 100px);
	margin: 0px;
	line-height: initial;
}
.toogle_wrap_1 .quest_control{
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: url(../img/quest_ico_1_1.png) no-repeat center;
    position: absolute;
    right: 0px;
    top: 50%;
    top: 22px;
}
.toogle_wrap_1 .quest_control:hover{
    background: url(../img/quest_ico_1_2.png) no-repeat center;
}
.toogle_wrap_1 .item .hide_items p{
    font: 20px 'PTSans';
    color: #000000;
	margin: 0px;
    margin-bottom: 18px;
	line-height: initial;
}
.toogle_wrap_1 .item .hide_items p:last-child{
    margin-bottom: 0px;
}
.toogle_wrap_1 .hide_items{
    margin-top: 30px;
    display: none;
}

.toogle_wrap_1 .item.active .quest_control{
    background: url(../img/quest_close.png) no-repeat center;
    top: 40px;
}
.toogle_wrap_1  .clear {
	clear: both;
}

.table-wrap {
	overflow-x: scroll;
}
.table-wrap>span {
	font-size: 11px;
	color: #999999;
}

.dragscroll { 
	cursor: -webkit-grab; 
	cursor: -moz-grab; 
	cursor: -o-grab; 
	cursor: grab; 
}

.right-ban {
	padding-top: 40px;
}
.right-ban img {
	width: 100%;
	height: auto;
}

/* callback */

#mask {
    position:absolute;
    left:0;
    top:0;
    z-index:9000;
    background-color:#000;
    display:none;
}
  
.window {
    position:absolute;
    left:0;
    top:0;
    width:440px;
    height:350px;
    display:none;
    z-index:9998;
    padding:20px;
	background-color:#f5f3f0;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}  
.window h2 {
	padding-bottom: 20px;
    font: 17px PTSans;
}
.window p {
    font: 17px PTSans;
}
.window input[type=text] {
	width: 400px;
}
#callbackresult {
	padding-top: 40px;
}
#callbacktext {
	display: block;
	height: 60px;
	overflow: auto;
	padding: 12px;
	background: #fff;
}
div.close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 9999;
    background-image: url("../img/fancybox_sprite.png");
}
.ctrl-enter {
	text-align: center;
	padding: 20px;
	background: #516d33;
	color: #fff;
}
#ctrl-enter {
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}



/* New Style */
/* Post Page */
.header .breadcrumb{
    margin-top: -39px;
    padding-top: 0;
}
.header .breadcrumb__link{
    color: #fff;
}
.header-banner__head{
    font-size: 92px;
    color: #fff;
    font-weight: 700;
    line-height: 92px;
    margin: -10px 0 0;
    padding-left: 30px;
}
.header-banner__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 56px;
}
.header-banner__btn{
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 25px;
    background: rgba(0,0,0,.5);
    margin: 0 0 0 10px;
}
.header-banner__btn:first-child{
    margin-left: 0;
}
.header-banner__btn.white{
    background: #fff;
    color: #000;
}
.header-banner__btn b{
    color: #d93a1f;
    display: inline-block;
}
.post-c{
    background: #fff;
    padding-top: 102px;
}
.inner-content .post-more{
    font-size: 12px;
    color: #d93a1f;
    font-weight: 700;
    text-transform: uppercase;
    margin: -10px 0 50px;
    display: block;
}
.post-region__flex{
    width: calc(100% + 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 34px -5px 0;
}
.inner-content .post-region__item{
    width: calc(100% / 6 - 10.1px);
    height: 42px;
    margin: 0 5px 10px;
    font: 14px 'Arial';
    background: url(../img/post-region.jpg) center right no-repeat #f5f3f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 22px;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    color: #231f20;
}
.inner-content .post-region__item:hover{
    background-image: url(../img/post-region-hover.jpg);
    color: #fff;
}

.post-news{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: -20px;
}
.post-news .news-item__headline{
    color: #16191e;
}
.post-news .news-item__headline:hover{
    color: #d93a1f;
}
.all-news__link.post{
    color: #fff;
    margin-top: 40px;
}
@media screen and (max-width: 1500px){
    .header-banner__head{
        font-size: 70px;
        line-height: 70px;
    }
}
@media screen and (max-width: 1400px){
    .header-banner__head{
        font-size: 65px;
        line-height: 65px;
        margin-top: 0;
    }
    .post-banner .index-banner__flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header-banner__right{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        padding-right: 20px;
    }
    .news-item.post-news-hide{
        display: none;
    }
}
@media screen and (max-width: 1200px){
    .post-c{
        padding-top: 80px;
    }
    .post-banner .index-banner__flex{
        height: 171px;
    }
}
@media screen and (max-width: 1300px){
    .inner-content .post-region__item{
        width: calc(20% - 10.1px);
    }
}
@media screen and (max-width: 1150px){
    .inner-content .post-region__item{
        width: calc(25% - 10.1px);
    }
}
@media screen and (max-width: 1000px){
    .post-c{
        padding-top: 50px;
    }
    .header-banner__head{
        font-size: 45px;
        line-height: 45px;
    }
    .inner-content .post-more{
        margin-bottom: 30px;
    }
    .post-region__flex{
        margin-top: 20px;
    }
    .inner-content .post-region__item{
        width: calc(100% / 3 - 10.1px);
    }
}
@media screen and (max-width: 950px){
    .news-item.post-news-hide{
        display: block;
    }
}
@media screen and (max-width: 800px){
    .post-c{
        padding-top: 90px;
    }
    .post-banner .index-banner__flex{
        height: auto;
        padding: 20px 0;
    }
    .header-banner__right{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header-banner__btn{
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}
@media screen and (max-width: 700px){
    .inner-content .post-region__item{
        width: calc(50% - 10.1px);
    }
}
@media screen and (max-width: 500px){
    .inner-content .post-region__item{
        width: calc(100% - 10.1px);
    }
}
/* Post Page */

/* Education Page */
.education-select{
    margin-top: 50px;
    margin-bottom: 64px;
}
.education-select__item{
    width: 100%;
    background: #fff;
    padding: 9px 13px 12px 20px;
    margin-bottom: 2px;
}
.education-select__item.show{
    background: #e9eae5;
}
.education-select__btn{
    font-size: 27px;
    font-weight: 700;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}
.education-select__btn .text{
    width: calc(100% - 35px);
}
.education-select__btn .arrow{
    width: 13px;
    height: 7px;
    background: url(../img/select-arrow.png);
    margin-top: 13px;
    margin-left: auto;
}
.show .education-select__btn .arrow{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.education-select__txt{
    margin-top: -12px;
    display: none;
    padding-right: 17px;
}
.education-select__txt p:last-child{
    margin-bottom: 14px;
}
@media screen and (max-width: 1200px){
    .education-select{
        margin-top: 0;
    }
    .education-select__btn{
        font-size: 22px;
    }
    .education-select__btn .arrow{
        margin-top: 11px;
    }
}
@media screen and (max-width: 760px){
    .education-select__txt{
        margin-top: 0;
    }
    .education-select__txt p:last-child{
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 600px){
    .education-select__btn{
        font-size: 18px;
    }
    .education-select__btn .arrow{
        margin-top: 9px;
    }
}
/* Education Page */

/* Lenta Page */
.lenta-page{
    padding-bottom: 60px;
}
.lenta-slider{
    margin: 53px 0 0px;
    padding-bottom: 5px;
	display: none;
}
.main-lenta {
	margin: 130px auto -100px auto;
}
.lenta-slider .slick-prev, 
.lenta-slider .slick-next{
    width: 40px;
    height: 27px;
    background: url(../img/calendar-slick-next.png);
    top: 140px;
}
.lenta-slider .slick-prev:hover, 
.lenta-slider .slick-next:hover{
    background: url(../img/calendar-slick-next.png);
}
.lenta-slider .slick-list{
    overflow: visible;
}
.lenta-item{
    width: 295px;
    display: block;
    text-align: center;
}
.lenta-item__foto{
    width: 295px;
    height: 273px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.lenta-item__foto .decor{
    width: 295px;
    height: 273px; 
    background: url(../img/calendar-lenta.png);
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 2;
    -webkit-transition: background linear .2s;
    transition: background linear .2s;
}
.lenta-item:hover .lenta-item__foto .decor{
    background: url(../img/calendar-lenta-hover.png);
}
.lenta-item__foto img{
    width: auto;
    height: 189px;
    opacity: 0.9;
    -webkit-transition: opacity linear .2s;
    transition: opacity linear .2s;
}
.lenta-item:hover .lenta-item__foto img{
    opacity: 1;
}
.lenta-item__name{
    padding: 0 10px;
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #000;
    text-align: center;
    margin-top: 16px;
    -webkit-transition: color linear .2s;
    transition: color linear .2s;
}
.lenta-item:hover .lenta-item__name{
    font-weight: 700;
    color: #516c33;
}
.lenta-item__date{
    padding: 0 10px;
    display: block;
    font-size: 14px;
    color: #808285;
    text-align: center;
    margin-top: 5px;
}
@media screen and (max-width: 1024px){
    .lenta-slider{
        margin: 33px 0 0px;
    }
}
@media screen and (max-width: 768px){
    .lenta-slider{
        margin: 0px 0 0px;
    }
}
/* Lenta Page */

@media screen and (max-width: 750px){
    .top-line__logo{
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
}
@media screen and (max-width: 770px){
    .index-banner {
        margin-top: -40px;
        margin-bottom: -55px;
    }
}
@media screen and (max-width: 700px){
    .index-banner {
        margin-bottom: -85px;
    }
}
@media screen and (max-width: 650px){
    .banner__flex {
        height: 100px;
    }
}


@media screen and (min-width: 1021px){

nav.nav_white {
	background: #f2f2f2;
}
nav.nav_white .nav li a {
	color: #16191e;
}

}





.project-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: wrap;
}

.project-item{
    position: relative;
    background-position: center;
    background-size: cover;
    display: block;
    margin: 0px 15px 30px 15px;
	width: calc(100% / 4 - 30px);
}
.project-item-flex{
    width: 100%;
    height: 394px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}
.project-decor{
    width: 115px;
    height: 133px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../img/index-project-star.png);
    z-index: 2
}
.project-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(217, 58, 31, 0.7);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}
.project-item:hover .project-hover{
    opacity: 1;
}

@media screen and (max-width: 1400px){
	.project-item{
		width: calc(100% / 3 - 30px);
	}
}
@media screen and (max-width: 1000px){
	.project-item{
		width: calc(100% / 2 - 30px);
	}
}
@media screen and (max-width: 700px){
	.project-item{
		width: calc(100%);
		margin-left: 0px;
		margin-right: 0px;
	}
}