.ws {
    white-space: nowrap;   
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #FFF;
    z-index: 100;
}
.header_wrapper {
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}
.header_logo img {
    width: 212px;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.header_content {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    row-gap: 16px;
}
.header_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
               -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.header_lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
}
.header_lang select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    border: none !important;  
    outline: none !important;
    
    color: #737373;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}
.header_lang select option {
    color: #151515;
    cursor: pointer;
}

/* burger */
.burger {
    display: none;
    
    -webkit-box-orient: vertical;
    
    -webkit-box-direction: normal;
    
        -ms-flex-direction: column;
    
            -webkit-flex-direction: column;
    
               -moz-box-orient: vertical;
    
               -moz-box-direction: normal;
    
            flex-direction: column;
    row-gap: 3px;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
}
.burger span {
    width: 26px;
    height: 4px;
    background: var(--main-color);
    -webkit-border-radius: 7px;
       -moz-border-radius: 7px;
            border-radius: 7px;
    
    -webkit-transition: 0.5s all;
    
    -o-transition: 0.5s all;
    
    -moz-transition: 0.5s all;
    
    transition: 0.5s all;
}
.burger.active span:nth-child(2) {
    width: 16px;  
}

.header_menu {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
               -moz-box-pack: justify;
            justify-content: space-between;
}
.header_menu-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}
.header_menu-item {
    white-space: nowrap;
    display: block;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    
    -webkit-transition: 0.5s all;
    
    -o-transition: 0.5s all;
    
    -moz-transition: 0.5s all;
    
    transition: 0.5s all;
}
.header_menu-item:hover {
    color: var(--main-color);
    text-decoration: none;
}

