@import "/css/newer-design/styleModules/global/global.styles.css";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html body .articles__heading {
  font-size: 18px;
  margin: 16px 0 9px;
}
html body .articles__list * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: default;
  transition: 0.2s ease all;
}
html body .articles__list ul {
  list-style-type: none;
}
html body .articles__list a {
  text-decoration: none;
}
html body .articles__list {
  list-style-type: none;
  display: flex;
  position: relative;
  left: -10px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding-left: 0;
  transition: 0.2s ease all;
}
html body .articles__list.analytics_hash_block .articles__item-link-n-wrapper {
  height: 100%;
  display: grid;
  grid-template: "a b" "a c" "a d"/5fr 6fr;
}
html body .articles__list.analytics_hash_block .articles__item img {
  grid-area: a;
  max-width: initial;
  max-height: initial;
}
html body .articles__list.analytics_hash_block .articles__item-date {
  font-size: 11px;
}
html body .articles__list.analytics_hash_block .articles__item-date-wrapper {
  grid-area: d;
  text-align: end;
  align-self: end;
}
html body .articles__list.analytics_hash_block .articles__item-text {
  text-align: start;
}
html body .articles__list.analytics_hash_block .articles__item-text-wrapper {
  grid-area: b;
  padding-left: 5px;
  margin-top: 0;
}
html body .articles__list.analytics_hash_block .articles__item .subtitle {
  grid-area: c;
  align-self: start;
  font-size: 11px;
  color: #0f436e;
  line-height: 15px;
  padding-left: 5px;
  padding-top: 10px;
  position: relative;
}
html body .articles__list.analytics_hash_block .articles__item .subtitle::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 25%;
  background-color: #232323;
  top: 5px;
}
html body .articles__item {
  cursor: pointer;
  border: 1px solid #d1d1d1;
  background-color: #fbfcfc;
  width: 45%;
  max-width: 273px;
  min-width: 147px;
  margin: 5px;
  padding: 9px;
  transition: 0.2s ease all;
  transform: scale(1);
}
html body .articles__item:focus, html body .articles__item:hover, html body .articles__item:active {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
html body .articles__item:active {
  transform: scale(0.95);
}
html body .articles__item * {
  cursor: pointer;
}
html body .articles__item-link-n-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
html body .articles__item-link-n-wrapper img {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 7px;
}
html body .articles__item-date {
  color: #a0a0a0;
}
html body .articles__item-text {
  text-align: center;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  transition: 0.1s ease all;
}
html body .articles__item-text-wrapper {
  margin-top: 6px;
  flex-basis: 100%;
}

@media (max-width: 1400px) {
  html body .articles__list {
    left: -5px;
  }
  html body .articles__item {
    margin: 5px;
    width: 32%;
  }
}
@media (max-width: 1080px) {
  html body .articles__heading {
    position: relative;
    left: 3px;
  }
  html body .articles__list {
    position: static;
  }
  html body .articles__item {
    margin: 3px;
    max-width: initial;
    width: 32.5%;
  }
}
@media (max-width: 780px) {
  html body .articles__heading, html body .articles__list {
    width: 97vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1%;
  }
  html body .articles__item {
    width: 48%;
    margin: 3px;
  }
}
@media (max-width: 640px) {
  html body .articles__heading, html body .articles__list {
    padding-left: 1.5%;
  }
}
@media (max-width: 620px) {
  html body .articles__heading, html body .articles__list {
    position: relative;
    left: -4.5%;
  }
}
@media (max-width: 470px) {
  html body .articles__heading {
    font-size: 14px;
  }
  html body .articles__list, html body .articles__heading {
    width: 92vw;
    left: -2%;
  }
  html body .articles__item-text {
    font-size: 10px;
    line-height: 1.2;
  }
  html body .articles__list.analytics_hash_block .articles__item-link-n-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  html body .articles__list.analytics_hash_block .articles__item img {
    max-width: 48%;
    order: -2;
  }
  html body .articles__list.analytics_hash_block .articles__item-date {
    font-size: 9px;
  }
  html body .articles__list.analytics_hash_block .articles__item-date-wrapper {
    text-align: center;
    align-self: center;
    order: 3;
    padding-top: 3px;
  }
  html body .articles__list.analytics_hash_block .articles__item-text {
    text-align: center;
  }
  html body .articles__list.analytics_hash_block .articles__item-text-wrapper {
    flex-basis: auto;
    order: -1;
  }
  html body .articles__list.analytics_hash_block .articles__item .subtitle {
    text-align: center;
    width: 100%;
  }
  html body .articles__list.analytics_hash_block .articles__item .subtitle::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 25%;
    background-color: #232323;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
  }
}
html body .telegram-block__wrapper--positioning-2 {
  flex-direction: row;
}
html body .telegram-block__wrapper--positioning-2 .telegram-block__link {
  text-align: left;
  justify-content: flex-start;
  min-width: 300px;
  margin-left: 10px;
}

