@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BlackItalic.woff2') format('woff2'),
         url('fonts/Roboto-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
         url('fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BoldItalic.woff2') format('woff2'),
         url('fonts/Roboto-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-LightItalic.woff2') format('woff2'),
         url('fonts/Roboto-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
         url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-ThinItalic.woff2') format('woff2'),
         url('fonts/Roboto-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Black.woff2') format('woff2'),
         url('fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-MediumItalic.woff2') format('woff2'),
         url('fonts/Roboto-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Thin.woff2') format('woff2'),
         url('fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2'),
         url('fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.woff2') format('woff2'),
         url('fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2'),
         url('fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

html,body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    font-size: 10px;
}
* {
    margin: 0;
    padding: 0; 
    font-family: 'Roboto';
}
.wrapper {
    width: 1180px;
    margin: 0 auto;
}
.top_menu {
    padding: 9px 0;
}
.top_menu > ul {
    display: flex;
        list-style: none;
}
.top_menu > ul > li {
    margin-right: 58px;
}
.top_menu > ul > li:last-child {
    margin-right: 0;
}
.top_menu > ul > li > a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #000;
    transition: 0.5s;
}
.top_menu > ul > li > a:hover {
    color: #295A5B;
}
#top_links > .wrapper {
    display: flex;
        align-items: center;
        justify-content: space-between;
}
.links_lang a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #000;
    margin-right: 15px;
    text-transform: uppercase;
}
.links_lang a:last-child {
    margin-right: 0;
}
.right_top_links {
    display: flex;
        align-items: center;
}
.eye_link {
    background: url(img/eye.svg) no-repeat;
    width: 32px;
    height: 18px;
    display: block;
    margin-right: 28px;
}
#hero {
    background: url(img/hero.jpg) no-repeat;
    background-position: center;
    padding-top: 32px;
    padding-bottom: 180px;
}
header {
    background: #295A5B;
    padding: 15px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px 80px;
    z-index: 999;
}
#hero.sticky {
    padding-top: 130px;
}
.main_menu > ul {
    display: flex;
    align-items: center;
    list-style: none;
}
.main_menu > ul > li {
    margin-right: 43px;
    position: relative;
}
.main_menu > ul > li:last-child {
    margin-right: 0px;
}
.main_menu > ul > li > a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}
.main_menu > ul > li > a:hover {
    opacity: 0.7;
}
.main_menu > ul > li > ul {
position: absolute;
    top: 20px;
    background: #295A5B;
    z-index: 9;
    min-width: 260px;
    list-style: none;
    left: -21px;
    right: 0;
    margin: auto;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    padding-top: 40px;
}
.main_menu > ul > li > ul > li {
    margin-bottom: 20px;
}
.main_menu > ul > li > ul > li:last-child {
    margin-bottom: 0;
}
.main_menu > ul > li > ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
	transition: 0.5s;
}
.main_menu > ul > li > ul > li > a:hover {
	opacity: 0.7;
}
.main_menu > ul > li:hover > ul {
opacity: 1;
visibility: visible;
}
.main_menu > ul > li > ul > li > ul {
	list-style: none;
    margin-top: 20px;
}
.main_menu > ul > li > ul > li > ul > li {
	
}
.main_menu > ul > li > ul > li > ul > li > a {
	color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
	transition: 0.5s;
}
.main_menu > ul > li > ul > li > ul > li > a:hover {
	opacity: 0.7
}
.main_menu > ul > li.columns > ul {
	display: flex;
    min-width: 420px;
    left: -100%;	
}
.main_menu > ul > li.columns > ul > li > ul > li {
    margin-bottom: 20px;
}
.main_menu > ul > li.columns > ul > li > ul > li:last-child {
    margin-bottom: 0px;
}
.main_menu > ul > li.columns > ul > li {
	width: 50%;
}
.main_menu > ul > li.columns > ul > li > a {
    font-size: 2rem;
    font-weight: bold;
	color: #fff;
	transition: 0.5s
}
.main_menu > ul > li.columns > ul > li > a:hover {
	opacity: 0.7;
}

