h1{
    margin-bottom: 12px;
    margin-top: 32px;
    font-family: "SB Sans Display", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #000;
}

.header-description{
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.block{
    font-family: "SB Sans Text", sans-serif;
}

.links-block{
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.links-item{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
}

.links-item:not(:last-child){
    margin-right: 24px;
}

.links-value{
    display: flex;
    align-items: center;
    color: #21BA72;
    transition: color 200ms;
}

.links-value:hover{
    color: #209F6D;
}

.links-value svg{
    width: 16px;
    height: auto;
    margin-right: 8px;
}

.links-title{
    font-weight: 600;
    margin-right: 8px;
}


.lib-header-share{
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.lib-header-share-title{
    font-size: 14px;
    color: #878B90;
    margin-right: 14px;
    font-family: 'SB Sans Text';
}

.vm{
    position: relative;
    display: inline-flex;
}

.vs{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #21BA72;
    transition: color 0.2s;
    flex: none;
    cursor: pointer;
}

.vs:hover{
    color: #209F6D;
}

.vs:not(:first-child){
    margin-left: 8px;
}

.vs svg{
    max-width: 16px;
    max-height: 16px;
    width: 100%;
    flex: none;
}

.mf{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    right: 0px;
    height: 32px;
    min-width: 100%;
    background-color: #ffffff;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2px 4px rgb(52 64 75 / 6%);
    border-radius: 16px;
    padding: 0px 15px;
    white-space: nowrap;
    top: calc(100% + 12px);
    transition: opacity 0.2s;
    flex: none;
}

.vm:not(.copied) .mf{
    opacity: 0;
    visibility: hidden;
}

.link-under:hover span{
    text-decoration: underline;
}


.lib-slider-block{
    position: relative;
    margin-top: 64px;
}

.lib-slider{
    touch-action: pan-y;
    overflow: hidden;
}

.lib-slider .swiper-wrapper{
    display: flex;
    transition-property: transform;
    transform: translate3d(0px,0,0);
    cursor: grab;
}

.lib-slider .swiper-slide{
    width: 100%;
    flex-shrink: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform;
    overflow: hidden;
    border-radius: 16px;
}

.lib-slider .swiper-slide a{
    display: block;
}

.lib-slider .swiper-slide img{
    display: block;
    width: 100%;
    height: auto;
}

.lib-slider-prev{
    position: absolute;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    top: calc(50% - 20px);
    left: -25px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0px 2px 4px rgb(52 64 75 / 6%), 0px 2px 4px rgb(52 64 75 / 6%);
}

.lib-slider-prev svg {
    position: relative;
    display: block;
    width: 13px;
    height: auto;
    left: -2px;
    transition: .3s;
}

.lib-slider-prev:hover svg{
    color: #21BA72;
}

.lib-slider-next{
    display: flex;
    position: absolute;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    top: calc(50% - 20px);
    right: -25px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0px 2px 4px rgb(52 64 75 / 6%), 0px 2px 4px rgb(52 64 75 / 6%);
}

.lib-slider-next svg {
    position: relative;
    display: block;
    width: 13px;
    height: auto;
    right: -2px;
    transition: .3s;
}

.lib-slider-next:hover svg{
    color: #21BA72;
}

.lib-slider-block .swiper-button-disabled {
    opacity: 0;
}

.lib-slider-pagen {
    margin-top: 24px;
    justify-content: center;
    display: none;
}

.pagination{
    margin-bottom: 0px;
}


.lib-slider-pagen .swiper-pagination-bullet{
    background-color: #C4C4C4;
    margin: 0 8px!important;
    opacity: 1;
}

.lib-slider-pagen .swiper-pagination-bullet-active{
    background-color: #21BA72;
}

footer{
    margin-top: 64px;
}

.contacts-list{
    display: flex;
}

.contacts-list__item{
    background: #EEEEFF;
    border-radius: 8px;
    padding: 24px 32px 35px;
    flex: 1;
}

.contacts-list__item:not(:last-child){
    margin-right: 24px;
}

.contacts-item__headline{
    font-family: "SB Sans Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
    color: #000000;
}

.contacts-item__link-text{
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    transition: color 200ms;
}

.contacts-item__link-text span{
    color: #878B90;
}

.contacts-item__link{
    display: flex;
    overflow: visible;
    transition: color 200ms;
}

a.contacts-item__link:hover .contacts-item__link-text{
    color: #209F6D;
}

a.contacts-item__link:hover .contacts-item__link-text:not(.und){
    text-decoration: underline;
}


.contacts-item__link:not(:last-child){
    margin-bottom: 16px;
}

.contacts-item__icon{
    width: 24px;
    flex: none;
    margin-right: 8px;
}

.contacts-item__icon svg{
    width: 100%;
    height: auto;
}

.contacts-btn{
    margin-top: 32px;
}

.contacts-btn span{
    display: inline-flex;
    align-items: center;
    height: 48px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 32px;
    padding: 0px 36px;
    background: #21BA72;
    color: #ffffff;
    transition: all 200ms;
    cursor: pointer;
}

.contacts-btn span:hover{
    background: #209F6D;
}


.filter-input__input-container{
    position: relative;
}

.filter-input__input-container:not(:last-child){
    margin-right: 16px;
}

.filter-input__input-container input{
    width: 270px;
    height: 40px;
    border: none;
    padding: 0;
    font-family: "SB Sans Text", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
    color: #333F48;
    border-radius: 22px;
    border: 1px solid #E1E5EA;
    transition: all 200ms;
    padding-left: 36px;
}

.filter-input__input-container svg:not(.select-arrow){
    position: absolute;
    top: 50%;
    margin-top: -8px;
    margin-left: 14px;
    pointer-events: none;
}

.filter-input__input-container input:hover, .filter-input__input-container input:focus{
    border-color: #209F6D;
}

.filter-input__input-container.datepicker-block input{
    width: 300px;
}


.filter-block{
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 32px;
}

.filter-filter{
    display: flex;
    align-items: center;
}


.filter-clear .clear-go{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 32px;
    border-radius: 30px;
    font-size: 14px;
    background: #333F48;
    color: #ffffff;
    height: 40px;
    cursor: pointer;
    transition: all 200ms;
}

.filter-clear .clear-go:hover{
    background: #209F6D;
}

.filter-clear .filter-go{
    display: none;
}

.filter-clear .clear-go svg{
    display: none;
}

.filter-clear .clear-go:not(.clear-go-active){
    display: none;
}

.lib-slider .swiper-slide a{
    transition: opacity 200ms;
}

.lib-slider .swiper-slide a:hover{
    opacity: 0.8;
}

.faq__item-header span{
    font-family: "SB Sans Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    padding-right: 20px;
}

.faq__item-header{
    border: 1px solid #C4C4C4;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: background 200ms;
}

.faq__item-header:hover{
    background-color: #F6F6F6;
}

.faq__item-header svg{
    width: 24px;
    height: auto;
    transition: transform 200ms;
    flex: none;
}

.faq__item:not(:last-child){
    margin-bottom: 24px;
}

.faq__item-content{
    display: none;
}

.show .faq__item-header{
    background-color: #F6F6F6;
    border-radius: 16px 16px 0px 0px;
    border-bottom: none
}

.show .faq__item-header svg{
    transform: rotate(180deg);
}

.show .faq__item-content{
    display: block;
}

.faq__item-content{
    border-radius: 0px 0px 16px 16px;
    border: 1px solid #C4C4C4;
    padding: 32px;
}

.faq__item-content{
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.faq__more{
    margin-top: 32px;
    padding-left: 32px;
}

.faq__more-title{
    font-family: "SB Sans Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 8px;
}

.faq__more-text{
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.documents-tabs{
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.documents-tabs__item{
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
    font-size: 14px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2px 4px rgb(52 64 75 / 6%);
    height: 32px;
    padding: 0px 18px;
    margin: 4px;
    border-radius: 32px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
}

.documents-tabs__item:hover{
    color: #21BA72;
}

.documents-tabs__item.active{
    background-color: #333F48;
    border-color: #333F48;
    color: #ffffff;
}

.documents-list{
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.documents-list__item--small{
    display: flex;
    flex-direction: column;
    background: #EEEEFF;
    border-radius: 16px;
    padding: 24px;
    margin: 12px;
    width: calc(25% - 24px);
    border: 1px solid #EEEEFF;
    transition: border 200ms;
}

.documents-list__item--small:hover{
    border: 1px solid #209F6D;
}

.info-badje{
    display: inline-flex;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;
    padding: 4px 12px;
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 16px;
}

.doc-title{
    font-family: 'SB Sans Display';
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
}

.doc-upd{
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #878B90;
    padding-top: 8px;
}

.doc-down{
    padding-top: 24px;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.doc-down svg{
    width: 32px;
    height: auto;
    flex: none;
    margin-right: 10px;
}

.doc-down span{
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.js-tab-new:not(.active){
    display: none;
}

.documents-list__item--big{
    position: relative;
    display: flex;
    flex-direction: column;
    background: #EEEEFF;
    border-radius: 16px;
    padding: 24px;
    margin: 12px;
    width: calc(50% - 24px);
    border: 1px solid #EEEEFF;
    padding-right: 217px;
    transition: border 200ms;
    min-height: 256px;
}

.documents-list__item--big:hover {
    border: 1px solid #209F6D;
}

.documents-list__item--big img{
    position: absolute;
    right: 24px;
    width: 169px;
    /*height: 208px;*/
    border-radius: 8px;
}

.doc-title-big{
    font-family: 'SB Sans Display';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.competitions-item__pic{
    width: 392px;
    flex: none;
    margin-right: 24px;
}

.competitions-item__pic img{
    border-radius: 16px;
    width: 100%;
}
.competitions-item__pic a{
    transition: opacity 200ms;
}
.competitions-item__pic a:hover{
    opacity: 0.8;
}

.competitions-item{
    display: flex;
}

.competitions-item__title{
    margin-bottom: 8px;
}

.competitions-item__title a{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    font-family: "SB Sans Display", sans-serif;
    transition: color 200ms;
}

.competitions-item__title a:hover{
    color: #209F6D;
}

.competitions-item__text{
    font-size: 18px;
    line-height: 24px;
    color: #333F48;
}

.competitions-item:not(:last-child){
    margin-bottom: 32px;
}

.button-block-kon{
    margin-top: 24px;
}

.button-block-kon a{
    height: 40px;
    background: #21BA72;
    color: #ffffff;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    padding: 0px 32px;
    transition: background 200ms;
}

.button-block-kon a:hover{
    background: #209F6D;
}

.competitions-item__date{
    display: flex;
    align-items: center;
}

.competitions-item__date span{
    font-size: 16px;
    line-height: 22px;
    color: #333F48;
}

.competitions-item__date svg{
    width: 24px;
    height: auto;
    flex: none;
    margin-right:8px;
}

.kon-status{
    flex: none;
    margin-right: 24px;
    padding: 0px 36px;
    gap: 8px;
    height: 48px;
    border: 1px solid #C4C4C4;
    filter: drop-shadow(0px 2px 4px rgba(52, 64, 75, 0.06));
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kon-status svg{
    width: 24px;
    flex: none;
}

.competitions-item__head{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.competitions-list{
    margin-top: 48px;
}

.pages-filter-gos{
    display: flex;
}

.library .js-search-filter.filter-input__input-container{
    border: none!important;
    width: auto;
}

.glossary__form{
    margin-top: 32px;
}

.glossary__form-item-wrapper--gl{
    display: none;
}

.glossary__filter{
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.glossary__filter-item input{
    display: none;
}

.glossary__filter-item label{
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
    font-size: 14px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2px 4px rgb(52 64 75 / 6%);
    height: 32px;
    padding: 0px 18px;
    margin: 4px;
    border-radius: 32px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
}

.glossary__filter-item input:checked + label{
    background-color: #333F48;
    border-color: #333F48;
    color: #ffffff;
}

.glossary__filter-wrapper{
    margin-top: 32px;
}

.glossary__item{
    border: 1px solid #C4C4C4;
    border-radius: 16px;
    padding: 24px 32px;
    margin: 12px;
    width: calc(50% - 24px);
}

.glossary__list{
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.glossary__item-title a{
    font-family: "SB Sans Display", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    transition: color 200ms;
}

.glossary__item-title a:hover{
    color: #209F6D;
}

.glossary__item-description{
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-top: 16px;
}

.pagination-ajax{
    width: 100%;
}

.library .glossary__content{
    padding: 0px!important;
    margin-top: 32px;
}

.not-ff{
    
    margin: 12px;
}

@media screen and (max-width: 1199px){
    .library .library-list__filter-item {
        margin-right: 16px!important;
        width: 270px!important;
    }
}

@media screen and (max-width: 1919px){

  
    .contacts-list__item {
        padding: 24px 32px;
    }

    .contacts-item__link-text {
        font-size: 14px;
        line-height: 20px;
    }

    .info-badje {
        font-size: 10px;
        line-height: 14px;
    }

    .doc-title {
        font-size: 18px;
        line-height: 24px;
    }

    .doc-title-big {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1199px){
    .documents-list__item--small{
        width: calc(50% - 24px);
    }
    .competitions-item__pic {
        width: 216px;
    }
}

.filter-clear-mobb{
    display: none;
    margin-top: 16px;
}

@media screen and (max-width: 767px){
    .library .library-list__theme {
        margin-right: 0px!important;
        margin-bottom: 0px!important;
    }
}

@media screen and (max-width: 1024px){

    .glossary__form {
        margin-top: 24px;
    }

    .filter-clear-mobb{
        display: block;
    }

    .pages-filter-gos .filter-clear{
        display: none;
    }

    .pages-filter-gos .filter-input__input-container:not(:last-child) {
        margin-right: 16px;
        margin-bottom: 0px;
    }

    .glossary__filter-wrapper {
        margin-top: 24px;
    }

    .pages-filter-gos .filter-input__input-container input {
        max-width: 270px;
        width: 270px;
    }

    .competitions-list {
        margin-top: 32px;
    }
    .documents-list__item--big img{
        display: none;
    }

    .documents-list__item--big{
        padding-right: 24px;
        min-height: auto;
    }

    .filter-tabs{
        width: 100%;
    }

    .filter-tabs{
        margin-bottom: 24px;
    }
    
    .pages-filter-gos .filter-input__input-container input{
        max-width: 215px;
    }
    
    .faq__more .contacts-btn{
        margin-top: 24px;
    }

    .filter-block{
        flex-direction: column;
    }

    .filter-filter{
        order: 1;
        width: 100%;
    }

    .filter-filter{
        flex-direction: column;
    }

    .filter-input__input-container{
        width: 100%;
    }

    .filter-input__input-container:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 16px;
    }

    .filter-input__input-container input {
        width: 100%;
    }

    .filter-clear .filter-go{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 32px;
        border-radius: 24px;
        padding: 0px 18px;
        color: #ffffff;
        background-color: #21BA72;
        font-size: 14px;
        transition: background 200ms;
        cursor: pointer;
    }

    .filter-clear .filter-go:hover{
        background: #209F6D;
    }

    .filter-clear .clear-go{
        height: 32px;
        border: 1px solid #F2F2F2;
        box-shadow: 0px 2px 4px rgba(52, 64, 75, 0.06);
        padding: 0px 18px;
        background-color: #ffffff;
        color: #000000;
        margin-left: 12px;
    }

    .filter-clear .clear-go svg {
        display: block;
        margin-right: 8px;
    }

    .filter-clear{
        display: flex;
        align-items: center;
        width: 100%;
    }

    .filter-clear .clear-go:hover{
        color: #ffffff;
    }

    h1{
        margin-top: 0px;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .links-block{
        flex-direction: column;
    }

    .links-item{
        width: 100%;
    }

    .links-item:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .lib-header-share{
        margin-left: 0px;
        width: 100%;    
    }

    .contacts-list{
        flex-wrap: wrap;
    }

    .contacts-list__item {
        width: calc(50% - 12px);
        margin-right: 0px;
        margin-bottom: 32px;
        flex: none;
        min-height: 160px;
    }

    .contacts-list__item:not(:last-child){
        margin-right: 0px;
    }

    .contacts-list__item:nth-child(2n+1){
        margin-right: 24px;
    }

    .contacts-btn{
        margin-top: 0px;
    }

    .contacts-btn span {
        height: 40px;
        padding: 0px 32px;
    }

    .pagination-ajax.glas{
        width: 100%;
        margin-top: 32px;
    }
}

@media screen and (max-width: 767px){
    .pagination-ajax.glas {
        width: 100%;
        margin-top: 24px;
    }
    .pages-filter-gos{
        flex-direction: column;
    }

    .pages-filter-gos .filter-input__input-container:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 16px;
    }

    .library .library-list__filter-item {
        width: 100%!important;
    }

    .glossary__item {
        padding: 24px 16px;
        width: 100%;
        margin: 8px;
    }

    .glossary__list{
        margin: -8px;
    }

    .glossary__item-description {
        line-height: 20px;
    }

    .pages-filter-gos .filter-input__input-container input {
        max-width: none;
        width: 100%;
    }

    .competitions-item{
        flex-direction: column;
    }

    .competitions-item__pic {
        width: auto;
        max-width: 380px;
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .kon-status {
        margin-right: 0px;
        padding: 0px 18px;
        gap: 8px;
        height: 32px;
    }

    .kon-status svg {
        width: 18px;
        height: auto;
    }

    .competitions-item__head{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .competitions-item__date{
        margin-top: 12px;
    }

    .competitions-item__title a {
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
    }

    .competitions-item__title {
        margin-bottom: 12px;
    }

    .competitions-item__text {
        font-size: 14px;
        line-height: 20px;
    }

    .button-block-kon {
        margin-top: 16px;
    }

    .documents-list__item--big{
        width: 100%;
    }
    .documents-list__item--small{
        width: 100%;
    }

    .faq__item-header {
        padding: 24px 16px;
    }

    .faq__item-header span {
        font-size: 14px;
        line-height: 20px;
    }

    .faq__item-content {
        font-size: 14px;
        line-height: 20px;
    }

    .faq__item-content {
        padding: 24px 16px;
    }

    .faq__item:not(:last-child) {
        margin-bottom: 16px;
    }

    .faq__more-title {
        font-size: 14px;
        line-height: 20px;
    }

    .faq__more-text {
        font-size: 14px;
        line-height: 20px;
    }

    .faq__more .contacts-btn {
        margin-top: 16px;
    }

    .faq__more{
        padding-left: 0px;
    }

    .links-block{
        margin-bottom: 24px;
    }

    .lib-slider-next {
        display: none;
    }

    .lib-slider-prev{
        display: none;
    }

    .lib-slider-pagen{
        display: flex;
    }
    
    .lib-slider-block {
        margin-top: 40px;
    }

    footer {
        margin-top: 40px;
    }

    .contacts-list__item{
        padding: 24px;
        width: 100%;
    }

    .contacts-item__icon{
        width: 16px;
    }

    .contacts-list__item{
        margin-bottom: 0px;
    }

    .contacts-list__item:nth-child(2n+1) {
        margin-right: 0px;
    }

    .contacts-list__item:not(:last-child) {
        margin-bottom: 16px;
    }

    .contacts-btn{
        margin-top: 32px;
    }
}

@media screen and (max-width: 560px){
    .filter-tabs{
        order: 1;
        margin-bottom: 0px;
        margin-top: 24px;
    }
}