html body .news-pool .newpoint-imgdate--position-refine {
  display: grid;
  grid-template: "a b" "a c";
}
html body .news-pool .newpoint-imgdate--position-refine img {
  grid-area: a;
}
html body .news-pool .newpoint-imgdate--position-refine .the-date {
  grid-area: b;
}
html body .news-pool .newpoint-imgdate--position-refine .the-source {
  grid-area: c;
  align-self: start;
  justify-self: end;
}

html body .news-big-img {
  max-width: 50%;
}

@media (max-width: 470px) {
  html body .news-big-img {
    max-width: 70%;
  }
}
.graph-yeardiag {
  display: inline-block;
  width: 50%;
  height: auto;
  /* margin: 0 0 0 10%; */
}

.graph-yeardiag .canv-capture {
  width: 100%;
  height: 250px;
}

html body .graph-yeardiag canvas {
  width: 685px !important;
  height: auto;
}

.graph-promdiag {
  display: inline-block;
  width: 49%;
  height: 300px;
}

.graph-rwsdiag {
  display: inline-block;
  width: 30%;
  height: auto;
  position: relative;
  left: -60px;
  padding-top: 40px;
}

.graph-rwsdiag canvas {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.canv-capture {
  height: 250px;
}

@media (max-width: 1400px) {
  html body.scheme2 div.all .brick {
    margin: auto;
  }
  html body .graph-promdiag {
    width: 30%;
  }
  html body .graph-promdiag #promdiag {
    width: 100% !important;
    height: 55% !important;
    margin: auto;
    position: relative !important;
    left: 0px !important;
  }
  .graph-rwsdiag {
    left: 0;
  }
  .graph-rwsdiag:first-child {
    margin-left: 8%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1200px) {
  html body .graph-promdiag {
    width: 30%;
  }
  html body .graph-promdiag #promdiag {
    position: relative;
    left: 70px;
  }
}
@media (max-width: 884px) {
  .graph-yeardiag {
    height: 226px;
  }
  .graph-promdiag {
    position: relative;
    left: 22px;
  }
  #yeardiag {
    width: 100% !important;
  }
}
/* .graph-rwsdiag .canv-capture {
  height: 160px;
} */
html body div.all .search-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 5px;
  padding: 1rem;
}
html body div.all .search-infield {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 5px;
  width: 100%;
  padding: 0;
  flex-grow: 2;
}
html body div.all .search-infield input {
  width: 100%;
}
html body div.all .search-infield .clean_search1 {
  right: 30px;
  width: 20px;
  height: 20px;
  position: absolute;
  opacity: 0.5;
  top: 53%;
  right: 36px;
  cursor: pointer;
  transition: 0.2s ease all;
}
html body div.all .search-infield .clean_search1::before, html body div.all .search-infield .clean_search1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #000;
  transform: translateX(-50%) rotate(45deg);
}
html body div.all .search-infield .clean_search1::after {
  transform: translateX(-50%) rotate(135deg);
}
html body div.all .search-infield .clean_search1:focus, html body div.all .search-infield .clean_search1:hover {
  opacity: 0.65;
}
html body div.all .search-infield .clean_search1:active {
  opacity: 0.9;
}
html body div.all .search-infield img {
  border-radius: 5px;
  margin-left: -13px !important;
}
html body div.all .search-sector {
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  margin-top: 0.5rem;
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  background-color: #f8f8f8;
}
html body div.all .search-sector label {
  display: inline-block;
  flex-grow: 0;
  padding: 0px 5px 0 0;
  position: relative;
  top: -3%;
}
html body div.all .search-sector select {
  flex-grow: 0;
}
html body div.all .search-units-cnt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}
html body div.all .search-usual-cnt, html body div.all .search-tag-cnt {
  width: 45%;
}
html body div.all .search-count {
  margin-bottom: 10px;
  border-bottom: none;
}
html body div.all .search-count i {
  color: black;
  display: inline-block;
  padding-right: 10px;
}
html body div.all .search-count .number-wrapper {
  display: inline-block;
  background-color: #f0f2f6;
  border-radius: 50px;
  color: #224477;
  padding: 3px 10px;
  margin-bottom: 10px;
}
html body div.all .search-hd {
  font-size: 16px;
}
html body div.all .search-unit p a {
  color: #bbb;
  font-weight: 100;
  font-size: 13px;
  text-align: left;
}

