@font-face {
    font-family: 'GothamPro-Regular';
    src: url('./fonts/GothamProRegular.ttf');
}

@font-face {
    font-family: 'GothamPro-Medium';
    src: url('./fonts/GothamProMedium.ttf');
}

@font-face {
    font-family: 'GothamPro-Light';
    src: url('./fonts/GothamProLight.ttf');
}

@font-face {
    font-family: 'GothamPro-Bold';
    src: url('./fonts/GothamProBold.ttf');
}

@font-face {
    font-family: 'KelsonSans-Light';
    src: url('./fonts/KelsonSans-LightRU.ttf'),
    url("./fonts/KelsonSans-LightRU.woff2") format("woff2"),
    url("./fonts/KelsonSans-LightRU.woff") format("woff");
}

@font-face {
    font-family: 'KelsonSans-Regular';
    src: url('./fonts/KelsonSans-RegularRU.ttf'),
    url("./fonts/KelsonSans-RegularRU.woff2") format("woff2"),
    url("./fonts/KelsonSans-RegularRU.woff") format("woff");
}

@font-face {
    font-family: 'KelsonSans-Bold';
    src: url('./fonts/KelsonSans-BoldRU.ttf'),
    url("./fonts/KelsonSans-BoldRU.woff2") format("woff2"),
    url("./fonts/KelsonSans-BoldRU.woff") format("woff");
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.post-article > p {
  text-align: justify;
}

input:focus,
button:focus {
    outline: none;
}

.clear {
    display: block;
    clear: both;
}
.content-flex {
    display: flex;
    flex-wrap: wrap;
}

.button_more_tax {
    font-size: 16px;
    color: #fff;
    background: #0176b6;
    border-radius: 5px;
    text-decoration: none;
    padding: 16px;
    margin-top: 4.1%;
    display: inline-block;
    transform:translateZ(0);
}

.button_more_tax:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.166s;
    transition-duration: 0.166s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.button_more_tax:hover:before, .button_more_tax:focus:before, .button_more_tax:active:before {
    transform: scaleX(1);
}

body {
    font-family: 'GothamPro-Regular', Arial, Helvetica, sans-serif;
    background: #fff;
}

.wrapper {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 1920px) {
    .wrapper {
        max-width: 1644px;
    }
}

.max-width-1920 {
    max-width:1920px;
}

/*--header--*/
header {
    /*padding: 30px;*/
    padding: 15px 30px 33px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.header__navigation {
    margin-top: 20px;
}

.header__navigation li {
    list-style: none;
}

.header__navigation a,
.header__contacts-tel,
.header__contacts-mail {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    margin-right: 25px;
    color: #0176b6;
    text-decoration: none;
    padding: 15px 0 1px;
    border-bottom: 1px solid rgba(1, 118, 182, 0.15);
    font-family: 'GothamPro-Medium';
}

.header__navigation a {
    letter-spacing: 0.05em;
    margin-right: 30px;
}

.header__contacts-info,
.header__contacts-links {
    display: inline-block;
}

.header__contacts-tel,
.header__contacts-mail {
    font-size: 14px;
    text-transform: lowercase;
}

.header__spacer {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.header__logo {
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
}
.logo {
    width: 100%;
    height: 100px;
    display: block;
    background: url('./img/logo_ua.png') no-repeat center;
    background-size: contain;
    text-indent: -9999px;
}

.logo_en {
    background: url('./img/logo_en.png') no-repeat center;
    background-size: contain;
}
.logo-text {
    display: block;
    font-family: 'KelsonSans-Regular';
    font-size: 16px;
    line-height: 14px;
    text-align: center;
    margin-top: 10px;
}

.header__search,
.header__facebook {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(./img/soc.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    text-decoration: none;
}

.header__facebook{
    background-position: -45px 0;
    margin-left: 20px;
}

.header__languages {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 15px;
    font-family: 'GothamPro-Light';
}

.header__languages .active {
    font-family: 'GothamPro-Bold';
    margin-right: 15px;
}

.header__mobile-nav,
.narrow-mobile{
    display: none;
}

.mobile__navigation {
    display: none;
    position: absolute;
    top: 100%;
    left:0;
    width: 100%;
    background: #fff;
    z-index: 3;
    border-bottom: 1px solid #e5e5e5;
}

.mobile__navigation li {
    line-height: 45px;
    text-align: center;
}

.mobile__navigation li a {
    color: #0176b6;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}

.header__search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 72, 154, .95);
    z-index: 10;
}

.search__content {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 50%;
    min-width: 310px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.search__title{
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
}

.search__input {
    width: calc(100% - 40px);
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    height: 30px;
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
}

.search__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .6);
    font-family: 'GothamPro-Light';
    font-size: 14px;
}

.search__input:-moz-placeholder {
    color: rgba(255, 255, 255, .6);
    font-family: 'GothamPro-Light';
    font-size: 14px;
}

.search__input::-moz-placeholder {
    color: rgba(255, 255, 255, .6);
    font-family: 'GothamPro-Light';
    font-size: 14px;
}

.search__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .6);
    font-family: 'GothamPro-Light';
    font-size: 14px;
}