/* search */
.header_search .ss-search-form__input input {
    width: 100%;
    border: none !important;
    outline: none !important;
    
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::-webkit-input-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::-moz-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input:-ms-input-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::-ms-input-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::-webkit-input-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input:-moz-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::-moz-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input:-ms-input-placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input input::placeholder {
    border: none !important;
    outline: none !important;
    
    
    color: #A0A0A0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.header_search .ss-search-form__input .ss-search-form__submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    
    border: none !important;
    outline: none !important;
    
    background: none;
}
.header_search .ss-search-form__input {
    width: 380px;
    padding: 4px 12px;
    -webkit-border-radius: 7px;
       -moz-border-radius: 7px;
            border-radius: 7px;
    border: 1px solid #DEDEDE;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}

@media screen and (max-width: 1200px) {
    .header_menu-in {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_menu-item {
        font-size: 14px;
        line-height: 16px;
    }
    .header_wrapper {
        padding: 12px 0;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_lang select {
        font-size: 15px;
    }
    .header_logo img {
        width: 150px;
    }
}    
@media screen and (max-width: 992px) {
    .header_menu {
        display: none;   
    }
    .header_search .ss-search-form__input {
        width: 300px;
    }
    .header_logo img {
        width: 130px;
    }
    .header_search .ss-search-form__input input {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::-webkit-input-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::-moz-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input:-ms-input-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::-ms-input-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::-webkit-input-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input:-moz-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::-moz-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input:-ms-input-placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .header_search .ss-search-form__input input::placeholder {
        font-size: 14px;
        line-height: 16px;
    }
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;   
    }
    .header_content {
        row-gap: 10px;
    }
    .header_down {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                -webkit-justify-content: end;
                   -moz-box-pack: end;
                justify-content: end;
    }
}
@media screen and (max-width: 768px) {
    .header_search .ss-search-form__input {
        width: 200px;
        padding: 4px 10px;
    }
    .header_lang select {
        font-size: 14px;
    }
    .header_lang svg {
        width: 20px;
        height: 20px;
    }
    .header_wrapper {
        padding: 8px 0;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .header_logo img {
        width: 120px;
    }
    .header_content {
        row-gap: 6px;
    }
}
@media screen and (max-width: 576px) {
    .header_search {
        display: none;   
    }
    .header_content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                -webkit-flex-direction: row;
                   -moz-box-orient: horizontal;
                   -moz-box-direction: normal;
                flex-direction: row;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                -webkit-justify-content: end;
                   -moz-box-pack: end;
                justify-content: end;
    }
    .header_logo img {
        width: 80px;
    }
}


.burger_menu {
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 200;
    background: #fff;
    
    width: 260px;
    height: 100vh;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
    
    padding: 20px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    
    border-right: 1px solid lightgray;
}
.burger_menu.active {
    left: 0;   
}
.burger_menu-search.header_search .ss-search-form__input {
    width: 100% !important;
}
.burger_menu-search.header_search {
    display: block !important;
}
.burger_menu-search {
    padding-bottom: 16px;
    border-bottom: 1px solid lightgray;
}
.burger_menu-items {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    row-gap: 20px;
}

/* layout */
.layout {
    position: relative;
    height: 272px;
}
.banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}
.layout_wrapper {
    padding-top: 67px;   
}
.title {
    position: relative;
    padding-left: 24px;
    
    color: #023C5B;
    font-family: IBM Plex Sans;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
    text-transform: uppercase;
}
.title.small {
    font-size: 40px;
    line-height: 48px;
}
.title:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
              -o-transform: translateY(-50%);
         transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 37px;
    background: var(--main-color);
}
@media screen and (max-width: 1200px) {
    .layout {
        height: 240px;
    }
    .title {
        padding-left: 20px;
        font-size: 38px;
        line-height: 40px;
    }
    .title.small {
        font-size: 30px;
        line-height: 32px;
    }
    .layout_wrapper {
        padding-top: 50px;
    }
    .title:before {
        height: 32px;
    }
}
@media screen and (max-width: 992px) {
    .layout {
        height: 200px;
    }
    .title {
        padding-left: 16px;
        font-size: 32px;
        line-height: 36px;
    }
    .title.small {
        font-size: 26px;
        line-height: 30px;
    }
    .layout_wrapper {
        padding-top: 40px;
    }
    .title:before {
        height: 24px;
    }
}
@media screen and (max-width: 768px) {
    .layout {
        height: 180px;
    }
    .title {
        padding-left: 10px;
        font-size: 26px;
        line-height: 24px;
    }
    .title.small {
        font-size: 22px;
        line-height: 20px;
    }
    .layout_wrapper {
        padding-top: 30px;
    }
    .title:before {
        height: 90%;
        width: 3px;
    }
}
@media screen and (max-width: 576px) {
    .layout {
        height: 120px;
    }
    .title.small {
        font-size: 18px;
        line-height: 20px;
    }
}

/* contacts */
.con_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 16px 280px 16px 592px;
        grid-template: auto / 1fr 280px 592px;
    gap: 16px;
}
.con_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.con_map iframe {
    width: 100%;
    height: 100%;
}
.con_info {
    padding: 26px 20px 36px;
    background: #F0F7FB;
}
.con_block {
    padding: 15px 0;
    border-top: 1px solid #E2EDF3;
}
.con_block:nth-child(1) {
    padding-top: 0;
    border-top: unset;
}
.con_social {
    margin-top: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px;
}
.con_block-item {
    color: #444;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    
    -webkit-transition: 0.5s all; 
    
    -o-transition: 0.5s all; 
    
    -moz-transition: 0.5s all; 
    
    transition: 0.5s all;
}
a.con_block-item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.con_block-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    
    margin-bottom: 8px;
}
.con_block-title span {
    display: block;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
@media screen and (max-width: 1300px) {
    .con_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 240px 520px;
            grid-template: auto / 1fr 240px 520px;
    }   
}
@media screen and (max-width: 1200px) {
    .con_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 200px 400px;
            grid-template: auto / 1fr 200px 400px;
    } 
    .con_info {
        padding: 22px 20px 28px;
    }
    .con_block-item {
        font-size: 14px;
        line-height: 18px;
    }
    .con_block {
        padding: 12px 0;
    }
}
@media screen and (max-width: 992px) {
    .con_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 200px;
            grid-template: auto / 1fr 200px;
    }
    .con_map {
        -ms-grid-column-span: 2;
        -ms-grid-column: span 2;
            grid-column: span 2;
        height: 300px;
    }
    .con_info {
        padding: 20px;
    }
    .con_block-title {
        -webkit-column-gap: 8px;
           -moz-column-gap: 8px;
                column-gap: 8px;
        margin-bottom: 6px;
    }
}
@media screen and (max-width: 768px) {
    .con_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 200px;
            grid-template: auto / 1fr 200px;
        gap: 10px;
    }
    .con_info {
        padding: 16px;
    }
    .con_block-title span {
        font-size: 14px;
        line-height: 22px;
    }
    .con_block-item {
        font-size: 13px;
        line-height: 15px;
    }
}
@media screen and (max-width: 576px) {
    .con_img {
        display: none;   
    }
    .con_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        gap: 10px;
    }
    .con_map {
        -ms-grid-column-span: 1;
        -ms-grid-column: span 1;
            grid-column: span 1;
    }
}

/* footer */
.footer {
    margin-top: 78px;
    padding: 44px 0 26px;
    background: #F6F6F6;
}
.footer_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
}
.footer_logo img {
    width: 212px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}