.search-result .search-unit, .search-result .search-unit * {
  transition: 0.3s ease all;
  text-decoration: none !important;
}
.search-result .search-unit {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 1rem !important;
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.search-result .search-unit:hover, .search-result .search-unit:focus {
  border-radius: 0.5rem;
  background-color: #eef3ff;
}
.search-result .search-unit:hover .search-unit__heading, .search-result .search-unit:focus .search-unit__heading {
  color: #223352;
}
.search-result .search-unit:hover .search-unit__contents, .search-result .search-unit:focus .search-unit__contents {
  color: #426ab5;
}
.search-result .search-unit:hover .search-unit__query-match, .search-result .search-unit:focus .search-unit__query-match {
  color: #fff;
  background-color: #7ba0ea;
}
.search-result .search-unit:active {
  background-color: #b5ccff;
}
.search-result .search-unit__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
.search-result .search-unit__area-name {
  border-radius: 50px;
  display: inline-block;
  padding: 0 !important;
}
.search-result .search-unit__heading {
  padding-bottom: 0;
}
.search-result .search-unit__contents {
  color: #646464;
  text-align: left !important;
}
.search-result .search-unit__query-match {
  background-color: #e3e8ff;
}
.search-result__hr {
  border: none;
  border-bottom: 1px solid #e1e1e1;
}
.search-result__hr:last-of-type {
  display: none;
}

@media (max-width: 790px) {
  .search-result .search-unit {
    padding: 0.15rem !important;
  }
}
@media (max-width: 480) {
  .search-result .search-unit {
    padding: 0rem !important;
  }
}
@media (max-width: 470px) {
  html body .news-navigator__fixed {
    box-sizing: border-box;
    width: 100vw;
    left: 0;
    padding: 5% 5% 0;
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 10;
  }
  html body .news-navigator__fixed .years-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    border: none;
  }
  html body .news-navigator__fixed .years-line a {
    margin: 0;
    padding: 6px;
    width: auto;
  }
  html body .news-navigator__fixed .years-line a.current {
    font-size: 13px;
    color: #224477;
    position: relative;
    display: inline-block;
    border: none;
  }
  html body .news-navigator__fixed .years-line a.current::before {
    position: absolute;
    content: "";
    width: 76%;
    height: 2px;
    top: 80%;
    background-color: #247;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
html body #page-19 .news-pool {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body #page-19 .news-pool .article_item {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
html body #page-19 .articles__years-line {
  width: 100%;
}
html body #page-19 .news_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
}
html body #page-19 .newpoint-one .newpoint-imgdate {
  display: inline-block;
  width: 100%;
  height: 54px;
  margin: 0.5%;
}