.link_block a {
    background: url(img/search.svg) no-repeat;
    width: 20px;
    height: 20px;
    display: block;
}
.main_menu > ul > li.menu-item-has-children {
    padding-right: 14px;
}
.main_menu > ul > li.menu-item-has-children:after {
    content: " ";
    background: url(img/arrow_menu.svg) no-repeat;
    width: 9px;
    height: 5px;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
	transition: 0.5s
}
.main_menu > ul > li.menu-item-has-children:hover:after {
	transform: rotate(180deg);
}
.hero_top {
    display: flex;
    justify-content: space-between;
}
.hero_top h1 {
    font-size: 4rem;
    color: #E9F0EE;
    font-weight: 700;
    max-width: 900px;
    line-height: 1.2;
    margin-top: 20px;
}
.social_hero {
    display: flex;
        align-items: flex-end;
        margin-bottom: 12px;
}
.social_hero a {
    margin-right: 13px;
    transition: 0.5s;
}
.social_hero a:hover {
    opacity: 0.5;
}
.social_hero a:last-child {
    margin-right: 0px;
}
.instagram {
    background: url(img/instagram.svg);
    width: 33px;
    height: 33px;
    display: block;
}
.linkedin {
    background: url(img/linkedin.svg);
    width: 33px;
    height: 33px;
    display: block;
}
.telegram {
    background: url(img/telegram.svg);
    width: 33px;
    height: 33px;
    display: block;
}
.hero_description {
    font-size: 1.6rem;
    color: #E9F0EE;
    line-height: 1.5;
    margin-top: 28px;
}
#news_home {
    margin-top: 44px;
}
.list_news_home {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list_news_home > .news_home {
    width: 33%;
}
.img_news_home img {
    width: 100%;
    height: 231px;
    object-fit: cover;
    display: block;
}
.img_news_home {
    position: relative;
}
.label_news {
    background: #fff;
    position: absolute;
    top: 21px;
    left: 21px;
    padding: 7px;
    font-size: 0.9rem;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.news_home_description {
    background: rgb(225 233 233 / 55%);
    padding: 14px 18px;
}
.link_news_home {
    text-decoration: none;
    font-size: 1.6rem;
    color: #000;
    text-decoration: none;
    font-weight: 300;
    border-bottom: 1px solid rgb(88 88 88 / 35%);
    line-height: 25px;
    line-height: 1.5;
    padding-bottom: 1px;
    transition: 0.5s;
}
.link_news_home:hover {
    border-bottom: 1px solid transparent;
}
.date_news_home {
    font-size: 1rem;
    color: #000;
    margin-top: 17px;
}
.list_news_home > .news_home:first-child {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    position: relative;
}
.list_news_home > .news_home:first-child .img_news_home {
    order: 2;
    width: 47%;
    position: static;
}
.list_news_home > .news_home:first-child .img_news_home img {
    width: 100%;
    height: 269px;
    position: static;
}
.list_news_home > .news_home:first-child .news_home_description {
    order: 1;
    width: 50%;
    padding-top: 177px;
}
.list_news_home > .news_home:first-child .news_home_description .date_news_home {
    display: none;
}
.list_news_home > .news_home:first-child .news_home_description .link_news_home {
  font-size: 2.3rem;
}
.button_wrap_news {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.button_wrap_news a {
    font-weight: 700;
    font-size: 1.6rem;
    color: #295A5B;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 0.3px solid #295A5B;
    padding-bottom: 1px;
    transition: 0.5s;
}
.button_wrap_news a:hover {
    border-bottom: 1px solid transparent;
}
#deatelnost {
    margin-top: 70px;
}
.title_slider {
    display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
}
.standart_title {
    font-size: 3.2rem;
    font-weight: 600;
    text-transform: uppercase;
}
.slider_arrow_wrap {
    display: flex;
    align-items: center;
}
.arrow_left {
    width: 26px;
    height: 26px;
    display: block;
    background: #1F4444;
    border-radius: 100px;
    margin-right: 8px;
    display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.5s;
}
.arrow_left:after {
    content: " ";
    background: url(img/arrow_slider.svg) no-repeat;
    width: 7px;
    height: 12px;
    display: block;
    transform: rotate(180deg);
}
.arrow_right {
    width: 26px;
    height: 26px;
    display: block;
    background: #1F4444;
    border-radius: 100px;
    margin-right: 8px; 
    display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.5s;
}
.arrow_right:after {
    content: " ";
    background: url(img/arrow_slider.svg) no-repeat;
    width: 7px;
    height: 12px;
    display: block;
}
.slider_deatelnost {
    overflow: hidden;
    position: relative;
}
.slider_deatelnost .swiper-slide a {
    width: 100%;
    height: 187px;
    display: flex;
    text-decoration: none;
    align-items: center;
}
.slider_deatelnost .swiper-slide a .img_block_slider_deatelnost {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s;
}
.slider_deatelnost .swiper-slide a .img_block_slider_deatelnost img {
    width: 100%;
    height: 187px;
    object-fit: cover;
    transition: 0.5s;
}
.info_slider {
    position: relative;
    width: auto;
    height: fit-content;
    padding: 0 20px;
}
.link_deatelnost {
    font-size: 2.4rem;
    color: #E9F0EE;
    font-weight: 700;
    border-bottom: 0.3px solid #D9D9D9;
    padding-bottom: 1px;
    display: inline;
}
.hidden_description_slider {
    display: none;
    color: #E9F0EE;
    font-size: 1.4rem;
    max-width: 145px;
    line-height: 21px;
    line-height: 1.5;
    margin-top: 12px;
}

.slider_deatelnost .swiper-slide a .img_block_slider_deatelnost:before {
    content: " ";
    background: linear-gradient(0deg, rgba(40, 89, 78, 0.45), rgba(40, 89, 78, 0.45)), linear-gradient(180deg, #234F54 30%, #28594E 100%);
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute
}
.slider_deatelnost .swiper-slide:hover a .img_block_slider_deatelnost:before {
   opacity: 1;
   visibility: visible;
}
.slider_deatelnost .swiper-slide:hover a .hidden_description_slider {
    display: block;
}
#person {
    margin-top: 44px;
    background: #EFF3F3;
    padding: 28px 0;
}
.person_wrap {
    display: flex;
        align-items: center;
        justify-content: space-between;
}
.person_info {
    margin-left: 83px;
}
.person_description {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 33px;
}
.person_name {
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 3px;
}
.person_job_title {
    font-size: 1.6rem;
    font-weight: 300;
}
.person_link {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}
.person_link a {
    font-weight: 700;
    font-size: 1.9rem;
    color: #295A5B;
    text-decoration: none;
    border-bottom: 0.3px solid #295A5B;
}
#static {
    margin-top: 44px;
}
.static_list {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.static_list > div {
    background: #295A5B;
    padding: 0 28px;
    width: calc(33.3% - 56px);
    min-height: 217px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.static_numbers {
    font-size: 3.8rem;
    font-weight: 600;
    color: #fff;
}
.static_description {
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    margin-top: 20px;
    max-width: 335px;
    line-height: 1.5;
}
footer {
    padding: 36px 0 37px;
    background-color: #295A5B;
    color: #ffffff;
    margin-top: 60px;
}
.footer__top {
    margin-bottom: 79px;
}
.footer__top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.footer__info {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
    margin-right: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 113px;
    margin-bottom: 23px;
}
.footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.footer__address {
    margin-bottom: 17px;
    font-size: 1.4rem;
}
.footer__address span {
    display: block;
}
.footer__phone, .footer__email {
    display: inline-block;
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 1.4rem;
    text-decoration: none;
}
.footer__phone {
    margin-bottom: 18px;
}
.footer__navigation {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    margin: 0 -10px;
    padding-top: 7px;
}
.footer__column {
    width: 28%;
    padding: 0 10px;
}
.footer__main-link {
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.8rem;
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    text-decoration: none;
}
.footer__menu {
    list-style: none;
}
.footer__menu-item {
    margin-bottom: 12px;
    padding-right: 20px;
}
.footer__menu-link {
    font-size: 1.4rem;
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    text-decoration: none;
}
.footer__bottom {
    border-top: 1px solid rgb(255 255 255 / 30%);
    padding-top: 34px;
}
.footer__bottom > .wrapper {
    display: flex
;
    align-items: center;
    justify-content: center;
}
.footer__bottom a {
margin: 0 6px;
}
.mobile_logo {
    display: none;
}
.mobile_search {
    background: url(img/search_mobile.svg) no-repeat;
    width: 12px;
    height: 12px;
    display: none;
}
.mobile_menu_toggle {
    background: url(img/menu_toggle.svg) no-repeat;
    width: 18px;
    height: 14px;
    display: none;
}
.social_hero.mobile {
display: none;
}
.header__menu-item.subitem::before {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid #28594e;
    position: absolute;
    right: -4px;
    bottom: -1px;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
.footer__menu {
    list-style: none;
}
.footer__menu > li {
    margin-bottom: 12px;
    padding-right: 20px;
}
.footer__menu > li > a {
    font-size: 1.4rem;
    color: #ffffff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    text-decoration: none;
}
.breadcrumbs > span:first-child a span {
    font-size: 0;
}
.breadcrumbs > span:first-child a {
    background: url(img/home.svg) no-repeat;
    width: 17px;
    height: 17px;
    display: block;
}
.breadcrumbs {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.breadcrumbs > span {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs > span a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs__separator {
    margin: 0 10px;
}
#hero.hero_single {
    padding-bottom: 30px;
}
.top_menu_page {
    margin-top: 35px;
}
.top_menu_page ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
}
.top_menu_page ul li {
    margin-right: 50px;
	margin-bottom: 20px;
}
.top_menu_page ul li:last-child {
    margin-right: 0px;
}
.top_menu_page ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    padding-bottom: 3px;
    border-bottom: 0.3px solid rgb(255 255 255 / 45%);
    transition: 0.5s;
}
.top_menu_page ul li a:hover {
    border-bottom: 0.3px solid transparent;
}
.page_content_width_sidebar {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    padding: 0 80px;
}
.content_left {
    width: 74%;
}
.sidebar_right {
    width: 23%;
}
.sidebar_right ul {
    list-style: none;
}
.sidebar_right ul li {
    margin-bottom: 23px;
}
.sidebar_right ul li a {
    font-size: 1.6rem;
    color: #2A5C50;
    text-decoration: none;
    border-bottom: 1px solid #2A5C50;
    line-height: 1.5;
}
.content_left p {
    font-size: 1.6rem;
    line-height: 23px;
    margin-bottom: 10px;
}
.content_left h2 {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 700;
}
.content_left ol, .content_left ul {
    padding-left: 20px;
}
.content_left ol li, .content_left ul li {
    font-size: 1.6rem;
    line-height: 23px;
    margin-bottom: 10px;
}
#hero.hero_single .breadcrumbs {
    padding: 0 80px;
}
#hero.hero_single .hero_top {
    padding: 0 80px;
}
#hero.hero_single .top_menu_page {
    padding: 0 80px;
}
#clients_tab_top {

}
#clients_tab_top > ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
#clients_tab_top > ul > li {
    width: 392px;
    height: 55px;
    background: #EFF3F3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
    border-right: 1px solid #fff;
    position: relative;
}
#clients_tab_top > ul > li.active {
    background: #295A5B;
    color: #fff;
}
.clients_top_description {
    font-size: 1.3rem;
    margin-top: 5px;
}
.clients_top_title {
    font-size: 2rem;
    font-weight: 600;
}
#clients_tab_top > ul > li.active:after {
    content: ' ';
    width: 0;
    height: 0;
    border-left: 195px solid transparent;
    border-right: 195px solid transparent;
    border-top: 27px solid #295A5B;
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
}
#clients_tabs_block {
    margin-top: 50px;
}
.description_first_clients_blocks {
    padding: 0 80px;
}
.description_first_clients_blocks p {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}
.list_system {
    display: flex;
    flex-wrap: wrap;
}
.list_system > .system {
background: url(img/system.jpg) no-repeat;
    padding: 33px 20px;
    width: calc(25% - 40px - 4px);
    border-right: 1px solid #fff;
    margin-bottom: 20px;
    min-height: 380px;
}
.system_top {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.system_checkbox {
    border: 2px solid #fff;
    width: 28px;
    height: 28px;
    border-radius: 100px;
    position: relative;
}
.system_checkbox:after {
    content: " ";
    width: 14px;
    height: 14px;
    border-radius: 100px;
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.system.active .system_checkbox:after {
opacity: 1;
visibility: visible;
}
.system_title {
font-size: 2.4rem;
    color: #fff;
    font-weight: bold;
    margin-left: 15px;
}
.system_description {
margin-top: 30px;
}
.system_description p {
    font-size: 1.4rem;
    color: rgb(255 255 255 / 74%);
    text-decoration: underline;
    line-height: 1.5;
    font-weight: 300;
    transition: 0.5s;
    display: inline;
    text-decoration: none;
}
.system_description a {
    font-size: 1.4rem;
    color: rgb(255 255 255 / 74%);
    text-decoration: underline;
    line-height: 1.5;
    font-weight: 300;
    transition: 0.5s;
    display: inline;
    text-decoration: none;
    border-bottom: 0.3px solid rgb(255 255 255 / 74%);
}
.system_description ul {
     padding-left: 15px;
    margin: 5px 0;
}
.system_description ul li {
        font-size: 1.4rem;
    color: rgb(255 255 255 / 74%);
    line-height: 21px;
    font-weight: 300;
	    display: inline;
}
.clients_wrap_button {
    display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 100px;
}
button.next_clients {
    background: #295A5B;
    padding: 16px 40px;
    border-radius: 100px;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}
.list_system > .system .system_description a:hover {
	border-bottom: 1px solid transparent
}
button.next_clients:hover {
    background: #045B4A;
}
.clients_info {
    background: #EFF3F3;
    padding: 25px 80px;
}
.clients_info > a {
    color: #295A5B;
    font-size: 1.8rem;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #295A5B;
    transition: 0.5s;
}
.clients_info > a:hover {
    border-bottom: 1px solid transparent;
}
.title_clients_info {
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 25px;
    margin-bottom: 10px;
}
.clients_info p {
    font-size: 1.8rem;
    font-weight: 400;
}
.clients_info p a {
    border-bottom: 1px solid #295A5B;
    text-decoration: none;
    font-size: 1.8rem;
    color: #295A5B;
    transition: 0.5s;
}
.clients_info p a:hover {
    border-bottom: 1px solid transparent;
}
.clients_info p {
    margin-bottom: 10px;
}
.second_step_text_simple p {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}
.doc_block_top a {
    display: flex;
        text-decoration: none;
        align-items: center;
}
.doc_title {
    margin-left: 18px;
    font-size: 1.6rem;
    color: #28594E;
    font-weight: 600;
}
.doc_block_description {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
    margin-top: 15px;
}
.list_docs_client_vertical .doc_block {
margin-bottom: 30px;
}
.list_docs_client_vertical .doc_block:last-child {
    margin-bottom: 0px;
}
.second_step_text_simple ul, .second_step_text_simple ol {
    padding-left: 15px;
}
.second_step_text_simple ul li, .second_step_text_simple ol li {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}
.second_clients_block .clients_wrap_button {
    justify-content: space-between;
}
button.prev_clients {
    background: #F1F6F4;
    padding: 16px 40px;
    border-radius: 100px;
    color: #295A5B;
    font-size: 2.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.list_docs_client_horisontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}
.list_docs_client_horisontal > .doc_block {
    width: 33%;
	    margin-bottom: 30px;
}
.third_clients_block .clients_wrap_button {
    justify-content: space-between;
}
.second_clients_block, .third_clients_block {
    display: none;
}
.second_clients_block > .tab {
    display: none;
}
.first_clients_block.hide {
display: none;
}
.second_clients_block.show {
display: block;
}
.third_clients_block.show {
display: block;
}
.third_clients_block > .tab {
    display: none;
}


.coid-content {
    padding: 30px 0 4px;
}
.structure__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 45px;
}
.structure__item-photo {
    width: 440px;
    height: 368px;
    margin-right: 20px;
    position: relative;
}
.structure__item-photo img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}
.structure__item-info {
    width: 635px;
    position: relative;
    background-color: #E3EEEB;
    padding: 19px 41px 28px;
}
.structure__item-name {
    color: #252525;
    font-size: 3.2rem;
}
.coid-content__inner h2 {
    max-width: 520px;
    margin: 0 auto 33px;
    text-align: center;
    text-transform: uppercase;
}
.structure__item-position {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 15px;
    font-size: 18px;
    color: rgba(37, 37, 37, 0.7);
    position: relative;
}
.structure__item-position::after {
    content: '';
    width: 45px;
    height: 3px;
    background-color: #28594E;
    position: absolute;
    left: 0;
    bottom: 0;
}
.structure__item:nth-child(even) .structure__item-photo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
    margin-left: 20px;
}
.structure__item-text {
    margin-bottom: 4px;
    line-height: 1.6;
    color: #424242;
    font-size: 1.8rem;
}
.documents__title.medium-title.section-title {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 42px;
    font-weight: 700;
}
.documents__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 -88px 0 -41px;
}
.documents__column {
    width: calc(50% - 72px);
    padding: 0 36px;
    margin-bottom: 41px;
}
.documents__link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #28594e;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    text-decoration: none;
}
.documents__link img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: auto;
    margin-right: 20px;
}
.documents {
    margin-top: 40px;
    padding: 0 80px;
}
.page_content_width_sidebar.full_width .content_left {
width: 100%
}
.page_content_width_sidebar.full_width .sidebar_right {
display: none;
}
.title_mobile_menu {
    display: none;
}
body.single-post .hero_top h1 {
    max-width: inherit;
}
.search-page {
    padding: 62px 0 120px;
}
.search-page__form-wrap {
    margin-bottom: 26px;
}
.main-media__tags {
    max-width: 480px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 47px;
}
.search-page__tags {
    max-width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 -5px 15px;
}
.search-page__item {
    margin-bottom: 32px;
}
.search-page__item-date {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: rgba(69, 74, 92, 0.8);
}
.search-page__item-title {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    color: #005A4B;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.search-page__item-text {
    color: #686868;
    letter-spacing: -0.16px;
}
.search-page__form-wrap {
    margin-bottom: 26px;
}
.search-page__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.search-page__form-row {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}
.search-page__form-row::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(img/icon-search-green.svg) center center / contain no-repeat;
    position: absolute;
    left: 16px;
    top: 16px;
    pointer-events: none;
}
.search-page__form-input {
    display: block;
    width: calc(100% - 93px);
    padding: 19px 50px 17px 43px;
    border-radius: 4px;
    border: 1px solid #005A4B;
    font-size: 15px;
    color: #000000;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.search-page__form-delete {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/icons/icon-delete-green.svg) center center / contain no-repeat;
    position: absolute;
    right: 16px;
    top: 16px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: button;
}
.search-page__item p {
    font-size: 1.6rem;
    color: #686868;
    line-height: 1.5;
}
.search-page__pagination.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.search-page__pagination.pagination ul li {
    margin: 0 4px;
}
.search-page__pagination.pagination ul li a {
    border: 2px solid #295A5B;
    font-size: 1.5rem;
    padding: 5px 8px;
    border-radius: 5px;
    color: #295A5B;
    text-decoration: none;
    font-weight: bold;
}
.search-page__pagination.pagination ul li > span {
    font-size: 1.5rem;
    padding: 5px 8px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
#form_clients {
    max-width: 571px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}