.search__form button {
    width: 30px;
    vertical-align: bottom;
    background: transparent;
    border: none;
    cursor: pointer;
}

.search__form button img {
    width: 100%;
}

.close-popup {
    display: block;
    width: 15px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/*--slogan--*/
.slogan-section {
    background: #14346f;
}

.title-section {
    background-image: url(./img/head-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.title-section-bg {
	font-size: 0;
	min-height: 340px;
	background-size: cover;
    background-position: center center;
}

.title-section-heading {
	position: relative;
	min-height: 129px;
	background-image: url(./img/banner-1-new.png);
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-bg {
    background-image: url(./img/banner-1-new.png);
    background-size: cover;
    background-position: center center;
    max-width: 1920px;
    margin: 0 auto;
}

.slogan-section .wrapper {
    height: 130px;
}

.title-section .wrapper {
    min-height: 218px;
}

.title-section .wrapper img{
    width: 100%
}

.title-section__text{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.slogan-item {
    position: relative;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    height: 130px;
    list-style: none;
    font-family: 'KelsonSans-Regular';
    font-size: 24px;
}

.slogan-item + .slogan-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}


.slogan-section-link > a{
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.slogan-item > .sub-menu,
.slogan__submenu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(28, 72, 154);
    list-style-type: none;
    padding: 0 15px;
    z-index: 9;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

.slogan-item:hover .sub-menu,
.slogan-item:hover .slogan__submenu {
    height: auto;
}

.slogan-item > .sub-menu li,
.slogan__submenu li {
    line-height: 50px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    line-height: 1.5;
    padding: 15px 0;
}

.slogan-item > .sub-menu li a,
.slogan__submenu li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
}

/* TOP MENU */
.top-menu-item {
    position: relative;
}

.top-menu-item > .sub-menu,
.top-menu__submenu {
    height: 0;
    margin-top: -1px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    background: rgb(28, 72, 154);
    list-style-type: none;
    z-index: 9;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
    min-width: 100%;
}

.top-menu-item:hover .sub-menu,
.top-menu-item:hover .top-menu__submenu {
    height: auto;
}

.top-menu-item > .sub-menu li,
.top-menu__submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    line-height: 1.5;
    padding: 8px;
}

.top-menu-item > .sub-menu li a,
.top-menu__submenu li a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
}

@media screen and (max-width: 950px) {
    .top-menu-item > .sub-menu, .top-menu__submenu {
        height: auto;
        position: relative;
        background-color: transparent;
    }

    .top-menu-item > .sub-menu li a, .top-menu__submenu li a {
        color: #0176b6;
    }

    .top-menu-item > .sub-menu li,
    .top-menu__submenu li {
        padding-top: 0;
    }
}

.title-section p,
.title-section-heading p {
    font-size: 42px;
    color: #fff;
    font-family: 'KelsonSans-Bold';
    z-index: 19;
    padding: 20px;
}

/*--comments--*/
.comments-section{
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.comment {
    display: block;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    padding: 24px 0 4px;
    border-right: 1px solid #e5e5e5;
    text-decoration: none;
}

.single-expert {
    padding: 20px 0;
    border-right: 0;
}

.comment:nth-last-of-type(2) {
    border-right: none;
}

.comment__img:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.comment__img {
    display: inline-block;
    width: 30%;
    max-width: 130px;
    max-height: 130px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: 0 42px 0 0;
    vertical-align: top;
}

.comment:nth-last-of-type(2) {
    padding-left: 60px;
}

.comment__img img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.comment__text {
    display: inline-block;
    margin-top: 7px;
    /*width: 55%;*/
    width: 65%;
    font-family: "GothamPro-Light";
    font-size: 21px;
    line-height: 1.25;
    vertical-align: middle;
    color: #000;
}


.comment__auth {
    font-size: 16px;
    font-family: 'GothamPro-Medium';
    color: #aaa;
    margin-top: 8px;
}

.comment__auth-position {
    font-family: 'GothamPro-Regular';
}

.comment__link {
    display: block;
    width: 15px;
    white-space: nowrap;
    -webkit-transform: scale(-1, -1) rotate(90deg);
    -ms-transform: scale(-1, -1) rotate(90deg);
    -o-transform: scale(-1, -1) rotate(90deg);
    transform: scale(-1, -1) rotate(90deg);
    color: #0176b6;
    font-size: 16px;
    position: absolute;
    /*top: 50%;
    right: 0;*/
    top: 74%;
    right: 20px;
}

.news__link {
    display: block;
    white-space: nowrap;
    color: #0176b6;
    font-size: 16px;
    margin-top: 30px;
}

/*--content--*/
.content-section {
    padding-left: 40px;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.content-section:first-of-type{
    border-bottom: none;
}

/*.content-section .content__news {
    border-top: 1px solid #e5e5e5;
}*/

/*--sidebar--*/
.content__sidebar{
    float: right;
    width: 23%;
}

.content__sidebar-img,
.content__news-img,
.announcements__item {
    position: relative;
    display: block;
    font-size: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none;
}

.content__sidebar-img {
    margin: 30px 0;
}

.announcements__item {
    width: 100%;
    padding-top: 100%;
    background: #0176b6;
}

.announcements__item-second{
    background: #008edc;
}

.announcements__item-third{
    background: #009ff7;
}

.publication__img {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 66%;
    overflow: hidden;
    background: no-repeat 50% 50%;
    background-size: cover;
}

.publication__text {
    font-size: 16px;
    line-height: 18px;
    color: #000;
    text-align: center;
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
}

.content__sidebar-img:before {
    content: '';
    position: absolute;
    display: block;
    width:100%;
    height:100%;
    background-color: #12377c;
    opacity:0.7;
}

.content__news-img:hover,
.announcements__item:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.sidebar-img__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: #fff;
    font-size: 16px;
    font-family: 'GothamPro-Bold';
    line-height: 20px;
}

.sidebar-img__title {
    font-size: 24px;
    font-family: 'KelsonSans-Bold';
}

.sidebar-img__text {
    position: absolute;
    bottom: 30px;
    width: 75%;
}

.content__sidebar-rights {
    padding: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.content__mobile-rights {
    display: none;
    padding: 30px 30px 0;
}

.content__sidebar-rights .content__sidebar-title,
.content__mobile-rights .content__sidebar-title {
    color: #c09d50;
}

.content__sidebar-rights ul,
.content__mobile-rights ul {
    list-style: none;
}

.content__sidebar-rights ul li:not(:last-child),
.content__mobile-rights ul li:not(:last-child) {
    margin-bottom: 20px;
}

.content__sidebar-rights ul li a,
.content__mobile-rights ul li a {
    text-decoration: none;
    color: #3d4b66;
    font-size: 18px;
    display: block;
}

.content__sidebar-information {
    padding: 30px;
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
}

.content__sidebar-information:last-of-type {
    border-bottom: none;
}

.content__sidebar-title {
    font-family: 'KelsonSans-Bold';
    font-size: 24px;
    margin-bottom: 20px;
}

.content__sidebar-card{
    position:relative;
    display: block;
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    color: #000;
}

.slide-thumbnail {
    width: 100%;
    height: 0;
    padding-top: 66%;
    overflow: hidden;
    background: no-repeat 50% 50%;
    background-size: cover;
    margin-bottom: 20px;
}

.content__sidebar-card:last-of-type {
    border: none;
}

.content__sidebar-date,
.content__sidebar-person {
   /* display: inline-block;
    width: 37%;
    padding-right: 30px;*/
    display: block;
    width: 50%;
    padding: 0;
    /*margin: 0 auto 10px;*/
    font-size: 32px;
    color: #0176b6;
    vertical-align: top;
}

.swiper-container .content__sidebar-date {
    width: 100%; 
}

.content__sidebar-person img {
    display: block;
    width: 70%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
}

.content__sidebar-date img,
.content__news-img img,
.content__news-img .bg-blue,
.content__sidebar-img img,
.banner-section img {
    width: 100%;
    height:auto;
}

.banner-section img {
    height: auto;
}

.bg-blue {
    min-height:240px;
    background: #0176b6;
}

.content__sidebar-text{
    display: inline-block;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
}

.content__sidebar-person-name {
    font-family: 'GothamPro-Bold';
}

.content__sidebar-contact a {
    text-decoration: none;
    font-family: 'GothamPro-Regular';
    color: #000;
}

.content__sidebar-contact-mail {
    padding-top: 10px;
}

/*--news--*/
.content__news,
.project-article {
    position: relative;
    border-right: 1px solid #e5e5e5;
    padding: 30px;
    padding-left: 0;
    width:77%;
    float: left;
}

.content-article {
	padding-left: 0;
	padding: 30px;
	width: 100%;
	margin-bottom: 50px;
}

.program-wrap {
	display: flex;
	flex-wrap: wrap;
}
.program-column {
	width: 100%;
}
.program-column.program-column-2 {
	width: 50%;
}
.program-column__title {
	color: #c09d50;
	font-family: 'KelsonSans-Bold';
	font-size: 36px;
	text-align: center;
	margin-bottom: 50px;
}
.program-column:not(:last-child) {
	border-right: 1px solid #e5e5e5;
}
.program-slider-heading {
    margin-bottom: 30px;
    display: flex;
    margin-right: 30px;
    margin-left: 30px;
}
.program-slider-heading__text {
    font-family: 'KelsonSans-Regular';
    color: #c09d50;
    font-size: 18px;
    line-height: 21px;
    margin-right: 15px;
}
.program-slider-heading__line {
    display: inline-block;
    height: 20px;
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
}
.program-slider,
.program-slider-column-2 {
	margin-bottom: 50px;
}
.program-slider .slick-list,
.program-slider-column-2 .slick-list {
	margin: 0 40px;
}
.comments-slide__item {
	margin: 0 20px;
	display: block;
	text-decoration: none;
}
.comments-slide__img {
	width: 100%;
	height: 0;
	padding-bottom: 66%;
	overflow: hidden;
	background: no-repeat 50% 50%;
    background-size: cover;
    margin-bottom: 20px;
}
.comments-slide__quote {
	font-size: 16px;
	color: #000;
}

.post__news {
    border-top: 1px solid #e5e5e5;
    border-right: none;
    width: 100%;
}

.content__news-row {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.publication__row {
    padding-bottom: 60px;
}

.content__news-row:last-of-type,
.publication__row:last-of-type {
    margin-bottom: 0;
}

.content__news-column {
    display: inline-block;
    width: 23%;
    margin-right: 2.6%;
}

.content__news-column-double {
    width: 48.6%;
}

.content__news-column:last-of-type{
    margin-right: 0;
}

.content__news-img {
    margin-bottom: 30px;
}

.content__news-img:before {
    content: '';
    position: absolute;
    display: block;
    width:100%;
    height:100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
background-image: -webkit-linear-gradient(bottom, rgba(18, 56, 124, 0.5) 0%, rgba(18, 56, 124, 0.5) 17%, rgba(18, 56, 124, 0) 100%);
background-image: -o-linear-gradient(bottom, rgba(18, 56, 124, 0.5) 0%, rgba(18, 56, 124, 0.5) 17%, rgba(18, 56, 124, 0) 100%);
background-image: linear-gradient(to top, rgba(18, 56, 124, 0.5) 0%, rgba(18, 56, 124, 0.5) 17%, rgba(18, 56, 124, 0) 100%)	;

}

.content__news-img:last-of-type {
    margin-bottom: 0;
}

.content__news-text,
.announcements__date{
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    font-family: 'GothamPro-Medium';
    line-height: 20px;
    z-index: 10;
}

.announcements__date {
    font-size: 42px;
    top: 30px;
    bottom: auto;
    font-family: 'GothamPro-Regular'
}

.content__news-main-text {
    font-size: 22px;
    line-height: 28px;
}

/*--posts-section--*/
.post-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 30px;
}

.post-section__title {
    font-size: 42px;
    padding-top: 40px;
    padding-bottom: 60px;
}

.post-section .content__news-row {
    margin-bottom: 30px;
}

.post-section .content__news-row:last-of-type {
    margin-bottom: 0;
}

.post-section .content__news-column {
    display: inline-block;
    width: 22.2%;
    margin-right: 3%;
}

.post-section .content__news-column-double {
    width: 47.8%;
}

.post-section .content__news-column:last-of-type{
    margin-right: 0;
}

.publication__column{
    display: inline-block;
    width: 24.5%;
    border-right: 1px solid #e5e5e5;
    vertical-align: top;
    min-height: 300px;
}

.publication__column:last-of-type {
    border-right: none;
}

.publication-filter-heading {
    margin-bottom: 50px;
    display: flex;
    margin-right: 30px;
}
.publication-filter-heading__text {
    font-family: 'KelsonSans-Bold';
    color: #c09d50;
    font-size: 27px;
    line-height: 21px;
    margin-right: 15px;
}
.publication-filter-heading__line {
    display: inline-block;
    height: 20px;
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
}
.post-section-publications {
    padding: 0 30px;
}
.publication-content {
    width: 77%;
    padding: 50px 0 30px;
    border-right: 1px solid #e5e5e5;
}
.publication-list {
    display: flex;
    flex-wrap: wrap;
}
.publication__item {
    width: 33%;
    margin-bottom: 80px;
    padding: 0 40px;
}

.publication__item:not(:nth-child(3n+3)) {
    border-right: 1px solid #e5e5e5;
}

.publication__item:last-child {
    border-right: none;
}

.publication-filter-list {
    margin-top: 60px;
    margin-left: 30px;
}
.publication-filter-list_mobile {
	display: none;
	margin-left: 0;
	margin-top: 0;
	margin-bottom: 30px;
}
.publication-filter-list ul {
    list-style: none;
}
.publication-filter-list ul li {
    font-size: 18px;
    color: #0176b6;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
}
.publication-filter-list ul li:hover {
    font-weight: 700;
}
.publication-filter-list .filter-item.active {
    font-weight: 700;
}


/*--project--*/
.project-article {
    padding-bottom: 50px;
    /*border-bottom: 1px solid #e5e5e5; */
}

.post-article .project__main-title,
.project__main-title{
    font-size: 41px;
    margin-bottom: 30px;
}

.project-article > h1,
.post-article > h1,
.content-article > h1 {
    font-size: 40px;
}

.project-article > h2,
.post-article > h2,
.content-article > h2 {
    font-size: 36px;
}

.project-article > h3,
.post-article > h3,
.content-article > h3 {
    font-size: 32px;
}

.project-article > h4,
.post-article > h4,
.content-article > h4 {
    font-size: 28px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.project-article > h1,
.project-article > h2,
.project-article > h3,
.post-article > h1,
.post-article > h2,
.post-article > h3,
.content-article > h1,
.content-article > h2,
.content-article > h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.project-article > p,
.post-article > p,
.content-article > p {
    font-size: 16px;
    padding-left: 20px;
    line-height: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}


.project-article > ul,
.project-article > ol,
.post-article > ul,
.post-article > ol,
.content-article > ul,
.content-article > ol {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
    /*overflow: hidden;*/
}

.post-date {
    font-size:16px;
    color: #0176b6;
    margin-bottom: 30px;
}

.post-article {
    padding: 30px;
    padding-left: 0;
    width:70%;
    margin: 0 auto;
}

.post-article:after {
    content: '';
    display: block;
    clear: both;
}

.post-article blockquote {
    text-align: center;
    width: 70%;
    margin: 50px auto;
}

.post-article blockquote p {
    color: #0176b6;
    padding: 30px 0;
    font-size: 23px;
    line-height: 27px;
}

.post-article blockquote:before,
.post-article blockquote:after {
    content: '';
    width: 150px;
    height: 2px;
    display: block;
    background: #0176b6;
    margin:0 auto;
}

.project__slider,
.large__img {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.project__slider img,
.large__img img {
    width: 100%;
}

.soc-nets > div {
    display: inline-block;
    background: #ebebeb;
    margin-left: 20px!important;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: content-box;
}

/*.soc-nets .soc_twitter:before,*/
/*.soc-nets .soc_facebook:before,*/
/*.soc-nets .soc_google:before,*/
/*.soc-nets .soc_vkontakte:before {*/
    /*content: '';*/
    /*display: inline-block;*/
    /*width: 15px;*/
    /*height: 15px;*/
    /*background: url(./img/tw.png);*/
    /*-webkit-background-size: cover;*/
    /*background-size: cover;*/
    /*margin-right: 10px;*/
    /*}*/

    /*.soc-nets .soc_facebook:before{*/
        /*background: url(./img/fb.png);*/
        /*-webkit-background-size: cover;*/
        /*background-size: cover;*/
        /*}*/
        /*.soc-nets .soc_google:before{*/
            /*background: url(./img/gl.png);*/
            /*-webkit-background-size: cover;*/
            /*background-size: cover;*/
            /*}.soc-nets .soc_vkontakte:before{*/
               /*background: url(./img/vk.png);*/
               /*-webkit-background-size: cover;*/
               /*background-size: cover;*/
               /*}*/

               /*--comments--*/
               .comments-page {
                padding: 50px 0;
            }

            .comments-page__row {
                overflow: hidden;
            }

            .comments-page__column {
                width: 50%;
                float: left;
            }

            .comments-page__item {
                display: block;
                margin-bottom: 50px;
                text-decoration: none;
            }

            .comments-page__item .comment__img {
                margin: 0 15px;
                max-width: 100px;
                max-height: 100px;
            }

            .comments-page__item .comment__text {
                width: 69%;
                font-size: 16px;
                line-height: 20px;
            }

            .comments-page__item .comment__auth {
                font-size: 14px;
                margin-top: 15px;
            }

            .comments-page__nav {
                display: inline-block;
                padding-top: 15px;
                list-style-type: none;
                margin: 15px;
                border-top: 1px solid #0176b6;
            }

            .comments-page__nav .page-numbers {
                display: inline-block;
                margin-right: 25px;
            }

            .comments-page__nav .page-numbers:last-child {
                margin-right: 0;
            }

            .comments-page__nav .page-numbers {
                font-size: 15px;
                color: #0176b6;
                text-decoration: none;
            }

            .comments-page__nav .page-numbers.current  {
                font-family: 'GothamPro-Bold';
            }

            .announcements-section {
                padding-bottom: 60px;
            }

            /*--footer--*/
            footer {
                text-align: center;
                padding: 40px;
                color: #e5e5e5;
                font-size: 16px;
            }
            /*--flex--*/
            .flex-container {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
            }

            .flex-direction-row-reverse {
                -webkit-flex-direction: row-reverse;
                -moz-flex-direction: row-reverse;
                -ms-flex-direction: row-reverse;
                -o-flex-direction: row-reverse;
                flex-direction: row-reverse;
            }

            .flex-direction-column {
                -webkit-flex-direction: column;
                -moz-flex-direction: column;
                -ms-flex-direction: column;
                -o-flex-direction: column;
                flex-direction: column;
            }

            .flex-align-items-center {
                -webkit-align-items: center;
                -ms-flex-align: center;
                align-items: center;
            }

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

            .flex-justify-content-around {
                justify-content: space-around;
            }

            /*swiper*/
            .swiper-buttons-wrapper {
                position: relative;
                height:44px;
                margin-top: 10px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                top: 22px;
            }

            .swiper-button-prev {
                left: 37%;
            }

            .swiper-button-next{
                left: 50%;
                right: auto;
            }

            .swiper-pagination-fraction {
                bottom: 10px;
                right: 0;
                width: 100%;
                left: auto;
                text-align: right;
                font-size: 24px;
                color: #bfbfbf;
                padding: 15px 15px 0 0;
            }

            .swiper-container-b .swiper-button-next,
            .swiper-container-b .swiper-button-prev {
                top: 90%;
            }

            .swiper-container-b .swiper-button-prev {
                left: 20px;
            }

            .swiper-container-b .swiper-button-next {
                left: 70px;
                right: auto;
            }

            #disqus_thread {
                padding-top: 20px;
            }

            @media screen and (max-width:1367px) {
                .comments-section {
                    padding: 40px 30px;
                }
                .comment__link {
                    right: 2px;
                }
                .header__contacts-info,
                .header__contacts-links {
                    display: block;
                    text-align: right;
                }
                
                .header__contacts-links{
                    text-align: right;
                    margin-top: 15px;
                }

                .header__contacts-mail{
                    margin-right: 0;
                }
            }

            /*header*/
            @media screen and (max-width: 1100px){
                .header__contacts-tel {
                    margin-right: 0;
                }
                .header__contacts-mail{
                    margin-left: 25px;
                }

                .header__navigation a,
                .header__contacts-tel,
                .header__contacts-mail {
                    font-size: 14px;
                }
            }

            @media screen and (max-width: 950px){
                .header__navigation {
                    display: none;
                }

                .header__contacts {
                    order: -1;
                    text-align: left;
                }

                .header__contacts-mail {
                    display: block;
                    max-width: 90px;
                    margin-left: 0;
                }

                .header__contacts-links{
                    text-align: left;
                }

                .header__mobile-nav{
                    display: block;
                    -webkit-flex: 0.4;
                    -moz-flex: 0.4;
                    -ms-flex: 0.4;
                    -o-flex: 0.4;
                    flex: 0.4;
                    text-align: right;
                }

                .header__mobile-nav img {
                    width: 50px;
                    cursor: pointer;
                }
            }

            /*content of pages*/
            @media screen and (max-width: 1024px){
                .slogan-section p {
                    font-size: 16px;
                    line-height: 20px;
                }

                .comment__text {
                    font-size: 14px;
                    line-height: 22px;
                }

                .comment__img {
                    width: 22%;
                }

                .comment__auth {
                    font-size: 11px;
                }

                .comment__link {
                    -webkit-transform: rotate(0deg) scale(1, 1);
                    -ms-transform: rotate(0deg) scale(1, 1);
                    -o-transform: rotate(0deg) scale(1, 1);
                    transform: rotate(0deg) scale(1, 1);
                    font-size: 11px;
                    right: 80px;
                    top:auto;
                    bottom: 10px;
                }

                .content__sidebar,
                .content__news,
                .project-article {
                    width: 50%;
                }

                .program-wrap {
                	display: block;
                }
                .program-column.program-column-2 {
                	width: 100%;
                }

                .post-section-publications .content__sidebar {
                	width: 23%;
                }
                .publication__item {
				    width: 50%;
				}
				.publication__item:not(:nth-child(3n+3)) {
				    border-right: none;
				}
				.publication__item:not(:nth-child(2n+2)) {
				    border-right: 1px solid #e5e5e5;
				}
				.publication__item:last-child {
				    border-right: none;
				}
				

                .post__news,
                .project .content__news {
                    width: 100%;
                }

                .content__news-column {
                    width: 100%;
                    margin-bottom: 30px;
                    margin-right: 0;
                }

                .post__news .content__news-column,
                .post-section .content__news-column {
                    width: 100%;
                }

                .post__news .content__news-column .content__news-img,
                .post-section .content__news-column .content__news-img,
                .post-section .content__news-column-single {
                    width: 47%;
                    display: inline-block;
                    margin-right: 5%;
                }

                .post__news .content__news-column .content__news-img:last-of-type,
                .post-section .content__news-column .content__news-img:last-of-type,
                .post-section .content__news-column-single:nth-of-type(2n){
                    margin-right: 0;
                }

                .post-section .content__news-column-single-1 {
                    margin-right: 5%!important;
                }

                .post__news .content__news-column-double .content__news-img,
                .post-section .content__news-column-double .content__news-img,
                .post-section .content__news-column-single .content__news-img {
                    width: 100%;
                }

                .post__news .content__news-img,
                .post-section .content__news-img {
                    margin-bottom: 0;
                }

                .content__news-row {
                    margin-bottom: 0;
                }
                .content__news-row:first-child .content__news-column {
                    order: 2;
                }
                .content__news-row:first-child .content__news-column-double {
                    order: 1;
                }

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

                .post-article {
                    width: 90%;
                }

                .title-section p,
                .title-section-heading p {
                    font-size: 38px;
                }

                .publication__row:first-of-type {
                    padding-bottom: 0;
                }

                .publication__column {
                    width: 49.5%;
                    margin-bottom: 30px;
                }

                .publication__column:nth-of-type(2n) {
                    border-right: none;
                }

                .comments-page__column {
                    width: 100%;
                    float: none;
                    margin: 0 auto;
                }

                .comments-page__item .comment__text {
                    width: 81%;
                }
            }

            @media screen and (max-width: 768px){
                .header__contacts {
                    display: none;
                }

                .narrow-mobile{
                    display: block;
                }

                .narrow-mobile a {
                    text-transform: lowercase!important;

                }

                .header__contacts-links {
                    text-align: center;
                }

                .header__logo {
                    width: 70%;
                    max-width: 287px;
                }

                .header__logo img{
                    width: 100%;
                }

                .header__mobile-nav img {
                    width: 30px;
                    margin-top: 15px;
                }

                .search__title {
                    font-size: 25px;
                }

                .slogan-section .wrapper {
                    /*display: block;*/
                    /*overflow: hidden;*/
                    position: relative;
                    align-items: flex-start;
                    flex-direction: column;
                    height: auto;
                }

                .slogan-item {
                    height: auto;
                    position: static;
                }

                .slogan-section-link > a{
                    display: block;
                    text-align: left;
                    margin: 6px 0;
                    padding-left: 15px;
                    max-width: 100%;
                    position: static;
                    -webkit-transform: translate(0, 0);
                    -ms-transform: translate(0, 0);
                    -o-transform: translate(0, 0);
                    transform: translate(0, 0);
                }

                .slogan__submenu {
                    z-index: 9;
                }
				
				.publication-filter-list_mobile {
					display: block;
				}
				.publication-filter-list_desc {
					display: none;
				}

                .comments-section {
                    display: block;
                    padding: 0;
                }

                .comment {
                    width: 100%;
                    -webkit-flex: none;
                    -moz-flex: none;
                    -ms-flex: none;
                    -o-flex: none;
                    flex: none;
                    border-right: none;
                    border-bottom: 1px solid #e5e5e5;
                    padding: 30px 0;
                }
                .comment:first-child {
                    padding-bottom: 0;
                }

                .comment:last-of-type {
                    border-bottom: none;
                }

                .comment:nth-last-of-type(2) {
                    padding-left: 0;
                }

                .comment__img {
                    width: 26%;
                    margin: 0 20px;
                    vertical-align: top;
                }

                .content__sidebar,
                .content__news,
                .publication-content,
                .post-section-publications .content__sidebar {
                    width: 100%;
                }

                .content__mobile-rights {
                    display: block;
                }
                .content__sidebar-rights {
                    display: none;
                }

                .publication-content {
                	border-right: none;
                }

                .content__news {
                    padding-left: 30px;
                }

                .content-section {
                    padding: 0;
                }

                footer {
                    padding: 30px;
                    font-size: 12px;
                }

                .project__main-title,
                .post-section__title {
                    font-size: 24px;
                }

                .post-article {
                    width: 95%;
                    padding: 30px 0;
                }

                .project-article {
                    width: 100%;
                    border-right: none;
                }

                .post-article > h3 {
                    font-size: 20px;
                }

                .post-article  blockquote {
                    width: 95%;
                }

                .post-article  blockquote p {
                    font-size: 18px;
                    line-height: 25px;
                }

                .project__slider,
                .large__img {
                    margin: 30px 0;
                }

                .post__news .content__news-column .content__news-img,
                .post-section .content__news-column-double .content__news-img,
                .post-section .content__news-column-single .content__news-img,
                .post-section .content__news-column .content__news-img {
                    width: 100%;
                    margin-bottom: 20px;
                }

                .post-section .content__news-column {
                    width: 100%;
                    margin-bottom: 0;
                }

                .title-section p,
                .title-section-heading p {
                    font-size: 24px;
                }

                .publication__column {
                    display: block;
                    width: 90%;
                    margin: 0 auto 30px;
                    border-right: none;
                }

                .comments-page {
                    padding-top: 0;
                }

                .comments-page__column {
                    width: 100%;
                }

                .comments-page__item .comment__img {
                    margin: 0;
                    margin-right: 10px;
                }

                .comments-page__item .comment__text {
                    width: 65%;
                    font-size: 12px;
                    line-height: 16px;
                }

                .comments-page__item .comment__auth {
                    font-size: 9px;
                    margin-top: 10px;
                }

                .comments-page__nav li {
                    margin-right: 10px;
                }

                .announcements__item {
                    width: 300px;
                    padding-top: 300px;
                    margin: 0 auto;
                    margin-bottom: 30px;
                }

                .announcements-section .content__news-row {
                    margin-bottom: 0;
                }

                .announcements-section .content__news-column {
                    width: 100%;
                    min-width: 300px;
                }

                .announcements-section {
                    padding: 0 10px;
                }

                .post-article img {
                    width:100%;
                    height:auto;
                }

                .project-article > p,
                .post-article > p {
                    overflow: inherit;
                }
            }
				
			@media screen and (max-width: 600px){
                .publication__item {
				    width: 100%;
				    border: none !important;
				    padding: 0;
				}
				.publication__text {
				    width: 100%;
				}

            }

            @media screen and (max-width: 440px){
                .slogan-section-link > a{
                    font-size: 17px;
                    padding-left: 10px;
                }
            }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    /*background: #fff;*/
    /*border: 1px solid #f0f0f0;*/
    max-width: 100%; /* Image does not overflow the content area */
    /*padding: 5px 3px 10px;*/
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption figcaption.wp-caption-text {
    color: #9d9c9c;
    font-size: 14px;
    float: right;
    border-bottom: 2px solid #c8c7c7;
    line-height: 130%;
    display: block;
    padding: 10px 0 10px 20px;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.wp-caption:after {
    content: '';
    display: block;
    clear: both;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    letter-spacing: 0.875em;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Demch.co Alex 14.05.2019 Card experts-autors*/
.single-expert 
{
    margin-top: 0px !important; 
}