@media (max-width: 780px) {
  html body #page-19 .news_cards_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  html body #page-19 .news_cards_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 470px) {
  html body #page-19 .article_item .newpoint-name {
    margin-top: 0;
  }
  html body #page-19 .article_item .newpoint-imgdate {
    height: 40px;
  }
}
html body .copy-link__btn {
  width: 14px;
  height: 16px;
  padding: 0;
  margin: 0;
  margin-left: 9px;
  position: relative;
  top: 2px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.2s ease all;
}
html body .copy-link__btn:focus, html body .copy-link__btn:hover {
  opacity: 0.7;
}
html body .copy-link__btn:active {
  opacity: 1;
}
html body .copy-link__svg {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html body .news_remove_footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  margin-top: 30px;
  border-top: 1px solid lightgrey;
}
html body .news_remove_footer .source {
  margin: 0;
  margin-right: 10px;
  padding: 0;
  width: auto;
  text-align: left;
}
html body .news_remove_footer .news-switch {
  width: auto;
  min-width: 121px;
  height: 100%;
  margin: 0;
  background-color: #224477;
  box-sizing: border-box;
  padding: 5px 12px 5px 15px;
  transition: 0.065s ease all;
}
html body .news_remove_footer .news-switch:active {
  opacity: 0.6;
}
html body .news_remove_footer .news-switch a {
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
html body .news_remove_footer .article-common-footer-part {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
}
html body .news_remove_footer .related-articles-part {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1400px) {
  html body .news_remove_footer {
    align-items: center;
  }
}
@media (max-width: 780px) {
  html body .news_remove_footer {
    flex-wrap: wrap;
  }
  html body .news_remove_footer .source {
    flex-grow: 1;
    text-align: center;
    margin: 0;
  }
  html body .news_remove_footer .news-switch {
    min-width: 100px;
    padding: 5px 70px;
    margin: auto;
    margin-top: 20px;
  }
  html body .news_remove_footer .article-common-footer-part {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media (max-width: 470px) {
  html body .copy-link__btn {
    width: 11px;
    height: 13px;
    margin-left: 5px;
  }
  html body .news_remove_footer .news-switch {
    padding: 5px 30px;
    margin: auto;
    margin-top: 25px;
  }
}
html body div#page-1 .news-pool .article-analytic-item .article-img {
  left: auto;
}
html body div#page-1 .news-pool .article-analytic-item .article-analytic-title .article-date {
  position: static;
}

html body.scheme2 div#page-1 .main-tile1 .brick {
  padding: 0 10px;
}
html body.scheme2 div#page-1 .main-tile1 .brick p {
  text-align: left;
}
html body.scheme2 div#page-1 .main-tile1 .brick p.knowmore {
  text-align: right;
  padding-right: 26px;
}

@media (max-width: 470px) {
  html body.scheme2 div#page-1 .news-pool {
    justify-content: center;
  }
  html body.scheme2 div#page-1 .news-pool .article-analytic-item {
    width: 46.3%;
  }
  html body.scheme2 div#page-1 .main-tile1 .d2 {
    margin: 0;
  }
  html body.scheme2 div#page-1 .main-tile1 .brick p.knowmore {
    padding-right: 8px;
  }
}
@media (max-width: 1400px) {
  #page-1 .article-analytic-item {
    width: 260px;
  }
}
html body .languages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 6px;
  right: 5px;
  transform: scale(0.65);
  align-self: flex-start;
  z-index: 1;
  background-color: transparent;
  padding: 0px 9px 3px;
  border-radius: 5px;
  transition: 0.13s ease all;
  box-shadow: transparent 0 0 0;
}
html body .languages__list::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-left: 2px solid black;
  border-top: 2px solid black;
  opacity: 0.15;
  transform: rotate(135deg);
  border-radius: 1.5px;
  right: -2.5px;
  top: 9px;
  transition: 0.2s ease all;
}
html body .languages__list:focus, html body .languages__list:hover, html body .languages__list:active {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
html body .languages__list:focus::before, html body .languages__list:hover::before, html body .languages__list:active::before {
  transform: rotate(225deg);
  right: -13px;
  opacity: 85;
}
html body .languages__list:focus .languages__item a, html body .languages__list:hover .languages__item a, html body .languages__list:active .languages__item a {
  opacity: 0.5;
}
html body .languages__list:focus .languages__item--current a, html body .languages__list:hover .languages__item--current a, html body .languages__list:active .languages__item--current a {
  opacity: 1;
}
html body .languages__item a {
  position: relative;
  color: #0065b3;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 21px;
  font-weight: 100;
  opacity: 0;
  transform: scale(1);
  transition: 0.13s ease all;
}
html body .languages__item a:focus, html body .languages__item a:hover {
  opacity: 0.8;
  font-weight: 500;
  transform: scale(1.1);
}
html body .languages__item a:active {
  opacity: 1;
}
html body .languages__item--current a {
  order: 0;
  color: black;
  font-weight: 100;
  cursor: default;
  display: inline-block;
  opacity: 1;
  transform: scale(1);
}
html body .languages__item--current a:hover {
  opacity: initial;
  font-weight: initial;
  transform: scale(1);
}

@media (max-width: 697px) and (min-width: 620px) {
  html body .roof .phones {
    position: relative;
    top: -10px;
  }
}
@media (max-width: 620px) {
  html body .languages__list {
    right: 4px;
    top: 6px;
  }
}
@media (max-width: 470px) {
  html body .languages__list {
    top: 1px;
    z-index: 2;
  }
}
html body .err404 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
html body .err404 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Fira Sans";
  cursor: default;
}
html body .err404__inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 70px;
  padding: 0 15px;
}
html body .err404__heading {
  display: inline-block;
  margin-top: 13px;
  font-size: 250px;
  color: black;
}
html body .err404__description {
  font-size: 30px;
  font-weight: 200;
  position: relative;
  top: -20px;
}
html body .err404__get-back-btn {
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
  background-color: black;
  color: white;
  border-radius: 3px;
  display: inline-block;
  padding: 10px 20px;
  width: 40%;
  text-align: center;
  transform: scale(1);
  box-shadow: none;
  transition: 0.4s ease all;
}
html body .err404__get-back-btn:focus, html body .err404__get-back-btn:hover {
  transform: scale(1.075);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 9px;
  color: white;
}
html body .err404__get-back-btn:active {
  transform: scale(1.03);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 9px;
  color: white;
}

