:root {
    --main-color-text: #697E97;
    --main-color: #0074EE;
    --bg: #F8FAFB;
}

body {
    font-family: Lato;
    font-style: normal;
    background: var(--bg);
}

img {
    pointer-events: none!important;
}

body.mt80 {
    margin-top: 80px;
}

h1,
.h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 120%;
}

h2,
.h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    color: #4B596A;
}

h3,
.h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}

.title-h3 {
    color: #697E97;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
}

header .navigation .menu li a.disabled {
    pointer-events: none;
    cursor: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}
.d-none{
    display: none!important;
}
.btn_mdf {
    display: flex;
}

.btn_mdf a.btn {
    border-radius: 8px;
    background: var(--main-color);
    padding: 12px 28px;
    width: max-content;
    color: #fff;
}

.btn_mdf a.btn i {
    border-color: #fff;
    /* margin-bottom: 3px; */
}

.btn_mdf a.btn:hover {
    background: #1587FF;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.container-external {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

.container-news {
    max-width: 1075px;
    margin: 0 auto;
    padding: 0;
}

.container-news img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.homePage section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.bg_section {
    background: var(--bg);
}

.homePage section h2 {
    text-align: center;
}

i.arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    margin-bottom: 2px;
}

i.arrow.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

i.arrow.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

i.arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

i.arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.mobile-menu {
    display: none;
}

.burger-menu {
    display: none;
    width: 35px;
    height: 35px;
    position: relative;
    border-radius: 5px;
    background: #EEF2F5;
}

.burger-menu span {
    display: block;
    width: 15px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--main-color);
    position: absolute;
    left: 10px;
    opacity: 1;
    transition: all linear 0.3s;
}

.burger-menu span:first-child {
    top: 10px;
}

.burger-menu span:nth-child(2) {
    top: 16px;
}

.burger-menu span:last-child {
    top: 22px;
}

.mobile-menu {
    width: 300px;
    height: calc(100vh - 48px);
    background: #fff;
    padding: 5%;
    position: fixed;
    top: 0;
    z-index: 100;
    right: 0;
    overflow-y: scroll;
}

.mobile-menu .menu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.mobile-menu .menu li {
    margin-bottom: 10px;
}

.mobile-menu .menu li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 148%;
    color: #686868;
}

.mobile-menu .mod-languages {
    text-align: center;
}

