@charset "UTF-8";

:root {
    /* colors */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --gradien-1: linear-gradient(90deg, #FF00FF 0%, #FFFF00 100%);
}
*, ::after, ::before {
    box-sizing: border-box;
}
.clear:before, .clear:after {
    content: ' ';
    display: table;
}
.clear:after {
    clear: both;
}
.clear {
    *zoom: 1;
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Black.ttf);
    font-weight: 900;
    font-style: normal;
}

html, body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.lang {
    position: fixed;
    display: block;
    top: 200px;
    right: 0;
    width: 40px;
    height: 60px;
    background: #ffffff;
    z-index: 10;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.3);
}
.lang-wrp {
    text-align: center;
    height: 28px;
    line-height: 40px;
}
.lang-wrp img {
	    border: 1px solid #f1f1f1;
}

h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #DAA93E;
}
header h1 {
    margin-bottom: 16px;
}
.bx-breadcrumb {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #14202c;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    min-height: 15px;
    margin-bottom:0!important;
    padding-bottom: 32px;
}
.bx-breadcrumb-item:after {
    position: absolute;
    display: block;
    width: 4px;
    height: 8px;
    content: "";
    top: 3px;
    right: -6px;
    background: url('./i/arrow-right-gold.svg') no-repeat center;
}
.bx-breadcrumb-item a {
    color: #DAA93E;
}
.bx-breadcrumb-item:last-child:after {
    display: none;
    content: none;
}
.bx-breadcrumb .bx-breadcrumb-item{
    position: relative!important;
    margin-right: 18px!important;
    padding-right: 10px!important;
}
.second-page main{
    flex-grow: 1;
    /* padding-top: 66px; */
    color: #060606;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}
.news-page main{
    
}
.second-page h2, .news-page h2{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #060606;
    margin-bottom: 64px;
}
.second-page a, .news-page a{
    color: #D5A64C;
    transition: all 0.3s ease;
    font-weight: 600;
}
.second-page a:hover, .news-page a:hover{
    opacity: 0.8;
    color: #7f5d12;
}

.news-page section.main {
    flex-grow: 1;
    padding-top: 66px;
    color: #060606;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}
.container.container-sidebar {
    display: flex;
    align-items: stretch;
}
.container-sidebar aside{
    flex-basis: 200px;
    padding-right: 15px;
    flex-shrink: 0;
    border-right: 1px solid #F2EFEF;
}
.container-sidebar.container-news aside{
    border:none;
}
.container-sidebar aside.sidebar-large{
    flex-basis: 380px;
    padding-right: 50px;
}
.section_title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 31px;
    line-height: 45px;
    color: #060606;
    margin-bottom: 20px;
}
.container-news .section_title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

.sticky {
    position: sticky;
    top: 50px;
}
.container-news .sticky {
    top: 20px;
}
.sticky.sticky-mb{
    margin-bottom:40px;
}


.news{}
.news-important{
    margin-bottom:40px;
}

.news .news_item, .news .news_sizer{
    padding: 0;
    overflow: hidden;
    display: block;
    width: calc(50% - 20px);
    float: left;
}

.news-gutter {
    width: 40px;
}
.nominations_item, .news_item {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    gap: 8px;
    margin-bottom: 40px;
    border: 2px solid #FFFFFF;
    transition: all 0.3s ease;
    -webkit-box-shadow: 13px 15px 20px rgb(0 0 0 / 5%);
    -moz-box-shadow: 13px 15px 20px rgba(0,0,0,.05);
    box-shadow: 13px 15px 20px rgb(0 0 0 / 5%);
}
.news_item_image{
    width: 100%;
    min-width: 343px;
    height: 226px;
    overflow: hidden;
}
.news_item_image img{
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.news_item_content{
    padding: 24px 32px;
}
.news-important .news_item_content{
    padding: 0;
}
.news-important .news_item{
    padding: 20px;
    border: 2px solid #FFFFFF;
}
.news-important .news_item:hover {
    transform: inherit;
}
.news_item:hover{
    transform: scale(1.03);
}
.news-important .news_item:hover{
    border: 2px solid #D5A64C;
}
.news_item_title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #060606;
    margin-bottom: 16px;
}
.news_item_description{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4D4D4D;
}
.news_item_date{
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f2efef;
}
.news_item_link{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}
.news_item.news_item--image-bg{
    height: 230px;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}
.news_item--image-bg:after{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.2;
    z-index: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    content: '';
    pointer-events: none;
}
article.news_item--image-bg .news_item_image{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
article.news_item--image-bg:hover:after {
    opacity: 0.3;
}
article.news_item--image-bg .news_item_content{
    position: relative;
    z-index: 2;
    padding: 15px;
    width: 100%;
    height: 100%;
}
article.news_item--image-bg .news_item_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15em;
    color: #fff;
    padding-top: 0;
    position: absolute;
    bottom: 20px;
    margin-bottom: 0;
}
article.news_item--image-bg .news_item_description {
    display: none;
}
article.news_item--image-bg .news_item_date{
    color:#fff;
    border:none;
    margin-top: 0;
    padding-top: 0;
}
.container-detail-news h1{
    margin-bottom: 30px;
}
.container-detail-news .section {
    padding: 75px 0 75px 0;
}
.sidebar-page .section, .container-news .section {
    padding: 75px 0 75px 75px;
    border-bottom: 1px solid #F2EFEF;
}

.container-news .section {
    padding: 75px 0 75px 50px;
}
.section.section-bg-grey {
    background: #F2EFEF;
    position: relative;
    overflow: visible;
}
.container-news .section.section-bg-grey:first-child {
    margin-top: -65px;
    padding-top: 65px;
}
.container-detail-news.container-news .section{
    padding-left: 0;
}
.container-detail-news.container-news .section:first-child{
    padding-top: 0;
}
.section.section-bg-grey:before {
    content: '';
    position: absolute;
    background: #F2EFEF;
    height: calc(100% + 1.5px);
    width: calc((100vw - (100% + 217px)) / 2);
    left: 100%;
    top: -0.5px;
}
.container-news .section.section-bg-grey:before {
    width: calc((100vw - (100% + 397px)) / 2);
    top: -1.3px;
}
@media (min-width: 1090px){
    .news.news-list-detail .news_item, .news.news-list-detail .news_sizer{
        width: calc(32% - 20px);
    }
}
@media (max-width: 1090px){
    .container.container-news {
        display: block;
    }
    .news_item.news_item--image-bg{
        height: 230px;
    }
    .container-news.container-sidebar aside.sidebar-large{
        padding-right: 0;
    }
    .news-important{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(2,auto);
        gap: 30px;
    }
    .news-important .news_item:nth-child(1){
        grid-row: 1/3;
        margin-bottom: 0;
    }
    .news-important .news_item:nth-child(2){
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .news-important .news_item:nth-child(3){
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .news-important .news_item{
        margin-bottom: 0;
    }
    .container-news .section.section-bg-grey:first-child{
        margin-top: 0;
        padding: 0;
        margin-left: -30px;
        padding-left: 30px;
        margin-right: -30px;
        padding-right: 30px;
        padding-top: 30px;
    }
    .news-important .news_item_content{
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }
    .news .news_item, .news .news_sizer{
        width: 30%;
    }
}
@media (max-width: 892px){
    .news .news_item, .news .news_sizer{
        width: calc(50% - 15px);
    }
    .news-gutter {
        width: 30px;
    }
    .container-sidebar.container-news aside{
        display: block;
    }
}
@media (max-width: 650px){
    .news-important{
        display: block;
    }
    .news_item.news_item--image-bg{
        height: 270px;
    }
    .news-important article.news_item{
        display: block;
        margin-bottom: 30px!important;
    }
}
@media (max-width: 650px){
    .news .news_item, .news .news_sizer{
        width: 100%;
    }
}
b, strong {
    font-weight: bolder;
}
a {
    color: var(--color-white);
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    /*color: var(--color-black);*/
}
.section,.footer{
    padding:96px 0;
    /* overflow: hidden; */
}
.section.-quote{
    background-color: #fff;
    padding-top: 0;
    margin-top: -110px;
    overflow: hidden;
}
.section.-documents{
    background-color: #000;
}
.section.-nominations{
    background-image: url('../i/Back2-min.png');
    background-color:#000;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 300px;
    margin-top: -300px;
}
section.section.-nominations:before {
    content: '';
    top: 624px;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
}
section#mission{
    margin-bottom: 200px;
}
header,footer{
	position:relative;
}
footer.footer{
    
}
footer.footer.footer--bg{
    background-image: url('../i/selebrity.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #000;
}
.section__title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 43px;
    margin-bottom:60px;
    text-align:center;
    text-transform: uppercase;
}
@media (max-width: 742px) {
    .section__title{
        font-size: 25px;
    }
}
.section__title.-min-m-bottom{
    margin-bottom:10px;
}
.section__sub-title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    margin-bottom:60px;
    text-align: center;
}
.section__title.-white{
    color:#fff;
}
.section__title.-black,.section__sub-title.-black{
    color:#000;
}
.section__title.-gold{
    color:#D5A64C;
}
.section__content{
    margin-bottom:20px;
}
.container{
    position: relative;
    display: block;
    max-width: 1162px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.container.-min{
    max-width: 994px;
}

.text-style__buttons{
    font-family: 'Montserrat',sans-serif;
    font-weight: 500;
    color:var(--color-white);
    text-decoration: none;
    font-size: 14px;
    line-height: 17px;
}
.text-style__buttons:hover{
    opacity: 0.8;
    text-decoration: none;
}
.bg-feather {
    background-image: url('/local/templates/zaveronostnauke/i/feather-bg-right.png');
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
}
@media (max-width: 1400px){
    .bg-feather{
        background-position: 0;
    }
}
.top-nav{
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    background-color:#0000;
    /*-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
    height: 113px;
}
.top-nav--fixed{
    position: fixed;
    left: 0;
    top: 0;
    background-color: #00000080;
    padding: 10px 0;
    /*min-height: 80px;
    height: 80px!important;*/
    height: 113px;
    height: 132px;
}
.top-nav--default{
}
.top-nav__wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#all:not(.main-page,.basic-page) .top-nav--default .top-nav__wrapper{
    height: 113px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.top-nav__logo{
    width:248px;
    height:113px;
    background-image: url('../i/logo_sprite_25.png');
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: background-position 0.3s ease 0.3s, width 0.3s ease  0.6s;
    -o-transition: background-position 0.3s ease 0.3s, width 0.3s ease  0.6s;
    transition: background-position 0.3s ease 0.3s, width 0.3s ease  0.6s;
    background-position: 0 0;
    background-repeat: no-repeat;
    margin-right:20px;
}
.top-nav__logo.min-logo {
    background-image: url(../../zaveronostnauke/i/lk-logo-min_23-2.svg);
    width: 170px;
    height: 77px;
}
/*Анимация лого*/
.top-nav--fixed .top-nav__logo{
    background-position: 0px -113px;
    /*width: 58px;*/
    -webkit-transition: background-position 0.3s ease 0.3s, width 0.3s ease;
    -o-transition: background-position 0.3s ease 0.3s, width 0.3s ease;
    transition: background-position 0.3s ease 0.3s, width 0.3s ease;
}

.top-nav__menu{}
.top-nav__menu ul:not(.submenu__list){
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 44px;
    /* overflow: hidden; */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.top-nav__menu ul li{
    padding: 10px;
}
a.top-nav__menu-item{
    color:var(--color-white);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}
a.top-nav__menu-item:hover{
    color:var(--color-white);
}

.top-nav__button{
    display: block;
    margin: 0 15px;
}
a.top-nav__button-apply{
    background: -o-linear-gradient(269.02deg, #D5A64A 0.84%, #C7880C 144.44%);
    background: linear-gradient(180.98deg, #D5A64A 0.84%, #C7880C 144.44%);
    border-radius: 84px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 10px 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    white-space: nowrap;
}
.top-nav--fixed .top-nav__button-apply,
.top-nav--static .top-nav__button-apply{
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}
.top-nav__reg{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.top-nav__reg-link{
    color:var(--color-white);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.top-nav__reg-link:hover{
    color:var(--color-white);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
}
.second-page .top-nav--static, .news-page .top-nav--static{
    /* height: inherit; */
}
.top-nav--static {
    position: relative;
    background-color: #00000000;
    height: 100%;
    padding: 32px 0;
}
.second-page .top-nav--static .top-nav__wrapper,
.news-page .top-nav--static .top-nav__wrapper {
    height: 77px;
}
/* .second-page .top-nav__reg, .news-page .top-nav__reg{
    display: none;
} */
.top-nav--static .top-nav__wrapper {
    justify-content: space-between;
}
.top-nav--static .top-nav__logo {
    background-position: 0px;
}
/* .standart-page .top-nav--static {
    height: inherit;
} */
.top-nav--static {
    position: relative;
    background-color: #00000000;
    height: 100%;
    padding: 32px 0;
}
.standart-page .top-nav--static .top-nav__wrapper {
    height: 77px;
}
.top-nav--static .top-nav__wrapper {
    justify-content: space-between;
}
.top-nav--static .top-nav__logo {
    background-position: 0px;
}
.header--offset {
    margin-top:104px;
}
hr{
    width:100%;
    height:1px;
    background-color:var(--color-yellow);
    border:none;
    outline:none;
}
.top-nav__burger{
    display: none;
    cursor: pointer;
    padding: 12px 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    margin-left: 20px;
    -webkit-transition: usnet;
    -o-transition: usnet;
    transition: usnet;
}
.top-nav__burger span {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    -webkit-transition: usnet;
    -o-transition: usnet;
    transition: usnet;
}
.top-nav__burger span:after, .top-nav__burger span:before {
    position: absolute;
    background: #fff;
    content: "";
    width: inherit;
    height: inherit;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
@media (max-width: 992px){
    .top-nav__reg{
        display:none;
    }
    .top-nav__burger {
        display: block;
        position: relative;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    }
    .top-nav__burger span:before {
        top: -9px;
    }
    .top-nav__burger span:after {
        top: 9px;
    }
}
@media (max-width: 979px){
    .top-nav__menu{
        display: none;
    }
    .btn-open-search-form{
        margin-left: auto;
    }
}

.top-nav--menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#000;
}

.top-nav--menu .top-nav__menu {
    display: block;
}

.top-nav--menu .top-nav__menu {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    grid-row: 3/3;
}

.top-nav--menu .top-nav__menu ul {
    display: block;
    height: 100%;
    margin-top: 20px;
}

.top-nav--menu li {
    border-bottom: 1px solid var(--color-white);
}

.top-nav--menu .top-nav__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2,1fr);
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-rows: repeat(4,auto);
    position: relative;
    gap:20px;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 2/3;
    grid-row: 1/2;
    margin-right: 60px;
    margin-bottom: 5px;
    z-index: 1;  
}
.btn-open-search-form{
    margin-right: -100px;
}
@media (max-width: 1100px) {
    .btn-open-search-form{
        margin-right: -50px;
    }
}
@media (max-width: 1010px) {
    .btn-open-search-form{
        margin-right: 0;
    }
}

.top-nav--menu .top-nav__wrapper > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
}

.top-nav--menu .top-nav__wrapper > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
}

.top-nav--menu .top-nav__logo-wrapper {
    -ms-grid-column: 1;
    grid-column: 1/1;
    -ms-grid-row: 1;
    grid-row: 1/1;
}
.top-nav--menu .btn-open-search-form img {
    width: auto;
    height: 23px;
}
.top-nav--menu .top-nav__burger {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    grid-row: 1/1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-left: 0;
}

.top-nav--menu .top-nav__reg {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    display: block;
    margin-top: 40px;
    text-align: center;
}

.top-nav--menu .top-nav__button {
    margin-bottom: 20px;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.top-nav__burger.top-nav__burger--active span {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.top-nav__burger.top-nav__burger--active span:before{
    -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
}
.top-nav__burger.top-nav__burger--active span{
    /* transition: all 0s; */
    /* width: 0; */
    background: #fff0;
}
.top-nav__burger.top-nav__burger--active span:after{
    -webkit-transform: translateY(-12px) rotate(-45deg);
        -ms-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
}


.menu__item--has-sub{
    position: relative;
}
.menu__item--has-sub:hover{
    background: #f1f1f1;
}
.menu__item--has-sub:hover button{
    color:#000;
}
.menu__item--has-sub button{
    background: none;
    border: none;
    padding: 0;
    position: relative;
    display: block;
}

.submenu__list{
    display: none!important;
    position: absolute;
    background-color: #c4c4c4;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    height: auto!important;
    left:0;
    top:100%;
    min-width: 100%;
    margin-top: 0!important;
}
.menu__item--has-sub:hover .submenu__list{
    display: block;
}
.menu__item--has-sub:hover>a{
    color: var(--color-black);
}
.submenu__item{
    color: black;
    /* padding: 12px 16px; */
    text-decoration: none;
    display: block;
}
a.sub-submenu__link{
    color: var(--color-black);
    font-weight: 500;
}
a.sub-submenu__link:hover{
    color: var(--color-black);
    opacity: 0.8;
}
.menu-dwn-arw{
    border-color: #fff transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    width: 0;
    height: 0;
    margin-left: 4px;
    top: 50%;
    right: 7px;
    margin-top: -2px;
    position: absolute;
}
.submenu__list .submenu__item:hover a {opacity: 0.8;}
.menu__item--has-sub:hover .submenu__list {display: block!important;}
.menu__item--has-sub:hover .submenu__list {background-color: #f1f1f1;}
@media (max-width: 992px) {
    .text-style__title{
        /* мобильные заголовки */
        font-size: 30px;
        line-height: 35px;
    }
}

.button{
    border: 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
    border-radius: 3px;
    padding:7px 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration:none;
    display: inline-block;
}
.button--bigger{
    padding:12px 54px;
}
.hover{
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hover:hover{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
}
.button:hover{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
    text-decoration:none;
}

.header{
    position: relative;
    width:100%;
}
.second-page header, .second-page footer,
.news-page header, .news-page footer{
    background: #060606;
}
/*.header.header--mainpage{
    height:100vh;
}*/
.mission{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}
.header__video{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.header__content{
    position: relative;
    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;
    width: 100%;
    min-height: 920px;
    height:100vh;
    text-align: center;
    background-image: url('../i/header_shape.png');
    background-position-x: 100%;
    background-position-y: bottom;
    z-index: 2;
    background-repeat: no-repeat;
    margin-bottom: 200px;
    background-color:var(--color-black);
}
.header__content-title{
    font-size: 0px;
    display: none;
}
.header__content-biglogo{
    max-width: 100%;
}
.header__online{
    /* margin-top: -260px;
    background: #000;
    padding-top: 100px; */
    padding-bottom: 170px;
    margin-bottom: 0;
}

.header__online iframe{
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 934px;
    max-height: 516px;
    height: 100vh;
}

.header__main-logo{
    text-align: right;
    margin-top: 130px;
}
.header__main-logo-wrp{
    width: 100%;
    position: relative;
    max-width: 991px;
    margin-left: auto;
}
.header__main-logo-wrp:before{
    content:'';
    position: absolute;
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg);
    background-size: contain;
    background-color: #d5a64c;
    width: 0.5%;
    height: 135px;
    left: 4%;
    top: -19%;
    z-index: 1;
}
.header__main-logo img{
    position: relative;
    max-width: 100%;
}
.header__button_wrp{
    text-align: center;
    margin-bottom:90px;
}
a.apply__button{
    display: inline-block;
    background: -o-linear-gradient(269.02deg, #D5A64A 0.84%, #C7880C 144.44%);
    background: linear-gradient(180.98deg, #D5A64A 0.84%, #C7880C 144.44%);
    -webkit-box-shadow: 0px 10px 35px #000000;
            box-shadow: 0px 10px 35px #000000;
    border-radius: 84px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    padding: 10px 25px;
    text-transform: uppercase;
    white-space: nowrap;
}
a.apply__button:hover{
    color: #FFFFFF;
    opacity: 0.8;
}
.apply__button.button__disabled{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    cursor: not-allowed;
}
.header_sub_content .apply__button{
    -webkit-box-shadow: 0px 10px 35px #00000021;
            box-shadow: 0px 10px 35px #00000021;
}
.apply__button--text{
    font-family: 'Montserrat';
    font-style: normal;
    padding-top: 10px;
    font-size: 14px;
}
.partners{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.partners__item{}

.header_sub_content{
    background-image:url('../i/Back1-min.png');
    padding-top: 200px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin-top: -260px;
    padding-bottom: 200px;
    background-position: center;
    background-size: cover;

    background-position-y: -40px;
}
.about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
}
.about__text{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    max-width: 632px;
    width: 100%;
}
.apply_button_wrp{    text-align: center;}
.achivments{
   /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;*/
display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);

    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            /* align-items: flex-start; */

            align-items: center;
            flex-wrap: wrap;
            gap: 10px 40px;
}
.achivment__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.achivment__item_icon{
    width:72px;
    height:72px;
    margin-right:14px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}
.achivment__item_icon.icon--1{
    background-image: url('../i/icon_1.svg');
}
.achivment__item_icon.icon--2{
    background-image: url('../i/icon_2.svg');
}
.achivment__item_icon.icon--3{
    background-image: url('../i/icon_3.svg');
}
.achivment__item_icon.icon--4{
    background-image: url('../i/icon_4.svg');
}
.achivment__item_title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

.top-nav__button-login{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.top-nav__button-login span.icon{
    background-size: 25px 25px;
    background-image:url('../i/login.svg');
    width:36px;
    height:36px;
    background-color: var(--color-white);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
    margin-right:10px;
    display: inline-block;
}
.top-nav__button-login span.text{
    overflow: hidden;
    width: 0;
}
.quotes{
    margin-bottom: 50px;
}
.quote_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.quote_photo{
    margin-right: 32px;
}
.quote_photo img{
    width:164px;
    height:164px;
    border-radius: 50%;
    overflow: hidden;
}
.quote_info{}
.quote_name{
    font-size: 14px;
    line-height: 22px;
    font-family: 'Montserrat';
    font-weight: 700;
    color:#D5A64C;
    margin-bottom: 15px;
}
.quote_text{
    font-size: 14px;
    line-height: 22px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    color:#000000;
}
.quote_text:before{
    content:'“';
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-align: justify;
    color: #D5A64C;
}
.quotes .swiper-slide{
    opacity: 0.2;
}
.quotes .swiper-slide.swiper-slide-active{
    opacity: 1;
}

.swiper-pagination-bullet {
    background: rgba(213, 166, 76, 0.6)!important;
    width: 35px!important;
    border-radius: 0!important;
    cursor: pointer!important;
}
.swiper-pagination{
    position: relative!important;
    width: initial!important;
    bottom:0!important;
}
.swiper-bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
}
.swiper-bottom-prev,.swiper-bottom-next{
    position: relative;
    width:36px;
    height:14px;
    cursor: pointer;
}
.swiper-bottom-prev:before,.swiper-bottom-next:before{
    content:'';
    position: absolute;
    width:100%;
    height:100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.swiper-bottom-prev{}
.swiper-bottom-next{}
.swiper-bottom-prev:before{
    background-image: url('../i/arrow-left.svg');
}
.swiper-bottom-next:before{
    background-image: url('../i/arrow-right.svg');
}
.swiper-button-disabled {
    opacity: 0.4;
}
.swiper-pagination {
    pointer-events: all !important;
}
.swiper-bottom-counter{
    font-family: 'Geometria';
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    color: #d5a64c75;
}
.swiper-bottom-counter span.currentPage{
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #D5A64C;
}
.tasks{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.task_item{}
.task_item_icon{
    width:72px;
    height:72px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin:0 auto;
    margin-bottom:20px;
}
.task_item_name{
    font-family: 'Montserrat';
    font-style: normal;
    /*font-weight: 700;*/
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}
.task_item_icon-1{
    background-image:url('../i/task_1.svg');
}
.task_item_icon-2{
    background-image:url('../i/task_2.svg');
}
.task_item_icon-3{
    background-image:url('../i/task_3.svg');
}
.task_item_icon-4{
    background-image:url('../i/task_4.svg');
}
.task_item_icon-5{
    background-image:url('../i/task_5.svg');
}

.nominations{
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    /*column-width:50%;*/
    margin-bottom:60px;
}
.nomination_item{
    position:relative;
    padding-left:60px;
    margin-bottom:30px;
    overflow: hidden;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    break-inside: avoid-column;
}
.nomination_item:before{
    content:'';
    background-image:url('../i/star.svg');
    left:0;
    position: absolute;
    width: 41px;
    height: 41px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.nomination_item_title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    line-height: 27px;
    color: #D5A64C;
    margin-bottom:10px;
}
.nomination_item_description{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nomination_item_description a{
    text-decoration: underline;
}
.nomination_item_description a:hover{
    text-decoration: none;
}
.steps{}
.steps_row{
    height:5px;
    width:82%;
    background-color:#D5A64C;
}
.steps_wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
    gap: 20px;
}
.steps_item{
    position: relative;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
}
.steps_item:before{
    content:'';
    height:25px;
    width:1px;
    background-color: #000;
    position: absolute;
    top: -30px;
}
.steps_item:after{
    content:'';
    background-color:#D5A64C;
    position: absolute;
    width:24px;
    height:24px;
    top: -60px;
    left: -11.5px;
    border-radius: 50%;
    overflow: hidden;
}
.steps_item.star:after{
    background-color:inherit;
    background-image: url('../i/star.svg');
    width:59px;
    height:65px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -85px;
    left: -30.5px;
}
.steps_item_date{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #D5A64C;
    margin-bottom:6px;
}
.steps_item_description{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.org{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
}
.org_item{}
.people{
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    min-height: 370px;
}
.people_item_image{
    margin-bottom:20px;
}
.people_item_image img{
    width:150px;
    height:150px;
    border-radius: 50%;
    overflow: hidden;
    background: grey;
}
.people_item_name{
    padding-left:20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #D5A64C;
    margin-bottom:10px;
}
.people_item_position{
    padding-left:20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.documents{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
.documents__item{
    position: relative;
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
}
.documents__item_icon{
    position: relative;
    margin-bottom: 30px;
    width:67.5px;
    height:62.5px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.documents__item_icon:before{
    content:'';
    width:67.5px;
    height:32.5px;
    background-image: url('../i/file_bottom.svg');
    position: absolute;
    bottom: 0;
}
.documents__item_icon:after{
    content:'';
    width:28.5px;
    height:50px;
    background-image: url('../i/file_top.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    position: absolute;
    top: -15px;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.documents__item:hover .documents__item_icon:after{
    top: -5px;
}
.documents__item:active .documents__item_icon:after{
    top:0px;
}
.documents__item_name{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
}
.documents__item_link{
    position: absolute;
    width:100%;
    height:100%;
    top: 0;
    left: 0;
}
.exp{
    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;
    gap: 20px;
}

.footer__big-logo{
    margin-bottom:25px;
    margin-left:25px;
}
.footer__big-logo img{
    width:100%;
    max-width: 552px;
    
}
.footer__description{}
.footer__text{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
    color: #FFFFFF;
    padding-left: 306px;
    width: 100%;
    max-width: 727px;
    margin-bottom: 25px;
}
.links{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-bottom:56px;
    width: 100%;
    max-width: 727px;
    padding-left: 306px;
    gap: 20px;
}
.links_item{
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    color: #F6D698;
    padding-left: 35px;
}
.links_item--download:before,.links_item--vk:before{
    position: absolute;
    width: 27px;
    height: 25px;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
}

.links_item--download:before{
    content:'';
    background-image: url('../i/file_full.svg');
    position: absolute;
}
.links_item--vk:before{
    content:'';
    background-image: url('../i/vk.png');
    position: absolute;
}

.footer__logo_partners{
    margin-bottom: 60px;
}
.footer__email{text-align: center;}
.footer__email a{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 54px;
    text-align: center;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    color: #FFFFFF;
}

/*apply form */
.section-page{}
.apply-page{
    background-color: #000;
    background-image:url('../i/application__shape_bg.png');
    background-repeat: no-repeat;
}
.row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
.col{}
.apply-page__logo-wrp{}
.apply-page__logo-wrp img{
    max-width:100%;
}
.apply-page__restore-wrapper{
    align-items: center;
}

.form__wrapper{
    max-width: 485px;
    width:100%;
}
.form__title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #DAA93E;
    padding-left: 15px;
    margin-bottom: 20px;
}

.form__content{}
.field__wrapper{
    position: relative;
    width:100%;
    border-radius: 8px;
    /* overflow: hidden; */
    margin-bottom: 15px;
}
.select__wrapper  span.select2-container{
    width: 100%!important;
}
.notice-form {
    padding: 20px;
    background: #fbe6cc21;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 18px;
}
.notice-form.green {
    background: #2fc74f6b;
}
.wrp-url {
    text-align: center;
    margin-top: 20px;
}
.js-do-yes {
    padding: 10px;
    border-radius: 10px;
    background: #DAA93E;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
}
.js-do-no {
    padding: 10px;
    border-radius: 10px;
    color: #DAA93E;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
}

.field__wrapper-textarea{
    overflow: hidden;
}
.files{
    padding: 0 16px 16px;
    width: 100%;
    outline: 0;
    border: 0;
    /* box-shadow: 0 1px 0 0 #e5e5e5; */
    -webkit-transition: -webkit-box-shadow 150ms ease-out;
    transition: -webkit-box-shadow 150ms ease-out;
    -o-transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out, -webkit-box-shadow 150ms ease-out;
    border: 1px solid rgba(217, 217, 217, 0);
    outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    background: rgba(217, 217, 217, 0.28);
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    margin-bottom: 7px;
}
.files__label{
    cursor: text;
    font-size: 11px;
    padding-top: 1px;
    color: #999;
}
.files__item{
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
}
.files__item-link{
    max-width: 75%;
    word-wrap: break-word;
}
.files__item-link span{
    font-size: 0.7em;
    color: #999;
}
.files__item-delete{
    font-size: 14px;
    line-height: 17px;
    opacity: 0;
    /* transition: opacity 150ms ease-out; */
    color:red;
    min-width: 100px;
}
.files__item:hover .files__item-delete{
    opacity: 1;
}
.hiiden-select-field{
    position: absolute;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    background: none;
    font-size: 14px;
    line-height: 17px;
    color: #fff0;
    padding: 16px;
    font-family: 'Montserrat Alternates', sans-serif;
}
.hiiden-select-field:before{
    content:'*';
    color: red;
    right: 4px;
    top: 15px;
    position: absolute;
}
.filled .hiiden-select-field{
    display:none;
}
.field__label{
    position: absolute;
    left: 8px;
    top: 18px;
    z-index: 0;
    -webkit-transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    -o-transition: transform 150ms ease-out, font-size 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    cursor: text;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    color:#fff;
}
.field.field__input--empty,.field__wrapper--empty{
    webkit-box-shadow: 0 1px 0 0 #c32e2ec4;
    box-shadow: 0 1px 0 0 #c32e2ec4;
}

.hint {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    position: absolute;
    right: 0px;
    top: 16px;
    opacity: 0;
    -webkit-transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    -o-transition: transform 150ms ease-out, font-size 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.hint em {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    min-width: 16px;
    height: 26px;
    margin: -3px 0 -1px 2px;
    padding: 0 5px 0 5px;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #4e8ff5;
    background: #aeb1b6;
    border-radius: 20px;
    font-weight: bold;
}
.hint .hint-inner {
    display: none;
    width: 276px;
    padding: 17px 18px;
    background: #e5a840;
    font-size:14px;
    line-height: 18px;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: -21px;
    margin: 0 0 35px 0;
    white-space: normal;
    z-index: 1;
    border-radius: 8px;
}

.hint .hint-inner:after {
    display: block;
    content: '';
    overflow: hidden;
    position: absolute;
    top: 100%;
    right: 26px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e5a840;
}

.hint:hover .hint-inner {
    display: block;
}

.focused .hint {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 1;
}
.focused .field__label,.focused__stable .field__label{
    -webkit-transform: translateY(-135%);
        -ms-transform: translateY(-135%);
            transform: translateY(-135%);
    font-size: 0.7em;
    color: #999;
}
.field__label--input_file{
    font-size: 12px;
    width: 100%;
    height: 100%;
    padding: 16px;
    color: #888;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 21px;
}
.field__label--bigger{
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 0;
}
.field,.field__copy{
    position: relative;
    padding: 16px;
    width: 100%;
    outline: 0;
    border: 0;
    /* box-shadow: 0 1px 0 0 #e5e5e5; */
    -webkit-transition: -webkit-box-shadow 150ms ease-out;
    transition: -webkit-box-shadow 150ms ease-out;
    -o-transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out, -webkit-box-shadow 150ms ease-out;
    border: 1px solid rgba(217, 217, 217, 0);
    outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    background: rgba(217, 217, 217, 0.28);
    font-size: 14px;
    line-height: 17px;
    color:#fff;
}
.field__copy {
    padding-top: 45px;
}
.field__input{
    width: 100%;
}
.field__input.filled {
    -webkit-box-shadow: 0 1px 0 0 #90ee90c4;
            box-shadow: 0 1px 0 0 #90ee90c4;
}
.field__input--radio {
    width: auto;
}

.field__label-sub{
    position: absolute;
    font-size: 12px;
    width: 100%;
    height: 100%;
    padding: 16px;
    color: #888;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 21px;
    -webkit-transition: opacity 150ms ease-out 100ms, -webkit-transform 150ms ease-out 100ms;
    transition: opacity 150ms ease-out 100ms, -webkit-transform 150ms ease-out 100ms;
    -o-transition: transform 150ms ease-out 100ms, opacity 150ms ease-out 100ms;
    transition: transform 150ms ease-out 100ms, opacity 150ms ease-out 100ms;
    transition: transform 150ms ease-out 100ms, opacity 150ms ease-out 100ms, -webkit-transform 150ms ease-out 100ms;
    opacity: 1;
}
.focused .field__label-sub{
    opacity: 0;
    -webkit-transform: translateY(75%);
        -ms-transform: translateY(75%);
            transform: translateY(75%);
}
.field__select{}
.field__select option {
    color: #000;
}
.select2-container .select2-selection--single{
    height: 51px!important;
}
.select2-container--default .select2-selection--single{
    background: rgba(217, 217, 217, 0.28)!important;
    border: none!important;
    border-radius: 8px!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 51px!important;
    padding-left: 16px!important;
    font-size: 14px!important;
    /* line-height: 17px; */
    color: #fff!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height:50px!important;
}
.select2-dropdown {
    background: #2c2c2c!important;
    border: none!important;
}
.select2-results__option {
    font-size: 14px!important;
    padding: 16px!important;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    height: 51px!important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #fff!important;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    border-radius: 8px!important;
}
.select2-container--default .select2-results__option--selected {
    background-color: #FF9800!important;
}
.select2-search--dropdown{
    display: block;
    padding: 16px 11px!important;
    background: #3c3c3c;
}
.select2__custom-container{}
.select2__custom-dropdown{
    margin-top:-5px;
}

.field__textarea{
    min-height: 100px;
}
.field__group{
    /* grid-template-columns: repeat(2,1fr); */
    -ms-grid-rows: auto 0 auto 0 auto;
    grid-template-rows: repeat(3,auto);
    display: -ms-grid;
    display: grid;
    /* grid-template-areas: "fullwidth" ". ."; */
        grid-template-areas: "fullwidth fullwidth" ". .";
    gap: 0 15px;
}
.field__group .field__wrapper--fullwidth{
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: fullwidth;
}
.submit-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.submit__checkbox{}
.submit__button-wrapper{}
.checkbox__label{
    font-size: 14px;
}
.field__submit{
    background: -o-linear-gradient(269.02deg, #D5A64A 0.84%, #C7880C 144.44%);
    background: linear-gradient(180.98deg, #D5A64A 0.84%, #C7880C 144.44%);
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}
input.field__submit:disabled {
    cursor: progress;
    opacity: 0.5;
    background: grey;
}
.form__input--invisible {
    visibility: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.field__select{
	padding: 16px!important;
}
.i-partners{
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    grid-auto-columns: minmax(100px, 1fr);
        grid-template-areas: ". . .";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.i-partners__item{
    text-align: center;
    min-height: 196px;
    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;
}
.i-partners__item img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.b-docs-wrap {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: inline-flex;
    width: auto;
    text-decoration: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 12px;
    min-width: 330px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}
.b-docs-wrap.b-docs-child {
    margin-left: 90px;
    z-index:2;
}
.b-docs-wrap.b-docs-child:after {
    content: '';
    position: absolute;
    left: 52px;
    top: 0;
    width: 32px;
    height: 70%;
    margin-left: -100px;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    -webkit-border-radius: 0 0 100px 0;
    -moz-border-radius: 0 0 100px 0;
    border-radius: 0 0 0 30px;
    z-index: 1;
}
.b-docs-wrap:hover {
    -webkit-box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 13px 15px 20px rgba(0, 0, 0, 0.15);
}
.b-docs-wrap:active {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.b-docs-wrap__info {
    margin-left: 20px;
}
.b-docs-wrap__icon img {
    width: 55px;
    height: auto;
}
.b-docs-wrap span {
    display: block;
    color: #000000;
    font-weight: 500;
    line-height: 24px;
    font-size: 17px;
    padding-bottom: 10px;
}
.b-docs-wrap em {
    display: block;
    color: #6d6e71;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.b-docs-wrap a {
    display: block;
    padding: 12px 12px 12px 74px;
    -webkit-background-size: 55px 55px;
    -moz-background-size: 55px;
    -o-background-size: 55px;
    background-size: 55px;
    background-repeat: no-repeat;
    background-position: left center;
}
.b-docs-wrap .b-pdf-link {
    background-image: url("/local/templates/zaveronostnauke/components/bitrix/news/nominations/bitrix/news.detail/nominant_detail/icons/ext-pdf.svg");
}
.b-docs-wrap .b-doc-link {
    background-image: url("/local/templates/zaveronostnauke/components/bitrix/news/nominations/bitrix/news.detail/nominant_detail/icons/ext-doc.svg");
}
.b-docs-wrap .b-xls-link{
    background-image: url("/local/templates/zaveronostnauke/components/bitrix/news/nominations/bitrix/news.detail/nominant_detail/icons/ext-xls(v2).svg");
}
.b-docs-wrap .b-ppt-link {
    background-image: url("/local/templates/zaveronostnauke/components/bitrix/news/nominations/bitrix/news.detail/nominant_detail/icons/ext-ppt.svg");
}
.b-docs-wrap .b-external{
    background-image: url("/local/templates/zaveronostnauke/components/bitrix/news/nominations/bitrix/news.detail/nominant_detail/icons/external-blue.svg");
}

/* RESPONSIVE RULES */
@media (max-width: 1100px){
    .footer__text,.links{
        padding-left: 0;
        margin: 0 auto;
        margin-bottom: 25px;
    }
    /*.i-partners{
        grid-template-areas: ". . . .";
    }*/
}
@media (max-width: 1080px){
    .partners{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        gap: 20px;
    }
    .partners__item{
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    }
}
@media (max-width: 992px){
    
    .header__content--mobile{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 100%;
        padding-top: 170px;
        gap: 20px;
    }
    .header__main-logo{
        margin-top:0;
    }
    .header__main-logo-wrp:before{
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
        height: 25%;
    }
    

    .achivment__item_icon{
        width: 42px;
        height: 42px;
    }
    .achivment__item_title{
        font-size: 16px;
        line-height: 24px;
    }
    .quotes{
        /*overflow: hidden;*/
    }
    .quote_photo img{
        width: 88px;
        height: 88px;
    }
    .tasks{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        gap: 20px;
    }
    .task_item{
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    }
    .row{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .col{
        margin: 0 auto;
    }
}
@media (max-width: 930px){
    .steps{
        max-width: 500px;
        margin: 0 auto;
    }
    .steps_row{
        display: none;
    }
    .steps_wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 0;
        position: relative;
        padding-left: 50px;
    }
    .steps_wrapper:before{
        content:'';
        width:5px;
        height:100%;
        background-color: #D5A64C;
        position: absolute;
        left: 0;
        top: 0;
    }
    .steps_item{}
    .steps_item:before{
        height: 1px;
        width: 22px;
        left: -30px;
        top: 10px;
    }
    .steps_item:after{
        top: 0px;
        left: -59px;
    }
    .steps_item.star:after{
        width: 45px;
        height: 45px;
        top: -14px;
        left: -70px;
    }
    .steps_item_date{}
    .steps_item_description{}
    .steps_item_hidden_element{
        position: absolute;
        height: 100%;
        width: 5px;
        left: -50px;
        background: #fff;
    }
    .i-partners{
            grid-template-areas: ". . .";
    }
}
@media (max-width: 600px){
    .achivments{
        /*-ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;*/
		grid-template-columns: repeat(1, 1fr);
        gap: 20px;

    }
}
@media (max-width: 742px){
    .header__content{
        min-height: inherit;
        max-height: 820px;
    }
    .header__button_wrp{
        margin-bottom:0;
    }
    .about{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 40px;
    }
    .about .apply_button_wrp{
        margin: 0 auto;
    }
    .achivment__item_title{
        font-size: 14px;
        line-height: 22px;
    }
    .quote_item{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
    }
    .quote_photo{
        text-align: center;
        margin-right:0;
    }
    .task_item{
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
    }
    .task_item_icon{
        width: 52px;
        height: 52px;
    }
    .nominations{
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;
    }
    .nomination_item{
        padding-left: 30px;
    }
    .nomination_item:before{
        width: 21px;
        height: 21px;
        top: 0px;
    }
    .nomination_item_title{
        font-size: 14px;
        line-height: 22px;
    }
    .nomination_item_description {
        font-size: 12px;
        line-height: 20px;
    }
    .i-partners{
            grid-template-areas: ". .";
    }
    .header__online iframe{
        max-width:560px;
        max-height:315px;
    }
}
@media (max-width: 650px){
    .footer__email a{
        font-size:18px;
    }
    .documents{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 40px
    }
}
@media (max-width: 375px){
    .header__main-logo {
        margin-top: 130px;
    }
}

.btn:not(.btn-secondary){
    position: relative;
    padding: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	font-size: 0;
}
.btn-open-search-form .btn{
	font-size: 0;
}
.btn-open-search-form img{
	width: auto;
    height: 15px;
}
.main-search {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50.5px 0;
    background: #171c20;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.main-search.opened {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}
.search-form {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.search-form__group {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}
.search-form__control {
    width: 100%;
    border: none;
    border-bottom: 2px solid #d5a64c;
    padding: 10px 40px 10px 10px;
    font-size: 16px;
	background: #171c20;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.search-form .search-form-group-submit {
    position: absolute;
    display: block;
    height: 100%;
    right: 0;
    top: 0;
}
.search-form__submit {
    border: none;
    background: url('../i/search.svg') no-repeat center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    font-size: 0;
    line-height: 0;
    color: #fff;
    height: 80%;
    width: 20px;
}

.search-form--in-content .form-group__input {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
}

.search-form--in-content .form-group__submit {
    position: absolute;
    right: 0;
}

.search-form--in-content .form-control {
    width: 100%;
    padding: 13px 20px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    border: 1px solid #081015;
    background-color: #ffffff;
    color: #070808;
    font-size: 18px;
    line-height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 52px;
}

.search-form--in-content .form-submit {
    padding: 13px 75px;
    border: 1px solid #D5A64C;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    background-color: #D5A64C;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 52px;
    background-image: url("../i/search.svg");
    background-position: right 17px center;
    -webkit-background-size: 25px 25px;
    -moz-background-size: 25px 25px;
    -o-background-size: 25px 25px;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.search-form--in-content .form-submit:hover {
    opacity: 0.8;
}
@media (max-width: 575px) {
    .search-form--in-content .form-submit {
        font-size: 0;
        padding: 13px 25px;
        background-position: center;
    }
}