#form_clients > .form_group {
    width: 49%;
    margin-bottom: 13px;
}
#form_clients > .form_group input {
    border: 1px solid #D7DADD;
    width: calc(100% - 16px);
    padding-left: 16px;
    outline: none;
    height: 52px;
    border-radius: 4px;
}
.button_wrap_submit input {
    background: #295A5B;
    padding: 13px 70px;
    border-radius: 90px;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    border: 1px solid #295A5B;
    cursor: pointer;
    transition: 0.5s;
}
.button_wrap_submit input:hover {
    opacity: 0.6;
}
.wpcf7-acceptance input {
    display: none;
}
.wpcf7-acceptance label .wpcf7-list-item-label {
    font-size: 1.6rem;
    color: #000;
    display: flex;
     max-width: 270px;
}
.wpcf7-acceptance label .wpcf7-list-item-label:before {
    content: " ";
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 3px;
    min-width: 16px;
    margin-right: 12px;
    border: 1px solid #005A4B;
    position: relative;
    top: 2px;
}
.button_wrap_submit {
    display: flex;
    align-items: center;
    margin-top: 13px;
    flex-wrap: wrap;
}
.button_wrap_submit:before {
    content: " ";
    background: url(img/capcha.png) no-repeat;
    width: 71px;
    height: 68px;
    margin-right: 8px;
}
.wpcf7-acceptance label input:checked + .wpcf7-list-item-label:before {
background: #005A4B url(img/check.svg) no-repeat;
background-position: center;
}
.wpcf7 form .wpcf7-response-output {
    max-width: 571px;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.4rem;
}
.list_posts_category {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 80px;
}
.list_posts_category .news_home {
    width: 32%;
    background: rgb(225 233 233);
    margin-right: 2%;
    margin-bottom: 30px;
}
.list_posts_category .news_home:nth-child(3n) {
    margin-right: 0;
}
.contacts {
    padding: 39px 0 70px;
    padding-left: 80px;
    padding-right: 80px;
}
.contacts__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 35px;
}
.contacts__info {
    width: 375px;
    margin-right: 25px;
}
.contacts__form-wrap {
    width: 573px;
}
.contacts__text {
    margin-bottom: 48px;
}
.contacts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contacts__item-icon {
    width: 24px;
    margin-right: 12px;
    margin-top: 12px;
}
.contacts__item-title {
    display: block;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 7px;
}
.contacts__item-link {
    display: inline-block;
    color: #000000;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 1.8rem;
    text-decoration: none;
}
.contacts__item-address {
    font-size: 1.8rem;
}
.contact-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-form__item {
    margin-bottom: 15px;
}
.contact-form__row .contact-form__item {
    width: 48.5%;
}
.contact-form__item-input, .contact-form__item-message {
    display: block;
    width: calc(100% - 32px);
    padding: 14px 16px 13px;
    border: 1px solid #D7DADD;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}
.contact-form__actions {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 40px;
}
button.contact-form__submit {
    width: 48.5%;
    padding: 13px 15px;
    border-radius: 90px;
    background-color: #005A4B;
    border: 2px solid #005A4B;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}
button.contact-form__submit:hover {
    background-color: transparent;
    color: #005A4B;
}
.contacts__form-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 27px;
}
.coid-content {
    padding: 30px 0 4px;
}
.history {
    padding: 37px 0 130px;
}
.history__block {
    max-width: 837px;
    margin: 0 auto;
    padding-bottom: 26px;
    position: relative;
}
.history__block::before {
    content: '';
    width: 5px;
    height: 100%;
    background-color: #CFDFD9;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.history__item {
    padding: 24px 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.history__block::after {
    content: '';
    width: 25px;
    height: 27px;
    background: url(img/history-arrow.svg) center bottom / contain no-repeat;
    position: absolute;
    left: 50%;
    bottom: -5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.history__item::before {
    content: '';
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: #D0FAC9;
    border: 5px solid #28594E;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.history__item-date {
    display: block;
    width: 50%;
    padding-right: 60px;
    font-weight: 700;
    font-size: 24px;
    text-align: right;
}
.history__item:nth-child(odd) .history__item-date {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 0;
    padding-left: 60px;
    text-align: left;
}
.history__item-info {
    width: 50%;
    padding-left: 60px;
    font-size: 20px;
line-height: 150%;
}
.history__item:nth-child(odd) .history__item-info {
    padding-left: 0;
    padding-right: 60px;
    text-align: right;

}
.history_full_text {
    padding: 0 80px;
    margin-top: 50px;
}
.history_full_text p {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 15px;
}
.history {
    padding: 0 80px;
    margin-top: 50px;
}
.accordion-element {
    border-bottom: 1px solid #96A0B5;
    border-radius: 2px;
    overflow: hidden;
    background-color: transparent;
    padding: 40px 80px 40px 44px;
    -webkit-transition: border-color 0.3s, padding 0.3s;
    transition: border-color 0.3s, padding 0.3s;
}
.accordion-element.open {
    border-color: transparent;
    padding-bottom: 36px;
}
.accordion-element__bg {
    background-color: #E3EEEB;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.accordion-element.open .accordion-element__bg {
    opacity: 1;
}
.accordion-element__button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    display: block;
    -webkit-appearance: button;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    color: #121F3E;
    font-size: 20px;
    line-height: 1.65;
    text-align: left;
}
.accordion-element__button::after {
    content: '';
    width: 35px;
    height: 35px;
    background: url(img/icon-arrow-down.svg) center center / 21px auto no-repeat;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: background-image 0.3s;
    transition: background-image 0.3s;
}
.accordion-element__button.active::after {
    background-image: url(img/icon-arrow-up.svg);
}
.accordion-element__content {
    display: none;
    position: relative;
    z-index: 2;
    padding: 32px 15px 0 0;
    font-size: 18px;
    color: #555F73;
}
.custom-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    display: inline-block;
    overflow-x: auto;
}
.table {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 1px 2px rgba(101, 153, 69, 0.2);
    box-shadow: 0 1px 2px rgba(101, 153, 69, 0.2);
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #ffffff;
    text-align: left;
}
.table thead {
    background-color: #28594E;
}
.table tr {
    border-bottom: 1px solid #F7F8F2;
}
.table thead tr {
    position: relative;
    z-index: 2;
}
.custom-table th {
    padding: 15px 10px;
    border: 1px solid #F7F8F2;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    letter-spacing: -0.16px;
    position: relative;
    background-color: #28594E;
}
.table th {
    padding: 15px 25px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.16px;
}
.table tr {
    border-bottom: 1px solid #F7F8F2;
}
.custom-table td {
    padding: 14px 10px 15px;
    border: 1px solid #F7F8F2;
    background-color: #fff;
    color: #000000;
    text-align: left;
    letter-spacing: -0.16px;
}
.table td {
    padding: 14px 25px 15px;
    color: #000000;
    letter-spacing: -0.16px;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}
.faq.inner-faq {
    padding: 0 80px;
}
.table td img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.links_lang a.active {
	font-weight: bold
}
a.next_client_link {
	background: #295A5B;
    padding: 16px 40px;
    border-radius: 100px;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.5s;
    text-decoration: none;
}
.blog__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 35px;
}
.blog__info {
    width: 380px;
    margin-right: 25px;
    font-size: 18px;
    letter-spacing: -0.18px;
}
.blog__form-wrap {
    width: 573px;
    padding-top: 2px;
}
.blog__info > img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}
.blog__info > h6 {
    font-weight: 500;
    font-size: 18px;
}
.blog__info > p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.blog__info-bottom {
    margin-top: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog__info-bottom > p {
    margin-right: 21px;
    line-height: 1.6;
}
.socials-block {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -5px;
}
.blog .socials-block {
    margin: 20px -5px 0;
}
.socials-block__item {
    margin: 0 15px;
}
.socials-block__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px 5px;
    position: relative;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.blog .socials-block__link {
    background-color: #28594E;
}
.socials-block__link::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.socials-block__link.li::before {
    background-color: #00317E;
}
.socials-block__link svg {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
}
.blog .socials-block__link svg * {
    fill: #ffffff;
}
.blog__form-title {
    margin-bottom: 23px;
    font-weight: 600;
    font-size: 18px;
}
#content .blog {
    padding: 0 80px;
    margin-top: 30px;
}
.blog .socials-block a {
    text-decoration: none;
}
.contact-form__item-file {
    cursor: pointer;
    display: block;
    width: auto;
    border-radius: 4px;
    background-color: #EEF1F4;
    padding: 15px 15px;
    position: relative;
    text-align: center;
}
.contact-form__item-file input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.contact-form__item-file span {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    color: #9A9CA5;
    word-break: break-all;
}
.contact-form__item-file span:not(.wpcf7-form-control-wrap)::before {
    content: "";
    width: 19px;
    height: 19px;
    background: url(img/icon-download-file.svg) center center / contain no-repeat;
    position: absolute;
    left: 0;
    top: 1px;
}
.purchase__content {
    position: relative;
    z-index: 2;
    padding: 22px 47px 29px;
    line-height: 1.6;
}
.purchase__content h2  {
    font-size: 32px;
}
.purchase__content p {
margin-bottom: 15px;
line-height: 1.6;
font-size: 18px;
}
#content table {
    border-collapse: collapse;
	width: 100%;
}
#content table td {
    padding: 25px;
	border: 1px solid #ccc;
}
#content table th {
    padding: 25px;
	border: 1px solid #ccc;
}
#content table a {
    color: #000;
	text-decoration: none;
	border-bottom: 1px solid #000;
	transition: 0.5s
}
#content table a:hover {
	border-bottom: 1px solid transparent;
}
.not_found {
	    padding-top: 95px;
    text-align: center;
    padding-bottom: 60px;
}
.not_found h1 {
	    font-size: 8rem;
}
.not_found h2 {
	    font-size: 4rem;
    margin: 10px 0;
}
.not_found .description_not_found {
	    font-size: 2rem;
    margin-top: 18px;
}
.not_found .description_not_found a {
	color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
	transition: 0.5s;
}
.not_found .description_not_found a:hover {
 border-bottom: 1px solid transparent	
}
 