.footer_content {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    
    -webkit-box-pack: justify;
    
        -ms-flex-pack: justify;
    
            -webkit-justify-content: space-between;
    
               -moz-box-pack: justify;
    
            justify-content: space-between;
}
.footer_block_item.add {
    max-width: 375px;   
}
.footer_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
}
.footer_block-img svg {
    width: 36px;
    height: 36px;
}
.footer_block-title {
    color: #969696;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
    margin-bottom: 5px;
}
.footer_block_item {
    display: block;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    
    -webkit-transition: 0.5s all;
    
    -o-transition: 0.5s all;
    
    -moz-transition: 0.5s all;
    
    transition: 0.5s all;
}
a.footer_block_item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_under {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E7E7E7;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
               -moz-box-pack: justify;
            justify-content: space-between;
}
.footer_abc span {
    color: #7B7B7B;
    font-family: IBM Plex Sans;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.585px;
}
.footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
}
@media screen and (max-width: 1200px) {
    .footer {
        margin-top: 60px;
        padding: 40px 0 20px;
    }
    .footer_wrapper {
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }
    .footer_content {
        -ms-flex-wrap: wrap;
            -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
        row-gap: 14px;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .footer_logo img {
        width: 180px;
    }
    .footer_block_item {
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 992px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 16px;
    }
    .footer_wrapper {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .footer_logo img {
        width: 160px;
    }
    .footer_block-img svg {
        width: 32px;
        height: 32px;
    }
    .footer_block {
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;
    }
    .footer_block-title {
        font-size: 14px;
        line-height: 16px;
    }
    .footer_under {
        margin-top: 30px;
        padding-top: 12px;
    }
}
@media screen and (max-width: 768px) {
    .footer {
        margin-top: 30px;
        padding: 24px 0 16px;
    }
    .footer_wrapper {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .footer_logo img {
        width: 140px;
    }
    .footer_block-img svg {
        width: 30px;
        height: 30px;
    }
    .footer_block-title {
        font-size: 13px;
        line-height: 15px;
    }
    .footer_block_item {
        font-size: 13px;
        line-height: 15px;
    }
}
@media screen and (max-width: 576px) {
    .footer_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                -webkit-flex-direction: column;
                   -moz-box-orient: vertical;
                   -moz-box-direction: normal;
                flex-direction: column;
        row-gap: 30px;
    } 
    .footer_content {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .footer_under {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                -webkit-flex-direction: column;
                   -moz-box-orient: vertical;
                   -moz-box-direction: normal;
                flex-direction: column;
        row-gap: 10px;
    }
}

/* pub */
.pub_content {
    margin-top: 32px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 32px;
}
.pub_block {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 243px 37px 1fr;
        grid-template: auto / 243px 1fr;
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    
    border: 1px solid #EFEFEF;
    background: #FFF;
}
.pub_block-img {
    height: 100%;
}
.pub_block-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.pub_block-info {
    padding: 30px 0;
    height: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
               -moz-box-pack: justify;
            justify-content: space-between;
}
.pub_block-title {
    position: relative;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
}
.pub_block-title:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 44px;
    height: 2px;
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    background: #0C82C2;
}
.pub_block-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
}
.pub_block-link span {
    color: #0C82C2;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
}
.pub_block-link svg {
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    -moz-transition: 0.6s all;
    transition: 0.6s all;   
}
.pub_block-link:hover svg {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            -moz-transform: translateX(10px);
              -o-transform: translateX(10px);
         transform: translateX(10px);   
}
.pub_block-link:hover {
    text-decoration: none;   
}
@media screen and (max-width: 1200px) {
    .pub_content {
        margin-top: 30px;
        gap: 20px;
    }
    .pub_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 200px 20px 1fr;
            grid-template: auto / 200px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .pub_block-info {
        padding: 20px 0;
    }
    .pub_block-title {
        font-size: 14px;
        line-height: 16px;
    }
    .pub_block-title:before {
        bottom: -8px;
        width: 30px;
    }
    .pub_block-link span {
        font-size: 15px;
        line-height: 15px;
    }
}
@media screen and (max-width: 992px) {
    .pub_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 150px 16px 1fr;
            grid-template: auto / 150px 1fr;
        -webkit-column-gap: 16px;
           -moz-column-gap: 16px;
                column-gap: 16px;
    }
    .pub_block-info {
        padding: 16px 0;
    }
    .pub_block-info {
        row-gap: 50px;
    }
    .pub_block-link span {
        font-size: 14px;
        line-height: 14px;
    }
    .pub_content {
        margin-top: 24px;
        gap: 16px;
    }
}
@media screen and (max-width: 768px) {
    .pub_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .pub_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 200px 16px 1fr;
            grid-template: auto / 200px 1fr;
        -webkit-column-gap: 16px;
           -moz-column-gap: 16px;
                column-gap: 16px;
    }
    .pub_block-info {
        row-gap: 30px;
    }
}
@media screen and (max-width: 576px) {
    .pub_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 140px 16px 1fr;
            grid-template: auto / 140px 1fr;
        -webkit-column-gap: 16px;
           -moz-column-gap: 16px;
                column-gap: 16px;
    }
    .pub_block-title {
        font-size: 13px;
        line-height: 14px;
    }
    .pub_block-info {
        padding: 12px 8px 12px 0;
    }
    .pub_block-link span {
        font-size: 13px;
        line-height: 13px;
    }
    .pub_block-link svg {
        width: 14px;   
    }
}
@media screen and (max-width: 340px) {
    .pub_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        -webkit-column-gap: 16px;
           -moz-column-gap: 16px;
                column-gap: 16px;
    }
    .pub_block-info {
        padding: 12px 8px;
    }
    .pub_block-img img {
        height: 140px;
    }
}