@media (max-width: 470px) {
  html body .err404__inner-wrapper {
    top: 110px;
  }
  html body .err404__heading {
    font-size: 150px;
  }
  html body .err404__description {
    margin-top: 5px;
    font-size: 17.5px;
  }
  html body .err404__get-back-btn {
    margin-top: 5px;
    font-size: 20px;
    width: 60%;
  }
}
html body.scheme1 .filter__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
html body.scheme1 .filter * {
  cursor: default;
  box-sizing: border-box;
}
html body.scheme1 .filter__wrapper {
  position: relatiive;
  width: 100%;
  margin: auto;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
html body.scheme1 .filter__inner-wrapper {
  flex-basis: 43%;
  flex-grow: 4;
  margin-right: 20px;
  min-width: 200px;
}
html body.scheme1 .filter__inner-wrapper-years {
  flex-grow: 1;
  min-width: 70px;
}
html body.scheme1 .filter__inner-wrapper .selectize-input::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-top: 7px solid #d8d8d8;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  top: 16px;
  right: 10px;
}
html body.scheme1 .filter__select {
  margin-right: 10px;
  padding: 0;
  width: 100%;
  background-color: white;
  border: none;
  border-radius: 5px;
  font-family: "Exo 2";
  font-size: 16px;
}
html body.scheme1 .filter__btns-wrapper {
  display: flex;
}
html body.scheme1 .filter__button {
  padding: 11px 16px;
  background-color: #224477;
  color: white;
  border-radius: 5px;
  border: none;
  font-family: "Exo 2";
  font-size: 16px;
  cursor: pointer;
}
html body.scheme1 .filter__button:not(:last-child) {
  margin-right: 20px;
}
html body.scheme1 .filter__button--inactive {
  cursor: default;
  background-color: #d1d1d1;
  color: #a5a5a5;
}
html body.scheme1 .filter__output-list {
  display: flex;
  gap: 0 5px;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
}
html body.scheme1 .filter__output-list-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px;
  margin: 0;
  gap: 4px;
  padding: 2px 4px;
  margin: 4px 0;
  background-color: #aaaaaa;
  color: white;
  border-radius: 3px;
  border: none;
  font-family: "Exo 2";
  font-size: 12px;
}
html body.scheme1 .filter__output-list-item-name {
  display: inline-block;
  padding: 0;
  margin: 0;
  color: white;
}
html body.scheme1 .filter__output-list-item-close-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: none;
  font-weight: 900;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}

.articles__afteryears-line {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

html body #page-1353 .news-pool .article_item,
html body #page-2854 .news-pool .article_item,
html body #page-3302 .news-pool .article_item {
  width: 100%;
  height: 152px !important;
  box-sizing: border-box;
  margin: 0;
}