@media screen and (max-width: 1179px) {
    .wrapper {
        width: 960px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 959px) {
    .wrapper {
        width: auto;
        margin: 0 auto;
        padding: 0 15px;
    }
    #hero {
        padding-bottom: 57px;
    }
    .top_menu > ul > li {
        margin-right: 20px;
    }
    header {
        padding: 15px 20px;
    }
    .main_menu > ul > li {
        margin-right: 20px;
    }
    .footer__navigation {
        flex-wrap: wrap;
    }
    .footer__column {
        width: 45%;
        margin-bottom: 50px;
    }
    #hero.hero_single .breadcrumbs {
        padding: 0 0;
    }
    #hero.hero_single .hero_top {
        padding: 0;
        margin-top: 25px;
    }
    #clients_tab_top {
        margin-left: -15px;
        margin-right: -15px;
    }
    #clients_tab_top > ul > li {
        text-align: center;
        width: 100%;
        height: 86px;
    }
    .clients_top_title {
        font-size: 14px;
    }
    .clients_top_description {
        font-size: 8px;
    }
    #clients_tab_top > ul > li.active:after {
        border-left: 65px solid transparent;
        border-right: 65px solid transparent;
        border-top: 27px solid #295A5B;
    }
    .description_first_clients_blocks {
        padding: 0;
    }
    .list_system > .system {
        width: calc(100% - 40px - 4px);
        background-size: cover;
        min-height: inherit;
    }
    .clients_wrap_button {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .clients_info {
        background: #EFF3F3;
        padding: 25px 20px;
    }
    #clients_tab_top > ul > li.active:after {
        display: none;
    }
    .list_docs_client_horisontal > .doc_block {
        width: 100%;
        margin-bottom: 20px;
    }
    .structure__item {
        flex-wrap: wrap
    }
    .structure__item-photo {
        margin-right: 0;
        width: 100%;
    }
    .structure__item-info {
        width: calc(100% - 80px);
    }
    .structure__item-text {
        font-size: 1.5rem;
    }
    .structure__item:nth-child(even) .structure__item-photo {
        margin-right: 0;
        margin-left: 0;
    }
    .top_menu_page ul li {
        margin-right: 15px;
        margin-bottom: 15px;
    }
    #hero.hero_single .top_menu_page {
        padding: 0;
        margin-top: 16px;
    }
    .page_content_width_sidebar {
        padding: 0;
        flex-wrap: wrap;
        margin-top: 0;
        flex-direction: column;
    }
    .content_left {
        width: 100%;
        order: 2;
        margin-top: 20px;
		        overflow: hidden;
        overflow-x: scroll;
    }
    .sidebar_right {
        order: 1;
        width: 110%;
        background: #295A5B;
        margin-right: 0;
        margin-left: -15px;
    }
    #content {
        overflow: hidden;
    }
    .sidebar_right ul {
        display: none;
    }    
    .title_mobile_menu {
        font-size: 16px;
        padding: 10px 40px;
        color: #fff;
        border-bottom: 1px solid #4A7D71;
        position: relative;
    }
    .title_mobile_menu:before {
        content: " ";
        background: url(img/arrow_mobile_menu.svg) no-repeat;
        width: 12px;
        height: 7px;
        display: block;
        position: absolute;
        top: 17px;
        left: 19px;
        transform: rotate(180deg);
        transition: 0.5s;
    }
    .sidebar_right ul li a {
        font-size: 15px;
        color: #ABBFBA;
        text-decoration: none;
        border-bottom: 1px solid #ABBFBA;
        line-height: 1.5;
        padding: 10px 40px;
        width: 100%;
        display: block;
        border-bottom: 1px solid #4A7D71;
    }
    .sidebar_right ul li {
        margin-bottom: 0;
    }
    .title_mobile_menu.active:before {
        transform: rotate(0deg);
    }
    .top_menu_page ul li a {
        font-size: 12px;
    }
    .title_mobile_menu {
        display: block;
    }
    .hero_top h1 {
        margin-top: 0px;
    }
    .breadcrumbs > span a {
        font-size: 12px;
    }
    .breadcrumbs > span {
        font-size: 12px;
    }
    .list_posts_category {
        padding: 0;
    }
    .documents {
        padding: 0 0px;
    }
    #content .blog {
        padding: 0;
        margin-top: 30px;
    }
    .blog__block {
        flex-wrap: wrap;
    }
    .blog__info {
        margin-right: auto;
        margin-left: auto;
    }



}
@media screen and (max-width: 767px) {
    .top_menu {
        display: none;
    }
    .mobile_logo {
        display: block;
    }
    #hero {
        padding-bottom: 0;
        background: url(img/hero_mobile.jpg) no-repeat;
        background-size: cover;
    }
    header {
        display: none;
    }
    #top_links {
        padding: 7px 0;
    }
    .social_hero.mobile {
        display: flex;
                margin-top: 23px;
                padding-bottom: 50px;
    }
    .hero_top > .social_hero {
        display: none;
    }
    .hero_top h1 {
        font-size: 24px;
    }
    .hero_description {
        font-size: 14px;
        margin-top: 20px;
    }
    .mobile_menu_toggle {
        display: block;
        margin-left: 32px;
    }
    .mobile_search {
        display: block;
        margin-right: 10px;
    }
    .links_lang a {
        margin-right: 6px;
    }
    .eye_link {
        width: 21px;
        height: 12px;
        display: block;
        margin-right: 25px;
        background-size: 21px;
    }
    .list_news_home > .news_home:first-child .img_news_home {
        order: 1;
        width: 100%;
        position: relative;
    }
    .list_news_home > .news_home:first-child {
        flex-wrap: wrap;
    }
    .list_news_home > .news_home:first-child .img_news_home img {
        width: 100%;
        height: 181px;
        position: static;
    }
    .list_news_home > .news_home:first-child .news_home_description {
        order: 1;
        width: 100%;
        padding-top: 12px;
    }
    .list_news_home > .news_home:first-child .news_home_description .date_news_home {
        display: block;
    }
    .list_news_home > .news_home:first-child .news_home_description .link_news_home {
        font-size: 16px;
    }
    #news_home {
        margin-top: 20px;
    }
    .list_news_home > .news_home {
        width: 100%;
        margin-bottom: 20px;
    }
    .list_news_home > .news_home:nth-child(3) {
        display: none;
    }
    .list_news_home > .news_home:last-child {
        display: none;
    }
    .standart_title {
        font-size: 24px;
    }
    .slider_deatelnost > .swiper-wrapper {
        height: 400px;
    }
    #person {
        margin-top: 20px;
        background: transparent;
        padding: 28px 15px;
    }
    #person > .wrapper {
        background: #EFF3F3;
    }
    .person_wrap {
        flex-wrap: wrap;
    }
    .person_img {
        margin-top: 10px
    }
    .person_description {
        font-size: 18px;
    }
    .person_info {
        margin-left: 0;
        margin-top: 10px;
    }
    .person_job_title {
        font-size: 16px;
    }
    .person_name {
        font-size: 16px;
    }
    .person_link a {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .static_list {
        flex-wrap: wrap;
    }
    .static_list > div {
        width: calc(100% - 56px);
        margin-bottom: 7px;
    }
    .footer__top-inner {
        flex-wrap: wrap;
    }
    .footer__info {
        width: 100%;
        margin-right: 0;
        align-items: center;
        text-align: center;
    }
    .footer__navigation {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 40px;
    }
    .footer__column {
        width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }
    .footer__menu-item {
        margin-bottom: 12px;
        padding-right: 0;
    }
    .footer__top {
        margin-bottom: 0px;
    }
    #mobile_menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #295A5B;
        z-index: 99;
    }
    .mobile_content {
        padding: 35px;
    }
    .mobile_top_menu > ul {
        list-style: none;
    }
    .mobile_top_menu > ul > li {
        margin-bottom: 15px;
    }
    .mobile_top_menu > ul > li > a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        font-weight: 600;
		position: relative;
    }
    .mobile_menu_logo {
        margin-bottom: 30px;
    }
    .mobile_top_menu {
        margin-bottom: 35px;
    }
	.mobile_top_menu > ul {
		
	}
	.mobile_top_menu > ul > li {
		
	}
	.mobile_top_menu > ul > li > ul {
	        display: none;
        padding: 15px 0;
        list-style: none;
        padding-left: 15px;
		padding-bottom: 0;
	}
	.mobile_top_menu > ul > li > ul > li {
		    margin-bottom: 10px;
	}
	.mobile_top_menu > ul > li > ul > li:last-child {
		margin-bottom: 0
	}
	.mobile_top_menu > ul > li > ul > li > a {
	    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
	}
	.mobile_top_menu > ul > li.columns > ul > li > a {
	font-size: 1.8rem;
	}
	.mobile_top_menu > ul > li > ul > li > ul {
        padding: 15px 0;
        list-style: none;
        padding-left: 15px;
		padding-bottom: 0;
	}
	.mobile_top_menu > ul > li > ul > li > ul > li {
	margin-bottom: 10px
	}
	.mobile_top_menu > ul > li > ul > li > ul > li:last-child {
	margin-bottom: 0;
	}
	.mobile_top_menu > ul > li > ul > li > ul > li > a {
	    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
	}
	.mobile_top_menu > ul > li.menu-item-has-children > a:after {
    content: " ";
    background: url(img/arrow_menu.svg) no-repeat;
		width: 9px;
        height: 5px;
        display: block;
        position: absolute;
        right: -15px;
        top: 11px;
        transition: 0.5s;
}
	.mobile_top_menu > ul > li > a.active:after {
		transform: rotate(180deg);
	}
    .close_menu {
        position: absolute;
    right: 20px;
    top: 20px;
    }
    .breadcrumbs {
        flex-wrap: wrap;
    }
    .documents__block {
        margin: 0;
    }
    .documents__column {
        width: 100%;
        padding: 0;
        margin-bottom: 41px;
    }
    .wpcf7-acceptance label .wpcf7-list-item-label {
        max-width: 245px;
    }
    .button_wrap_submit input {
        margin-top: 15px;
    }
    .button_wrap_submit {
        margin-bottom: 14px;
    }
    .list_posts_category .news_home {
        width: 100%;
        background: rgb(225 233 233);
        margin-right: 0%;
        margin-bottom: 30px;
    }
    .list_posts_category {
        padding: 0;
    }
    #hero.sticky {
        padding-top: 32px;
    }
    .contacts {
        padding-left: 0;
        padding-right: 0;
    }
    .contacts__block {
        flex-wrap: wrap;
    }
    .contacts__info {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .contacts__form-wrap {
        width: auto;
    }
    .contacts__text {
        margin-bottom: 0;
    }
    .history_full_text {
        padding: 0;
    }
    .history__block {
        padding-bottom: 10px;
        max-width: 100%;
    }
    .history__block::before {
        width: 3px;
        left: 10px;
    }
    .history__item {
        display: block;
        padding-left: 35px;
    }
    .history__item::before {
        left: 10px;
        top: 25px;
    }
    .history__item:nth-child(odd) .history__item-date {
        padding-left: 0;
        width: 100%;
    }
    .history__item:nth-child(odd) .history__item-info {
        padding-right: 0;
        text-align: left;
        width: 100%;
    }
    .history__item-date {
        display: block;
        width: 100%;
        padding-right: 0;
        font-weight: 700;
        font-size: 24px;
        text-align: left;
    }
    .history__item-info {
        width: 100%;
        padding-left: 0;
        font-size: 20px;
    }
    .history {
        padding: 0;
        margin-top: 50px;
    }
    .history__item {
        padding-top: 12px;
    }
    .history__block::after {
        left: 10px;
        bottom: 0;
    }
    .faq.inner-faq {
        padding: 0;
    }
    .accordion-element {
        padding-left: 0;
        padding-right: 0;
    }
    .accordion-element__button::after {
        left: 88%;
    }


}