/* news */
.news_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template: auto / repeat(3, 1fr);
    gap: 20px;
}
.news_block {
    position: relative;
    padding: 0 18px 46px;
    height: 350px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            -webkit-align-items: end;
               -moz-box-align: end;
            align-items: end;
    overflow: hidden;
}
.news_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    -webkit-filter: brightness(60%);
            filter: brightness(60%);
    
    -webkit-transition: 0.5s all;
    
    -o-transition: 0.5s all;
    
    -moz-transition: 0.5s all;
    
    transition: 0.5s all;
}
.news_block:hover .news_img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            -moz-transform: scale(1.2);
              -o-transform: scale(1.2);
         transform: scale(1.2);   
}
.news_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.news_date {
    position: absolute;
    left: 0;
    top: 0;
    
    padding: 8px 20px;
    background: #0C82C2;
    
    color: #FFF;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}
.news_title {
    position: relative;
    
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
}
.news_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 30px;
    height: 2px;
    background: #fff;
}
@media screen and (max-width: 1200px) {
    .news_wrapper {
        gap: 12px;
    }
    .news_block {
        padding: 0 16px 32px;
        height: 280px;
    }
    .news_title {
        font-size: 15px;
        line-height: 20px;
    }
    .news_date {
        padding: 6px 16px;
    }
}
@media screen and (max-width: 992px) {
    .news_date {
        padding: 4px 14px;
        font-size: 12px;
        line-height: 14px;
    }
    .news_title {
        font-size: 14px;
        line-height: 18px;
    }
    .news_block {
        height: 240px;
    }
}
@media screen and (max-width: 768px) {
    .news_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
            grid-template: auto / repeat(2, 1fr);
        gap: 10px;
    }
    .news_block {
        height: 240px;
    }
}
@media screen and (max-width: 576px) {
    .news_date {
        padding: 4px 10px;
        font-size: 11px;
        line-height: 12px;
    }
    .news_block {
        padding: 0 10px 26px;
    }
    .news_title {
        font-size: 12px;
        line-height: 15px;
    }
    .news_block {
        height: 200px;
    }
}
@media screen and (max-width: 420px) {
    .news_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
}