@media (max-width: 1400px) {
  .articles__afteryears-line {
    grid-gap: 6.5px;
  }
  html body #page-1353 .news-pool .article_item .newpoint-name a,
  html body #page-2854 .news-pool .article_item .newpoint-name a {
    display: inline-block;
    font-size: 11.7px;
    line-height: 12px;
    letter-spacing: -0.3px;
  }
  html body #page-1353 .news-pool .article_item .subtitle,
  html body #page-2854 .news-pool .article_item .subtitle {
    font-size: 11px;
    line-height: 12px;
  }
}
@media (max-width: 780px) {
  html body.scheme1 .filter__section {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  html body.scheme1 .filter__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  html body.scheme1 .filter__inner-wrapper {
    width: 100%;
    margin-bottom: 0;
  }
  html body.scheme1 .filter__output-list-item {
    font-size: 10px;
  }
  html body.scheme1 .filter__btns-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }
  html body.scheme1 .filter__button {
    flex-basis: 100%;
    border-radius: 3px;
    font-size: 14px;
  }
  html body.scheme1 .filter__button:not(:last-child) {
    margin-right: 3px;
  }
  html body #page-1353 .articles__afteryears-line,
  html body #page-2854 .articles__afteryears-line {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  html body #page-1353 .articles__afteryears-line,
  html body #page-2854 .articles__afteryears-line {
    grid-template-columns: repeat(2, 1fr);
  }
  html body #page-1353 .news-pool .article_item,
  html body #page-2854 .news-pool .article_item {
    height: 165px !important;
  }
  html body #page-1353 .news-pool .article_item .subtitle,
  html body #page-2854 .news-pool .article_item .subtitle {
    position: relative;
    top: -5px;
    line-height: 10px;
  }
  html body #page-1617 .news_cards_wrapper,
  html body #page-1838 .news_cards_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  html body #page-1617 .article-item,
  html body #page-1838 .article-item {
    width: 48%;
  }
}
.news-pool {
  padding-top: 5px !important;
}

@media (max-width: 470px) {
  html body #page-1353 div.news-pool .article_item:not(.article_item--news),
  html body #page-2854 div.news-pool .article_item:not(.article_item--news) {
    height: auto !important;
  }
  html body #page-1353 div.news-pool .article_item:not(.article_item--news) .newpoint-name a,
  html body #page-2854 div.news-pool .article_item:not(.article_item--news) .newpoint-name a {
    min-height: 33px;
  }
  html body #page-1353 div.news-pool .article_item:not(.article_item--news) div.article-date,
  html body #page-2854 div.news-pool .article_item:not(.article_item--news) div.article-date {
    bottom: 0;
  }
  html body #page-1353 div.news-pool .article_item:not(.article_item--news) .newpoint-imgdate,
  html body #page-2854 div.news-pool .article_item:not(.article_item--news) .newpoint-imgdate {
    left: 30%;
    transform: translate(-50%, 0%);
  }
}
html body .investprojects-promo__wrapper {
  display: flex;
  flex-direction: row;
  width: 98%;
  align-items: center;
  justify-content: flex-start;
  border: 7px double #f2f2f2;
  border-radius: 4px;
}
html body .investprojects-promo__img-wrapper {
  flex-basis: 50%;
  margin-right: 65px;
}
html body .investprojects-promo__img-wrapper img {
  width: 100%;
}
html body .investprojects-promo__desc {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.9rem;
  margin-top: -3px;
  color: #6e6e6e;
  max-width: 380px;
}

@media (max-width: 1400px) {
  html body .investprojects-promo__desc {
    margin-top: 0px;
    font-size: 1rem;
    line-height: 21.8px;
  }
}
@media (max-width: 867px) {
  html body .investprojects-promo__wrapper {
    flex-direction: column;
    width: 96%;
    padding-bottom: 15px;
  }
  html body .investprojects-promo__img-wrapper {
    margin-right: 0;
    margin-bottom: -10px;
  }
  html body .investprojects-promo__desc {
    text-align: center;
  }
}
@media (max-width: 470px) {
  html body .investprojects-promo__desc {
    font-size: 0.9rem;
    line-height: 18.3px;
  }
}
html body .pages_container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 8px;
}

html body .pageBlock {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0;
  text-decoration: none;
  color: black;
  border: none;
  transition: 0.2s ease all;
}
html body .pageBlock::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background-color: white;
  transform: translate(50%, 17%);
  border-radius: 4px;
  z-index: -1;
  left: -19%;
  transition: 0.2s ease all;
}
html body .pageBlock:not(.current-page):focus, html body .pageBlock:not(.current-page):hover {
  border: none;
  color: #1e72b8;
}
html body .pageBlock:not(.current-page):focus::before, html body .pageBlock:not(.current-page):hover::before {
  background-color: rgb(226, 226, 226);
}
html body .pageBlock:not(.current-page):active {
  color: white;
}
html body .pageBlock:not(.current-page):active::before {
  background-color: #90b1d5;
}

html body .current-page {
  color: white;
  cursor: default;
}
html body .current-page::before {
  background-color: #1e72b8;
}

html body .pageBlockEmpty {
  cursor: default;
}

@media (max-width: 470px) {
  html body .pageBlock::before {
    transform: translate(50%, 8%);
  }
}
.conferences-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem 0;
  min-width: 350px;
}/*# sourceMappingURL=build.css.map */