.mobile-menu .exit {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.mobile-menu .exit span {
    position: absolute;
    width: 28px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #686868;
    transform: rotate(-45deg);
    display: inline-block;
    top: 10px;
}

.mobile-menu .exit span:last-child {
    transform: rotate(45deg);
}

.mobile-menu .menu li.parent ul {
    display: none;
    padding-left: 20px;
    padding-top: 10px;
}

.mobile-menu .menu li.parent {
    position: relative;
}

.mobile-menu .menu li.parent.active:before {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 12px;
}

.mobile-menu .menu li.parent:before {
    content: '';
    border: solid #686868;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: -0;
    position: absolute;
    top: 6px;
    cursor: pointer;
}

.mobile-menu .menu li.parent.active ul,
.mobile-menu .menu li.parent.active ul li.parent.active ul,
.mobile-menu .menu li.parent.active ul li.parent.active ul li.parent.active ul {
    display: block;
}

.mobile-menu .menu li.parent.active ul li ul,
.mobile-menu .menu li.parent.active ul li.parent.active ul li ul {
    display: none;
}


/*-----------------------------*/

header.fixedMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

header {
    background: #fff;
}

header .container {
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    justify-content: space-between;
}

header .navigation {
    display: flex;
    align-items: center;
}

header .navigation .menu {
    display: flex;
    align-items: center;
}

header .navigation .menu .nav-child {
    display: none;
    position: absolute;
}

header .navigation .menu li.parent ul li:hover a,
header .navigation .menu li:hover .separator,
header .navigation .menu li:hover a {
    color: #4B596A;
}

header .navigation .menu li.parent ul.nav-child:before {
    content: '';
    height: 70px;
    top: -30px;
    left: 0;
    position: absolute;
    width: 100%;
    /* background: red; */
}


/* header .navigation .menu li.parent:hover ul.nav-child,
header .navigation .menu li.parent:hover ul.nav-child, */

header .navigation .menu li.parent.active ul.nav-child {
    display: block;
}

header .navigation .menu li.parent ul.nav-child {
    /* display: block; */
    left: -20px;
    width: max-content;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    z-index: 10;
}

header .navigation .menu li.parent ul.nav-child ul {
    left: 107%;
    top: -17px;
    margin-top: 0;
}

header .navigation .menu li.parent ul.nav-child ul li ul {
    left: 0;
    top: 35px;
}

header .navigation .menu li ul li {
    margin-right: 0;
    margin-bottom: 8px;
}

header .navigation .menu li ul li:last-child {
    margin-bottom: 0;
}

header .navigation .menu li {
    margin-right: 37px;
    position: relative;
    cursor: pointer;
}

header .navigation .menu li:last-child {
    margin-right: 0;
}

header .navigation .menu li:hover ul li a,
header .navigation .menu li a,
header .navigation .menu li .separator {
    color: var(--main-color-text);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

header .navigation .menu li.deeper.parent:after {
    content: '';
    border: solid var(--main-color-text);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 4px;
}

header .navigation .menu li.deeper.parent.active:after {
    margin-bottom: 1px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}


/**/


/* header .navigation .menu li.parent:hover ul {
    display: block;
} */


/**/

header .navigation .mod-languages {
    margin-left: 59px;
}

.mod-languages select.inputbox option {
    border: none;
}

.mod-languages select.inputbox {
    border-radius: 5px;
    border: none;
    background: #EEF2F5;
    width: 35px;
    height: 35px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mod-languages select.inputbox::-ms-expand {
    display: none;
}

.mod-languages select.inputbox:focus-visible {
    border: none;
    outline: none;
}

.mod-languages .chzn-container-single .chzn-single {
    border: none;
    background: #EEF2F5;
    width: 35px;
    height: 35px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-languages .chzn-container-single .chzn-single div {
    display: none;
}

.mod-languages .chzn-container-single .chzn-single span {
    margin: 0;
}

.mod-languages .chzn-container .chzn-results {
    margin: 0;
    padding: 0;
}

.mod-languages .chzn-container-single .chzn-drop {
    width: 35px;
}

.mod-languages .chzn-container-active.chzn-with-drop .chzn-single {
    border: none;
    box-shadow: none;
    background-image: none;
}

.mod-languages .chzn-container .chzn-drop {
    border: none;
}

.mod-languages .chzn-container .chzn-results li {
    text-align: center;
}

section.home_slider img.icon {
    width: 25px;
    height: 25px;
}

section.home_slider .item {
    display: flex;
    justify-content: end;
}

section.home_slider .item .column-right {
    position: relative;
    overflow: hidden;
}

section.home_slider .item .column-right:before {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #005BBB 1%, rgba(0, 91, 187, 0.00) 27.60%, rgba(0, 91, 187, 0.00) 100%);
    height: 100%;
    width: 100%;
}


/* section.home_slider .item .column-right img {
    height: auto;
    width: 100%;
    min-height: 100%;
} */

section.home_slider .item .column-right img {
    height: 100%;
    width: auto;
}

section.home_slider {
    color: #fff;
    background: #005BBB;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

section.home_slider .item .column-right {
    width: 50%;
    background-size: cover!important;
    height: 640px;
}

section.home_slider .item .column-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    max-width: 749px;
    margin-right: -30px;
    z-index: 1;
}

section.home_slider .item .column-left .top {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
}

section.home_slider .item .column-left .top img {
    margin-right: 12px;
}

section.home_slider .item .column-left .h1 {
    margin-bottom: 20px;
}

section.home_slider .item .column-left p.h3 {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.90);
    max-width: 650px;
}

section .titleDescription {
    text-align: center;
    color: #697E97;
}

section.news {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
}

section.news h2 {
    text-align: left;
}

section.news .itemTab ul {
    display: flex;
    justify-content: space-between;
}

section.news .title_article {
    color: #4B596A;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 20px;
    margin-top: 12px;
}

section.news .descriptionTitle {
    color: #697E97;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

section.news li.item {
    /*max-width: 345px;*/
    margin-right: 10px;
}

section.news li.item:last-child {
    margin-right: 0;
}

section.news img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

section.news li.item .title_article {
    height: 44px;
}

section.news li.item .descriptionTitle {
    height: 68px;
}

.readmore,
.readmore:hover {
    color: #0074EE;
    font-size: 16px;
    font-weight: 700;
    line-height: 95%;
    position: relative;
}

section.news .btn_mdf a.btn {
    background: none;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

section.news .btn_mdf a.btn:hover {
    background: rgba(21, 135, 255, 0.10);
}

section.news .btn_mdf a.btn i {
    border-color: var(--main-color);
}

section.news .bottom {
    margin-top: 20px;
}

.readmore i.right {
    border: solid #0074EE;
    border-width: 0 3px 3px 0;
}


/*------------------------------------*/

section.fond {
    padding-top: 84px;
    padding-bottom: 90px;
    /* background: var(--bg); */
}

section.fond .block_found {
    max-width: 1075px;
    margin: 0 auto;
}

section.fond h2 {
    margin-bottom: 30px;
    text-align: center;
}

section.fond .titleDescription {
    max-width: 775px;
    color: #697E97;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 auto 40px auto;
}

section.fond .navigation_block {
    margin-bottom: 15px;
}

section.fond .navigation_block ul {
    display: flex;
    justify-content: space-between;
}

section.fond .navigation_block li.item {
    border-radius: 8px;
    background: #EEF2F5;
    padding: 15px 24px;
    margin-right: 20px;
    width: 300px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.fond .navigation_block li.item img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

section.fond .navigation_block li.item:last-child {
    margin-right: 0;
}

section.fond .navigation_block li.item a {
    display: flex;
    align-items: center;
}

section.fond .content_found {
    border-radius: 8px;
    background: #697E97;
    padding-bottom: 62px;
}

section.fond .content_found img {
    width: 100%;
}

section.fond .description {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    max-width: 775px;
    margin: 38px auto 0 auto;
}

section.fond .readmore {
    margin-top: 40px;
    text-align: center;
}

section.fond .readmore .btn_mdf {
    justify-content: center;
}

section.fond h3 {
    color: #697E97;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

section.fond h3 i {
    border-color: #697E97;
    margin-left: 14px;
    margin-bottom: 3px;
}


/*----------------------------------------*/

section.directions {
    background: #fff;
    padding-top: 90px;
    padding-bottom: 90px;
}

section.directions h2 {
    margin-bottom: 30px;
    text-align: center;
}

section.directions .titleDescription {
    max-width: 775px;
    margin: 0 auto 40px auto;
}

section.directions .category_direction {
    display: flex;
}

section.directions .category_direction li {
    margin-right: 20px;
}

section.directions .category_direction li .content_item {
    position: relative;
}

section.directions .category_direction li:last-child {
    margin-right: 0;
}

section.directions .category_direction li .title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    border-radius: 0px 0px 8px 8px;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, #222 100%);
    width: 100%;
    padding: 74px 0 30px 0;
}

section.directions .category_direction li {
    border-radius: 0px 0px 8px 8px;
    background: linear-gradient(180deg, rgba(0, 91, 187, 0.00) 0%, rgba(0, 91, 187, 0.15) 100%);
    padding: 6px;
}


/*----------------------------------------*/

section.parthners {
    /* background: var(--bg); */
    padding: 90px 0 80px 0;
    margin-bottom: 0;
}

section.parthners .custom {
    text-align: center;
}

section.parthners .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.parthners img {
    margin-right: 30px;
    margin-bottom: 10px;
    width: 118px;
    height: 118px;
    object-fit: cover;
    background: #fff;
}


/*-------------------------------------*/

footer {
    background: #1E2935;
    padding-top: 97px;
}

footer hr {
    margin-top: 90px;
    border: 1px solid rgba(167, 185, 207, 0.08);
}

footer .footer_bottom {
    padding: 27px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer_navigation {
    display: flex;
}

footer .footer_navigation .title {
    color: #A7B9CF;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

footer .footer_navigation ul {
    margin-top: 40px;
}

footer .footer_navigation li {
    margin-bottom: 16px;
}

footer .footer_navigation li:last-child {
    margin-right: 0;
}

footer a:hover {
    color: #0074EE;
}

footer a {
    color: #697E97;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
}

footer .footer_top {
    display: flex;
    justify-content: space-between;
}

footer .footer_navigation .item {
    margin-right: 77px;
}

footer .footer_navigation .item.contact {
    margin-right: 0;
}

footer .footer_navigation .item.contact ul {
    margin-bottom: 40px;
}

footer .copyright {
    color: #697E97;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}

footer .footer_bottom .navigation .custom {
    display: flex;
    align-items: center;
}

footer .footer_bottom .navigation .social {
    display: flex;
    align-items: center;
    margin-left: 141px;
}

footer .footer_bottom .navigation .social a {
    margin-right: 17px;
}

footer .footer_bottom .navigation .social a:last-child {
    margin-right: 0;
}

.article {
    padding-bottom: 120px;
}
.page-header h1{
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    color: #4B596A;
}
.article .page-header,
.blogpage-news .page-header {
    padding-top: 90px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(167, 185, 207, 0.08);
    margin-bottom: 40px;
}

.breadcrumb {
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
}

.breadcrumb li i {
    border-color: #0074EE;
    margin-left: 9px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-right: 9px;
}
.breadcrumb li:after{
    content: '';
        border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    margin-bottom: 2px;
        border-color: #0074EE;
    margin-left: 9px;
        transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.breadcrumb li:first-child:after,
.breadcrumb li:last-child:after {
    content: none!important;
}

.breadcrumb li:last-child {
    margin-right: 0;
}

.breadcrumb li a,
.breadcrumb li a span{
    color: #0074EE;
}

.article p {
    margin-bottom: 18px;
    color: #697E97;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}
.breadcrumb li span{
        color: #697E97;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
}
.article ul li {
    color: #697E97;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.article ul li:before {
    content: '';
    background: url('/images/check_li.svg') no-repeat;
    height: 16px;
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    margin-right: 12px;
}

.article hr {
    margin: 100px 0;
    border: 1px solid rgba(167, 185, 207, 0.15);
}

.block_history1 {
    display: flex;
    justify-content: space-between;
}

.block_history1 .block_right {
    max-width: 675px;
    margin-left: 10px;
}

.block_history2 .block_right img,
.block_history1 .block_left img {
    width: 100%;
}

.block_history1 .block_right .title {
    color: #697E97;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 40px;
}

.block_history2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.block_history2 .block_left {
    max-width: 630px;
}

.block_history2 .block_left .title-h3 {
    max-width: 602px;
}

.block_history2 h2 {
    margin: 34px 0 60px;
}

.block_history2 .h3 {
    color: #0074EE;
}

.page-history .title-h3 {
    margin-bottom: 30px;
}

.page-history .medalisti_list{margin-top: 40px;}
.page-history .medalisti_list .btn{margin: 0 auto;}
.page-history .medalisti_list .list{opacity: 0;height: 0; transition: opacity 0.1s;}
.page-history .medalisti_list .list.active{
    margin-top: 30px;
    opacity: 1;
    height: auto;
    transition: opacity 2s;
    border-radius: 8px;
    border: 1px solid rgba(167, 185, 207, 0.30);
    padding: 30px 20px;
    width: -webkit-fill-available;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.page-history .medalisti_list .list li{align-items: baseline;}
.page-history .medalisti_list .list li .name{font-weight: 700;}
.page-history .medalisti_list .list li .descriptioon{}
.page-history .medalisti_list .list li .date{}

.block_history3 {
    display: flex;
    justify-content: space-between;
}

.block_history3 .block_left {
    border-radius: 8px;
    background: #EEF2F5;
    padding: 60px 40px;
    max-width: 630px;
    margin-right: 20px;
}

.block_history3 .block_right {
    border-radius: 8px;
    border: 1px solid rgba(167, 185, 207, 0.30);
    padding: 60px 40px;
}

.page-mission .article {
    padding-bottom: 0;
}

.page-mission .article .page-header {
    margin-bottom: 0;
}

.page-mission .block-mission {
    background: #697E97;
    border-radius: 8px 8px 0px 0px;
}

.page-mission .block-mission .h2 {
    max-width: 981px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    padding: 82px 10px 108px 10px;
    position: relative;
}

.page-mission .flag_missia {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    top: -28px;
}

.page-mission .block-mission img {
    width: 100%;
}

.block_navigation_comand {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 36px;
    border-left: 2px solid rgba(167, 185, 207, 0.08);
    width: 49%;
}

.block_navigation_comand .item {
    cursor: pointer;
    margin-bottom: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    width: 295px;
}

.block_navigation_comand .item.active,
.block_navigation_comand .item:hover {
    background: #EEF2F5;
}

.block_navigation_comand .item.active .job,
.block_navigation_comand .item:hover .job {
    border-radius: 5px;
    background: #FFF;
}

.block_navigation_comand .item .name {
    color: #4B596A;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}

.block_navigation_comand .item img {
    margin-right: 16px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.block_navigation_comand .item .description {
    display: none;
}

.block_navigation_comand .item .job {
    border-radius: 5px;
    background: var(--grey, #EEF2F5);
    padding: 8px 12px;
    color: #697E97;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
}

.block_check #result_check img {
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 50%;
}

.block_check #result_check .name {
    color: #4B596A;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

.block_check #result_check .job {
    display: none;
}

.block_check #result_check .description {
    display: block;
    color: #697E97;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    max-width: 640px;
}

.page-command .content_page {
    display: flex;
}

.page-command .content_page .block_check {
    width: 48%;
    margin-right: 10px;
}

.page-parthners .content_page-parthners {
    /* margin-bottom: 120px; */
}

.page-parthners .content_page-parthners .item {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    padding: 0px 60px 20px 0;
    border-bottom: 1px solid rgba(167, 185, 207, 0.08);
}

.page-parthners .content_page-parthners .item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.page-parthners .item .image {
    border-radius: 50%;
    background: #fff;
    margin-right: 105px;
    width: 200px;
    height: 200px;
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-parthners .item .image img{
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: 50%;
}
.page-parthners .item .title-h3 {
    margin-bottom: 20px;
}

.page-parthners .item .description {
    color: #697E97;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    padding-top: 5px;
    max-width: 980px;
}

.blogpage-news .cat-children {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-gap: 20px;
}

.blogpage-news .cat-children .item .block_item {
    width: min-content;
    margin: 0 auto;
}

.blogpage-news .cat-children .item-title {
    margin-top: 8px;
    text-align: center;
}

.blogpage-news .cat-children .item-title a {
    color: #4B596A;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.blogpage-news {
    padding-bottom: 120px;
}

.listArticle-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    grid-gap: 20px;
    margin-bottom: 30px;
}
.blogpage-news .listArticle-category .page-header{
    margin: 0;
    padding: 0;
    border: unset;
}
.blogpage-news .listArticle-category .page-header h2{
    color: #4B596A;
    margin-top: 12px;
    height: 47px;
        font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}

.listArticle-category h3 {
    color: #4B596A;
    margin-top: 12px;
}

.listArticle-category p.description {
    margin-top: 20px;
    color: #697E97;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.listArticle-category .bottom {
    margin-top: 10px;
}

.listArticle-category img {
    width: 340px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.listArticle-category .item {
    max-width: 340px;
    margin: 0 auto;
}

.container-news .item-image {
    margin-bottom: 60px;
}

.container-news .item-image img {
    width: 100%;
    border-radius: 8px;
}

.page-politika .article {
    padding-bottom: 60px;
}

.page-politika .title-h3 {
    margin-bottom: 20px;
}


/* .page-politika .block_political {
    display: flex;
    flex-wrap: wrap;
} */

.page-politika .block_political .item {
    /* width: 42%; */
    margin-bottom: 60px;
    min-width: 300px;
    margin-right: 130px;
}


/* .page-politika .block_political .item:nth-child(2n) {
    margin-right: 0;
} */

.page-404 {
    background: #00254C;
}

.page-404 .content-404 {
    position: relative;
    background: url('/images/404.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: calc( 100vh - 87px);
}

.page-404 footer {
    display: none;
}

.text_404 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text_404 .btn_mdf a {
    margin: 0 auto;
}

.text_404 h2 {
    margin-bottom: 20px;
    color: #fff;
}

.text_404 p {
    margin-bottom: 30px;
    color: #A7B9CF;
    max-width: 383px;
}

.content-contact .item.form {
    margin-top: 40px;
    margin-bottom: 166px;
}

.content-contact h2.address {
    margin-bottom: 20px;
    color: var(--main-color-text);
}

.content-contact .item.form #mod-sfnforms-container-154 {
    position: relative;
}

.content-contact .item.form #mod-sfnforms-container-154:before {
    content: '';
    background: url('/images/allPage/bg_formContact.png') no-repeat;
    background-size: cover;
    background-position: bottom;
    /* padding: 40px 240px 166px 117px; */
    /* width: max-content; */
    position: absolute;
    left: -117px;
    top: -40px;
    bottom: -166px;
    right: -240px;
}

.content-contact .item.map {
    /* margin-right: 10%; */
    margin-top: 40px;
    /* margin-left: 12%; */
}

.content-contact {
    display: flex;
    justify-content: space-between;
}

.page-contact .article {
    padding-bottom: 0;
    overflow-x: hidden;
}

.page-contact form.contactForm {
    border-radius: 8px;
    background: #FFF;
    padding: 75px 34px;
    border: none;
    width: 459px;
        z-index: 1;
    position: relative;
}
.page-contact form.contactForm .control-group {
    margin: 0 0 15px 0;
}
.page-contact form.contactForm input,
.page-contact form.contactForm textarea {
    border-radius: 4px;
    border: 1px solid #E9EEF4;
    background: #FFF;
    padding: 0 10px;
    width: calc(100% - 20px);
}

.page-contact form.contactForm input {
    height: 50px;
    width: 100%;
}

.page-contact form.contactForm label.control-label {
    margin: 0;
    color: #697E97;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
}

.article form#uForm1 p {
    font-size: 16px;
}

.page-contact form.contactForm .submit_form {
    position: relative;
    width: max-content;
    margin: 0;
}

.page-contact form.contactForm .submit_form button {
    border-radius: 8px;
    background: var(--main-color);
    padding: 14px 35px 14px 28px;
    color: #FFF;
    width: max-content;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    border: unset;
}

.page-contact form.contactForm .submit_form i {
    position: absolute;
    border-color: #fff;
    right: 22px;
    top: 22px;
}

.page-contact .article .page-header {
    margin-bottom: 0;
}

.page-contact .contact_info {
    margin-top: 40px;
}

.page-contact .contact_info .social {
    margin-top: 30px;
}

.page-contact .contact_info li.mail:before {
    content: '';
    background: url('/templates/custom/icon/mail.svg') no-repeat;
    width: 16px;
    height: 16px;
}

.page-contact .contact_info li.phone:before {
    content: '';
    background: url('/templates/custom/icon/phone.svg') no-repeat;
    width: 16px;
    height: 16px;
}

.page-contact .contact_info li.phone:before {
    content: '';
    background: url('/templates/custom/icon/phone.svg') no-repeat;
    width: 16px;
    height: 16px;
}

.page-contact .contact_info .social a {
    margin-right: 26px;
}

.page-contact .contact_info .social a:last-child {
    margin-right: 0;
}

.page-henotsyd .article .navigation ul li::before {
    content: none;
}

.page-henotsyd .article .navigation ul li {
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border: 1px solid #DBE6F4;
}

.page-henotsyd .article .navigation ul li:hover {
    background: #EEF2F5;
    border-color: #EEF2F5;
}

.page-henotsyd .article .navigation ul li:last-child {
    margin-bottom: 0;
}

.page-henotsyd .article .navigation {
    margin-top: 100px;
}

.page-henotsyd .article .navigation ul li .title-h3 {
    width: 30%;
}

.page-henotsyd .article .navigation ul li .year {
    color: #A7B9CF;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    width: 30%;
}

.navigationCategory-articleList ul li::before {
    content: none;
}

.navigationCategory-articleList ul li {
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border: 1px solid #DBE6F4;
    margin-bottom: 15px;
}

.navigationCategory-articleList ul li:hover {
    background: #EEF2F5;
    border-color: #EEF2F5;
}

.navigationCategory-articleList ul li:last-child {
    margin-bottom: 0;
}

.navigationCategory-articleList {
    margin-top: 100px;
}

.navigationCategory-articleList ul li .title-h3 {
    width: 70%;
}

.page-henotsyd .content-golodomor {
    display: flex;
    justify-content: space-between;
}

.page-henotsyd .content-golodomor .text {
    max-width: 675px;
    margin-left: 10px;
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-next span {
    display: none;
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-prev,
.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    position: absolute;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-prev {
    background: url('/templates/custom/icon/btn_left.svg') no-repeat;
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-next {
    background: url('/templates/custom/icon/btn_right.svg') no-repeat;
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-prev {
    left: 40px;
}

.owl-carousel-homeBaner.owl-carousel .owl-nav button.owl-next {
    right: 40px;
}

.owl-carousel-homeBaner.owl-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel-homeBaner.owl-carousel .owl-dots button {
    border-radius: 2px;
    background: rgba(238, 242, 245, 0.15);
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

.owl-carousel-homeBaner.owl-carousel .owl-dots button:last-child {
    margin-right: 0;
}

.owl-carousel-homeBaner.owl-carousel .owl-dots button.active {
    background: rgba(238, 242, 245, 0.50);
}

.pagination {
    margin-top: 40px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.pagination ul li::before {
    content: none;
}

.pagination ul li {
    margin-right: 20px;
}

.pagination ul li a:hover {
    color: #0074EE;
}

.pagination ul li.number a,
.pagination ul li.number span {
    border: 1px solid #EEF2F5;
    padding: 5px 10px;
    border-radius: 8px;
}

.pagination ul li:last-child {
    margin-right: 0;
}

.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pageNotWrite {
    height: 50vh;
}

.page-news .blogpage-news .listArticle-category p.description {
    height: 68px;
    overflow: hidden;
}

.page-news .blogpage-news .listArticle-category h3 {
    height: 47px;
}

.page-photogallery .gridPhotogallery img {
    max-width: 340px;
    transition: transform 1s;
}

.page-photogallery .gridPhotogallery .item {
    margin-bottom: 20px;
}
h2.loadGallery{text-align: center;}
@keyframes pulse {
    0% {
        font-size: 16px;
    }
    50% {
        font-size: 20px;
    }
    100% {
        font-size: 16px;
    }
}

.pulse-text {
    animation: pulse 2s infinite;
}