/* conv */
.all-text {
    color: #666;
    text-align: justify;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.all-text p {
    margin-bottom: 8px;   
}
.all-text img {
    display: block;
    
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 20px auto;   
}
.mt20 {
    margin-top: 20px;   
}
.all-text hr {
    margin: 20px 0;   
}
.all-text ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
.all-text a {
    color: var(--main-color);   
}
@media screen and (max-width: 1200px) {
    .all-text {
        font-size: 15px;
        line-height: 22px;
    }
    .all-text img {
        margin: 16px auto;
    }
}
@media screen and (max-width: 992px) {
    .all-text {
        font-size: 14px;
        line-height: 20px;
    }
    .all-text img {
        margin: 12px auto;
    }
}
@media screen and (max-width: 768px) {
    .mt20 {
        margin-top: 14px;
    }   
}
@media screen and (max-width: 576px) {
    .all-text {
        font-size: 13px;
        line-height: 15px;
    }
    .all-text img {
        margin: 4px auto;
    }
    .all-text ul {
        padding-left: 14px;   
    }
}

.about-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    gap: 12px;
}
.about-list__item {
    padding: 13px 21px;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    background: #EDF9FF;
    
    color: #0C82C2;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.313px;
    
    text-transform: uppercase;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.about-list__item:hover {
    background: #0C82C2;
    color: #fff;
    text-decoration: none;
}
.about-list__item.active {
    background: #0C82C2;
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 992px) {
    .about-list__item {
        padding: 10px 16px;
        font-size: 15px;
        line-height: 15px;
    }
}
@media screen and (max-width: 768px) {
    .about-list__item {
        padding: 8px 12px;
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 576px) {
    .about-list__item {
        padding: 6px 10px;
        font-size: 12px;
        line-height: 14px;
    }
    .about-list {
        gap: 6px;   
    }
}



/* team */
.team_content {
    margin-top: 37px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
}
.team_card {
    padding: 48px 0;
    border-top: 1px solid #D1D1D1;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 376px 69px 1fr;
        grid-template: auto / 376px 1fr;
    -webkit-column-gap: 69px;
       -moz-column-gap: 69px;
            column-gap: 69px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
}
.team_card:nth-child(1) {
    padding-top: 0;
    border-top: unset;
}
.team_card-img {
    height: 100%;   
}
.team_card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.team_card-block {
    padding: 30px 0;   
}
.team_card-info {
    position: relative;
    padding-left: 24px;
}
.team_card-info:before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
              -o-transform: translateY(-50%);
         transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 90%;
    background: #0C82C2;
}
.team_card-name {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;   
}
.team_card-prof {
    margin-top: 3px;
    
    color: #666;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.team_card-text {
    margin-top: 35px;
    
    color: #444;
    text-align: justify;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}
@media screen and (max-width: 1200px) {
    .team_card {
        padding: 40px 0;
        -ms-grid-rows: auto;
        -ms-grid-columns: 340px 40px 1fr;
            grid-template: auto / 340px 1fr;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .team_card-name {
        font-size: 26px;
        line-height: 28px;
    }
    .team_card-prof {
        font-size: 15px;
        line-height: 20px;
    }
    .team_card-text {
        margin-top: 24px;
        font-size: 15px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px) {
    .team_card {
        padding: 30px 0;
        -ms-grid-rows: auto;
        -ms-grid-columns: 300px 30px 1fr;
            grid-template: auto / 300px 1fr;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .team_card-block {
        padding: 20px 0;
    }
    .team_card-name {
        font-size: 24px;
        line-height: 22px;
    }
    .team_card-text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 18px;
    }
    .team_card-prof {
        font-size: 14px;
        line-height: 18px;
    }
    .team_card-info:before {
        width: 3px;
    }
    .team_card-info {
        padding-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .team_card {
        padding: 24px 0;
        -ms-grid-rows: auto;
        -ms-grid-columns: 200px 20px 1fr;
            grid-template: auto / 200px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .team_card-info {
        padding-left: 16px;
    }
    .team_card-name {
        font-size: 20px;
        line-height: 18px;
    }
    .team_card-prof {
        font-size: 12px;
        line-height: 14px;
    }
    .team_card-text {
        margin-top: 12px;
        font-size: 12px;
        line-height: 13px;
    }
}
@media screen and (max-width: 576px) {
    .team_card-img img {
        display: block;
        margin: 0 auto;
        width: auto;
        max-height: 240px;
    }
    .team_card-block {
        padding: 0;
    }
    .team_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        row-gap: 20px;   
    }
}

.mt50 {
    margin-top: 50px;   
}
@media screen and (max-width: 1200px) {
    .mt50 {
        margin-top: 40px;   
    }  
}
@media screen and (max-width: 992px) {
    .mt50 {
        margin-top: 40px;   
    }  
}
@media screen and (max-width: 768px) {
    .mt50 {
        margin-top: 30px;   
    }  
}
@media screen and (max-width: 576px) {
    .mt50 {
        margin-top: 20px;   
    }  
}


/* about */
.about_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 486px 79px 1fr;
        grid-template: auto / 486px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 79px;
       -moz-column-gap: 79px;
            column-gap: 79px;
}
.about_img {
    height: 100%;   
}
.about_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.about_block {
    padding: 30px 0;   
}
@media screen and (max-width: 1300px) {
    .about_wrapper {
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;   
    }
}
@media screen and (max-width: 1200px) {
    .about_wrapper {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 400px 40px 1fr;
            grid-template: auto / 400px 1fr;
    }
}
@media screen and (max-width: 992px) {
    .about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .about_img {
        display: none;
    }
    .about_block {
        padding: 0;   
    }
}

/* task */
.task_text ul li{
    text-decoration: none !important;
}

/* fon */
.fon {
    position: relative;   
}
.fon_block {
    position: relative;
}
.fon_inner {
    position: relative;
    height: -webkit-calc(100vh - 102px);
    height: -moz-calc(100vh - 102px);
    height: calc(100vh - 102px);
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
            justify-content: center;
    padding-bottom: 20px;
}
.fon_title {
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    text-transform: uppercase;   
}
.fon_sub {
    margin-top: 14px;
    max-width: 696px;
    
    color: #E4E4E4;
    font-family: IBM Plex Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
.fon_block img {
    -webkit-filter: brightness(60%);
            filter: brightness(60%);   
}
@media screen and (max-width: 1300px) {
    .fon_title {
        font-size: 48px;
        line-height: 48px;
    }
    .fon_sub {
        margin-top: 12px;
        font-size: 19px;
        line-height: 23px;
    }
}
@media screen and (max-width: 1200px) {
    .fon_title {
        font-size: 42px;
        line-height: 42px;
    }
    .fon_sub {
        margin-top: 12px;
        font-size: 18px;
        line-height: 22px;
    }
    .fon_inner {
        height: -webkit-calc(90vh - 85px);
        height: -moz-calc(90vh - 85px);
        height: calc(90vh - 85px);
    }
}
@media screen and (max-width: 992px) {
    .fon_title {
        font-size: 36px;
        line-height: 36px;
    }
    .fon_sub {
        max-width: 480px;
        margin-top: 10px;
        font-size: 16px;
        line-height: 18px;
    }
    .fon_inner {
        height: -webkit-calc(80vh - 77px);
        height: -moz-calc(80vh - 77px);
        height: calc(80vh - 77px);
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 768px) {
    .fon_inner {
        height: -webkit-calc(70vh - 65px);
        height: -moz-calc(70vh - 65px);
        height: calc(70vh - 65px);
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 576px) {
    .fon_inner {
        height: -webkit-calc(60vh - 42px);
        height: -moz-calc(60vh - 42px);
        height: calc(60vh - 42px);
        padding-bottom: 20px;
    }
    .fon_title {
        font-size: 28px;
        line-height: 28px;
    }
    .fon_sub {
        margin-top: 8px;
        font-size: 13px;
        line-height: 14px;
    }
}























/* pagi */
.pagi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}
.pagi .swiper-pagination-bullet {
    width: 8px;
    height: 5px; 
    -webkit-border-radius: 21px; 
       -moz-border-radius: 21px; 
            border-radius: 21px;
    border: 1px solid #FFF;
    opacity: 0.3;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    height: 5px;
    -webkit-border-radius: 21px;
       -moz-border-radius: 21px;
            border-radius: 21px;
    opacity: 0.7;
    background: #FFF;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}

/* neww */
.neww_content {
    margin-top: 30px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 384px;
        grid-template: auto / 1fr 384px;
    gap: 32px;
}
.neww_left {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 16px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 16px;
    -ms-grid-row-align: start;
        align-self: start;
}
.neww_right {
    padding: 24px 16px;
    background: #F0F7FB;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
            flex-direction: column;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        -webkit-align-self: start;
            align-self: start;
}
.neww_block {
    padding: 24px 0;
    border-top: 1px solid #E2EDF3;
}
.neww_block:nth-child(1) {
    padding-top: 0;
    border-top: unset;
}
.neww_block:nth-last-child(1) {
    padding-bottom: 0;
}
.neww_block-date {
    color: #666;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;   
}
.neww_block-title {
    display: block;
    margin-top: 10px;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.5px;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.neww_block-title:hover {
    color: var(--main-color);
    text-decoration: none;
}
.all_news {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
    
    margin-top: 33px;
    padding: 8px 30px;
    
    border: 1px solid var(--main-color);
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.all_news:hover {
    background: var(--main-color);
    text-decoration: none;
    
    color: #fff;
}
.all_news svg path {
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    -moz-transition: 0.6s all;
    transition: 0.6s all;   
}
.all_news:hover svg path {
    stroke: #fff;
}
@media screen and (max-width: 1300px) {
    .neww_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 360px;
            grid-template: auto / 1fr 360px;
    }
}
@media screen and (max-width: 1200px) {
    .neww_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 280px;
            grid-template: auto / 1fr 280px;
        gap: 20px;
    }
    .neww_block-title {
        font-size: 14px;
        line-height: 18px;
    }
    .neww_block {
        padding: 16px 0;
    }
}
@media screen and (max-width: 992px) {
    .neww_content {
        margin-top: 20px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .neww_left {
        gap: 10px;
    }
    .all_news {
        margin-top: 20px;   
    }
}
@media screen and (max-width: 420px) {
    .neww_left {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .neww_block-date {
        font-size: 12px;
        line-height: 12px;
    }
    .neww_block-title {
        margin-top: 6px;
        font-size: 13px;
        line-height: 16px;
    }
}

.act_text {
    margin-top: 54px;
    padding-top: 42px;
    border-top: 1px solid #D1D1D1;
}
.nap_title {
    margin-top: 38px;
    
    color: #333;
    text-align: justify;
    font-family: IBM Plex Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.cat {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 32px;
}
.mt42 {
    margin-top: 42px;   
}
.cat_item {
    position: relative;
    
    padding: 32px 35px 39px;
    background: #F0F7FB;
}
.cat_item-link {
    position: absolute;
    right: 0;
    bottom: 0;
}
.cat_all-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.cat_item-title {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}
.mt78 {
    margin-top: 78px;   
}
.mt65 {
    margin-top: 65px;   
}
.mt30 {
    margin-top: 30px;   
}
@media screen and (max-width: 1200px) {
    .nap_title {
        margin-top: 20px;
        font-size: 17px;
        line-height: 21px;
    }
    .mt42 {
        margin-top: 20px;
    }
    .cat {
        gap: 20px;
    }
    .cat_item {
        padding: 30px;
    }
    .cat_item-link svg {
        width: 32px;
        height: 32px;
    }
    .cat_item-title {
        font-size: 16px;
        line-height: 18px;
    }
    .act_text {
        margin-top: 40px;
        padding-top: 20px;
    }
    .mt78 {
        margin-top: 60px;   
    }
    .mt65 {
        margin-top: 50px;   
    }
}
@media screen and (max-width: 992px) {
    .nap_title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 18px;
    }
    .cat {
        gap: 10px;
    }
    .cat_item {
        padding: 20px;
    }
    .cat_item-title {
        font-size: 14px;
        line-height: 16px;
    }
    .cat_item-link svg {
        width: 26px;
        height: 26px;
    }
    .act_text {
        margin-top: 12px;
        padding-top: 20px;
    }
    .mt78 {
        margin-top: 50px;   
    }
    .mt65 {
        margin-top: 40px;   
    }
    .mt30 {
        margin-top: 20px;   
    }
}
@media screen and (max-width: 768px) {
    .cat {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .nap_title {
        margin-top: 14px;
        font-size: 15px;
        line-height: 17px;
    }
    .mt78 {
        margin-top: 40px;   
    }
    .mt65 {
        margin-top: 30px;   
    }
}
@media screen and (max-width: 576px) {
    .nap_title {
        margin-top: 14px;
        font-size: 14px;
        line-height: 16px;
    }
    .cat_item {
        padding: 16px;
    }
    .mt78 {
        margin-top: 30px;   
    }
    .mt65 {
        margin-top: 20px;   
    }
}

.title.h80:before {
    height: 80%;   
}

/* accordion */
.accordion-head {
    cursor: pointer;   
}
.accordion-body {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.item_wrapper .cat {
    -ms-grid-rows: auto !important;
    -ms-grid-columns: (1fr)[1] !important;
        grid-template: auto / repeat(1, 1fr) !important;
}
.cat_body-item {
    padding: 20px 0;   
}
.cat_item-link svg path {
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    -moz-transition: 0.6s all;
    transition: 0.6s all;   
}
.cat_item.active .cat_item-link svg path {
    -webkit-transform: translate(43px, -1px) rotate(90deg);
        -ms-transform: translate(43px, -1px) rotate(90deg);
            -moz-transform: translate(43px, -1px) rotate(90deg);
              -o-transform: translate(43px, -1px) rotate(90deg);
         transform: translate(43px, -1px) rotate(90deg);
}
.cat_block.active {
    height: auto;   
}
.cat_body-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 20px;
}
.cat_pres {
    background: #F0F7FB;
}
.cat_pres-title {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}
.cat_pres-block {
    margin-top: 40px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
}
.cat_pres-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
}
.cat_pres-link span {
    color: var(--unnamed, #0C82C2);
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    -webkit-text-decoration-line: underline;
            -moz-text-decoration-line: underline;
         text-decoration-line: underline;   
}
@media screen and (max-width: 1200px) {
    .cat_pres-block {
        margin-top: 20px;
    }
}
@media screen and (max-width: 992px) {
    .cat_pres-block {
        margin-top: 12px;
    }
    .cat_pres-link svg {
        width: 20px; 
        height: auto;
    }
    .cat_pres-link span {
        font-size: 15px;
        line-height: 16px;
    }
    .cat_body-item {
        gap: 10px;
    }
}
@media screen and (max-width: 768px) {
    .cat_body-item {
        padding: 10px 0;
    }
    .cat_pres-block {
        gap: 6px;
    }
}
@media screen and (max-width: 576px) {
    .cat_body-item {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
}


/* otchet */
.otchet_title {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #151515; 
}
.otchet_slider {
    margin-top: 40px;
    display: -ms-grid;
    display: grid;
}
.otchet_slid img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    cursor: pointer;
    -o-object-fit: cover;
       object-fit: cover;
}
.otchet_thumbs {
    margin-top: 20px;   
}
.otchet_thumb {
    width: 100%;
    height: 100%;
    max-height: 140px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    cursor: pointer;
}
@media screen and (max-width: 992px) {
    .otchet_thumbs {
        margin-top: 10px;
    }
    .otchet_thumb {
        max-height: 120px;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px
    }
}
@media screen and (max-width: 768px) {
    .otchet_thumbs {
        margin-top: 10px;
    }
    .otchet_thumb {
        max-height: 100px;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px
    }
}

/* post */
.post_slider .slick-track{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex}
.post_slider .slick-slide{height:auto}
.post_slider .slick-track{margin-left:0}
@media screen and (max-width: 480px) {
    .slide_space .slick-slide{margin:0 16px}   
}
.slide_space .slick-list{margin:0 -16px}

.post-img {
    max-width: 384px;
    max-height: 271px;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 20px;
       -moz-border-radius: 20px;
            border-radius: 20px;
}
.post_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.post-title {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #151515;   
}
.post-subtitle {
    margin-top: 12px;
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #151515;   
}
.post-date {
    position: relative;
    margin-top: 28px;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #888888;
}
.post-date:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}
.post-text {
    margin-top: 30px;
    width: 100%;
}
.post-text iframe {
    margin-top: 20px;   
}
.post-text p {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #151515;
    
    margin-bottom: 8px;   
}
.post_slider {
    margin-top: 40px;   
}
@media screen and (max-width: 1300px) {
    .post_slider a {
        padding: 0 10px;   
    }
}
@media screen and (max-width: 992px) {
    .post-img {
        max-width: 260px;
    }
    .post-title {
        font-size: 20px;
        line-height: 22px;
    }
    .post-subtitle {
        margin-top: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .post-date {
        font-size: 14px;
        line-height: 14px;
    }
    .post_slider {
        margin-top: 30px;
    }
    .post_slider {
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .post-img {
        max-width: 300px;
    }
    .post-title {
        font-size: 18px;
        line-height: 20px;
    }
    .post-subtitle {
        margin-top: 20px;
        font-size: 16px;
        line-height: 16px;
    }
    .post_up {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                -webkit-align-items: start;
                   -moz-box-align: start;
                align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                -webkit-flex-direction: column;
                   -moz-box-orient: vertical;
                   -moz-box-direction: normal;
                flex-direction: column;
        row-gap: 20px;
    }
    .post-text iframe {
        height: 300px;  
    }
    .post-text p {
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 576px) {
    .post-img {
        height: 180px;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
    }
    .post_up {
        row-gap: 12px;
    }
    .post-title {
        font-size: 16px;
        line-height: 18px;
    }
    .post-date {
        margin-top: 14px;
        font-size: 12px;
        line-height: 12px;
    }
    .post-subtitle {
        margin-top: 12px;
        font-size: 12px;
        line-height: 15px;
    }
    .post_slider {
        margin-top: 20px;
    }
}
@media screen and (nax-width: 480px) {
    .post_slider a {
        padding: 0 10px;
    }   
    .post_slider img {
        margin: 0 auto;
    }   
}


/* страница поиск */
.poisk {
    min-height: -webkit-calc(100vh - 302px);
    min-height: -moz-calc(100vh - 302px);
    min-height: calc(100vh - 302px);   
}
/* страница поиск */
.poisk__search {
    margin-top: 40px;   
}
.poisk__search .ss-search-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.poisk__search .ss-search-form__input input {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid var(--main-color) !important;
    text-align: left;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    width: 100%;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-edge: cap;
    color: #151515;
}
.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input:-moz-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__submit {
    width: 50px;
    height: 50px;
    padding: 10px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    outline: none !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
            justify-content: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    border: 1px solid var(--main-color) !important;  
}
.poisk__search .ss-search-form__submit:hover {
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    background: var(--main-color);
    color: #fff;
}
.poisk__search .ss-search-form__submit svg path, .poisk__search .ss-search-form__submit svg circle {
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
}
.poisk__search .ss-search-form__submit:hover svg path, .poisk__search .ss-search-form__submit:hover svg circle {
    stroke: #fff;   
}
.poisk__result {
    margin-top: 40px;   
}
.poisk__result .ss-result {
    margin-top: 20px;   
}
.poisk__result p {
    font-family: IBM Plex Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__title {
    margin-top: 10px;
}
.poisk__result .ss-result__title a {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #151515;
    text-decoration: none;
}
.poisk__result .ss-result__title a:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
    text-decoration: none;
    color: #BE2529;
}
.poisk__result .ss-result__text {
    margin-top: 10px;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__text mark {
    padding: 0.2em;
    color: #151515;
}
.poisk__result .ss-result__url a {
    margin-top: 12px;
    display: block;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--main-color);
    text-decoration: none;
}
.poisk__result .ss-result hr {
    margin-top: 20px;   
}
@media screen and (max-width: 576px) {
    .poisk__result {
        margin-top: 20px;
    }
    .poisk__result .ss-result__text {
        font-size: 14px;
        line-height: 20px;
    }
    .poisk__result .ss-result hr {
        margin-top: 10px;
    }
    .poisk__search {
        margin-top: 30px;
    }
    .poisk__search .ss-search-form__input input {
        height: 42px;
    }
    .poisk__search .ss-search-form__submit {
        width: 50px;
        height: 42px;
    }
    .poisk__search .ss-search-form__input {
        -webkit-column-gap: 6px;
        -moz-column-gap: 6px;
        column-gap: 6px;
    }
    .poisk__result p {
        font-size: 14px;
        line-height: 18px;
    }
    .poisk__result .ss-result__title a {
        display: block;
        font-size: 16px;
        line-height: 20px;
    }
}


/* pagination */
.pagination {
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
            justify-content: center;
}
.pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    gap: 5px;
    
    list-style-type: none;
}
.pagination__arrow {
    width: 39px;
    height: 37px;
    
    -webkit-border-radius: 10px;
    
       -moz-border-radius: 10px;
    
            border-radius: 10px;
    border: 1px solid #D7D7D7;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: -webkit-flex;
    
    display: -moz-box;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
            justify-content: center;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.pagination__arrow.gray {
    background: #F6F6F6;
}
.pagination__arrow.gray {
    pointer-events: none;
    cursor: default;
}
.pagination__arrow.gray svg path {
    stroke: #D9D6D6;
}
.pagination__arrow:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
}
.pagination__arrow svg path {
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    -moz-transition: 0.6s all;
    transition: 0.6s all;
}
.pagination__arrow:hover svg path {
    stroke: #fff;
}
.pagination__item {
    display: block;
    height: 37px;
    padding: 2px 12px;
    
    color: #676767;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 2px;
    
    -webkit-transition: 0.6s all;
    
    -o-transition: 0.6s all;
    
    -moz-transition: 0.6s all;
    
    transition: 0.6s all;
}
.pagination__item:hover {
    text-decoration: none;
    color: var(--main-color);
}
.pagination__item.active {
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    border: 1px solid #D7D7D7;
    background: #F6F6F6;
    
    color: var(--main-color);
}
@media screen and (max-width: 1200px) {
    .pagination {
        margin-top: 60px;
    }
}
@media screen and (max-width: 992px) {
    .pagination {
        margin-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .pagination {
        margin-top: 40px;
    }
}
@media screen and (max-width: 576px) {
    .pagination {
        margin-top: 30px;
    }
}