/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: IBM Plex Sans;
  font-weight: 400;
  src: url("../fonts/IBMPlexSans-Regular.eot");
  src: url("../fonts/IBMPlexSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans-Regular.ttf") format("truetype"), url("../fonts/IBMPlexSans-Regular.woff") format("woff"), url("../fonts/IBMPlexSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: IBM Plex Sans;
  font-weight: 500;
  src: url("../fonts/IBMPlexSans-Medium.eot");
  src: url("../fonts/IBMPlexSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans-Medium.ttf") format("truetype"), url("../fonts/IBMPlexSans-Medium.woff") format("woff"), url("../fonts/IBMPlexSans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: IBM Plex Sans;
  font-weight: 700;
  src: url("../fonts/IBMPlexSans-Bold.eot");
  src: url("../fonts/IBMPlexSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans-Bold.ttf") format("truetype"), url("../fonts/IBMPlexSans-Bold.woff") format("woff"), url("../fonts/IBMPlexSans-Bold.woff2") format("woff2");
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 999;
  transition: opacity 0.1s ease;
  overflow-y: auto;
}
.modal.show {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 20, 0.5);
}

.menu-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 20;
  padding: 15px 30px 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: #f6f7fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-wrapper.show {
  right: 0;
}
@media only screen and (max-width: 666px) {
  .menu-wrapper {
    padding: 10px 15px 30px;
    overflow-y: auto;
  }
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #dae3ef;
  margin-bottom: 20px;
}
@media only screen and (max-width: 666px) {
  .menu-top {
    padding-bottom: 9px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 666px) {
  .menu-top-logo {
    width: 84px;
  }
  .menu-top-logo img {
    width: 100%;
  }
}

.menu-top-close {
  cursor: pointer;
}

.menu-tablet {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 666px) {
  .menu-tablet {
    display: none;
  }
}

.menu-tablet-col {
  width: 50%;
}

.menu-tablet-col-heading {
  margin-top: 30px;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
  display: block;
}

.menu-tablet-col-link {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
  display: block;
}

.menu-social {
  display: flex;
}
.menu-social a {
  display: block;
  margin-right: 30px;
}
@media only screen and (max-width: 666px) {
  .menu-social {
    margin-top: 40px;
  }
}

.menu-mobail {
  display: none;
}
.menu-mobail .footer-menu-mob-item {
  border-bottom: 1px solid #dae3ef;
}
.menu-mobail .footer-menu-mob-item-head span {
  color: #000;
}
.menu-mobail .footer-menu-mob-item-drop a {
  color: #000;
}
.menu-mobail .footer-menu-mob-item-head a {
  color: #000;
}
@media only screen and (max-width: 666px) {
  .menu-mobail {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 130px;
  height: 100px;
  z-index: 15;
}
.header.scroll {
  background: var(--blue, #014dab);
}
.header.scroll .header-inner {
  border-bottom: 1px solid transparent;
}
@media only screen and (max-width: 1500px) {
  .header {
    padding: 0 60px;
    height: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .header {
    padding: 0 20px;
    height: 60px;
  }
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(237, 242, 249, 0.6);
  position: relative;
}

.header-logo {
  display: block;
  width: 147px;
}
@media only screen and (max-width: 1500px) {
  .header-logo {
    width: 105px;
  }
}
@media only screen and (max-width: 666px) {
  .header-logo {
    width: 84px;
  }
}
.header-logo img {
  width: 100%;
}

.header-burger {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-burger {
    display: block;
  }
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-right-menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-right-menu:hover li:not(:hover) .header-right-menu-has-title {
  opacity: 0.5;
}
.header-right-menu:hover li:not(:hover) svg {
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) {
  .header-right-menu {
    display: none;
  }
}

.header-right-menu-item {
  color: #f4f2ee;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin: 0 20px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.header-right-menu-item:hover {
  border-bottom: 2px solid #fff;
}
@media only screen and (max-width: 1500px) {
  .header-right-menu-item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-right-menu-item {
    font-size: 16px;
    margin: 0 20px;
  }
}

.header-right-menu-has {
  height: 100%;
  position: relative;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
}
.header-right-menu-has .header-right-menu-has-title {
  border-bottom: 2px solid transparent;
  margin-right: 3px;
  padding-bottom: 3px;
  opacity: 0.5;
}
.header-right-menu-has a {
  color: #fff;
}
.header-right-menu-has svg {
  transition: all 0.3s ease;
  margin-left: 6px;
  flex-shrink: 0;
  opacity: 0.5;
}
.header-right-menu-has:hover {
  background: #1d70d8;
}
.header-right-menu-has:hover svg {
  transform: rotate(180deg) translateY(3px);
  opacity: 1;
}
.header-right-menu-has:hover .header-right-menu-has-title {
  opacity: 1;
}
.header-right-menu-has:hover .header-right-menu-drop {
  display: block;
}
.header-right-menu-has.active svg {
  opacity: 1;
}
.header-right-menu-has.active .header-right-menu-has-title {
  opacity: 1;
}
@media only screen and (max-width: 1500px) {
  .header-right-menu-has {
    font-size: 16px;
    padding: 0 15px;
  }
}

.header-right-menu-drop {
  width: 250px;
  position: absolute;
  left: 0;
  top: 99px;
  display: none;
  padding: 20px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .header-right-menu-drop {
    top: 79px;
  }
}

.header-right-menu-drop-category {
  margin-bottom: 12px;
}
.header-right-menu-drop-category:last-child {
  border: none;
  margin-bottom: 0;
}

.header-right-menu-drop-category-name {
  color: #cdcdcd;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.header-right-menu-drop-item {
  display: block;
}

.header-right-menu-drop-item-name {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header-right-menu-drop-item-name:hover {
  color: #1d70d8;
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.header-right-menu-drop-item-bottom {
  display: flex;
  align-items: center;
}
.header-right-menu-drop-item-bottom p {
  color: #ff4438;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border: none;
}

.header-right-menu-drop-item-bottom-circle {
  width: 5px;
  height: 5px;
  background: #ff4438;
  border-radius: 50%;
  margin: 0 5px;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-icon {
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .header-search-icon svg {
    width: 24px;
    height: 24px;
  }
}

.header-mob-menu-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-mob-menu-btn {
    display: block;
    cursor: pointer;
    color: #f4f2ee;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-left: 40px;
  }
}

.header-search-inner {
  position: absolute;
  top: -13px;
  right: 0;
  width: 0px;
  height: 50px;
  background: #e9e9e0;
  padding: 13px 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .header-search-inner {
    right: -73px;
  }
}
@media only screen and (max-width: 666px) {
  .header-search-inner {
    top: -7px;
    height: 40px;
  }
}

.footer {
  width: 100%;
  padding: 60px 130px 25px;
  background: #014dab;
}
@media only screen and (max-width: 1500px) {
  .footer {
    padding: 40px 60px 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .footer {
    padding: 30px 15px;
  }
}

.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid #1665c7;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1500px) {
  .footer-top {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-top {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-top {
    margin-bottom: 0;
  }
}

.footer-top-logo {
  width: 147px;
}
@media only screen and (max-width: 1500px) {
  .footer-top-logo {
    width: 105px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-top-logo {
    width: 84px;
  }
}
.footer-top-logo img {
  width: 100%;
}

.footer-top-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.footer-top-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.footer-top-social a:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 666px) {
  .footer-top-social {
    gap: 15px;
  }
}

.footer-menu-desk {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 35px;
  border-bottom: 1px solid #1665c7;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .footer-menu-desk {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-menu-desk {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 666px) {
  .footer-menu-desk {
    display: none;
  }
}

.footer-menu-desk-col {
  width: 22%;
}
@media only screen and (max-width: 1024px) {
  .footer-menu-desk-col {
    width: 50%;
  }
}

.footer-menu-desk-col-heading {
  display: block;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .footer-menu-desk-col-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-menu-desk-col-heading {
    margin-top: 30px;
  }
}

.footer-menu-desk-col-link {
  display: block;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.footer-menu-desk-col-link:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1500px) {
  .footer-menu-desk-col-link {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.footer-contacts {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .footer-contacts {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-contacts {
    flex-wrap: wrap;
  }
}

.footer-contacts-col {
  width: 18%;
}
@media only screen and (max-width: 1024px) {
  .footer-contacts-col {
    width: 50%;
  }
}
@media only screen and (max-width: 666px) {
  .footer-contacts-col {
    width: 47%;
  }
}

.footer-contacts-col-heading {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  opacity: 0.5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1500px) {
  .footer-contacts-col-heading {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-contacts-col-heading {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-contacts-col-heading {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

.footer-contacts-col-tel {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140.556%;
  display: block;
}
@media only screen and (max-width: 1500px) {
  .footer-contacts-col-tel {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-contacts-col-tel {
    font-size: 14px;
  }
}

.footer-contacts-col-text {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140.556%;
}
@media only screen and (max-width: 1500px) {
  .footer-contacts-col-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-contacts-col-text {
    font-size: 14px;
  }
}

.footer-prelast {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 44px;
  margin-bottom: 25px;
  border-radius: 13.36px;
  background: #a5c1dc;
}
@media only screen and (max-width: 1500px) {
  .footer-prelast {
    padding: 40px 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-prelast {
    padding: 33px 21px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-prelast {
    padding: 20px 14px 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.footer-prelast-left {
  width: 40%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 666px) {
  .footer-prelast-left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer-prelast-left-logo1 {
  margin-right: 120px;
}
@media only screen and (max-width: 1500px) {
  .footer-prelast-left-logo1 {
    width: 167px;
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-prelast-left-logo1 {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-prelast-left-logo1 {
    width: 133px;
    margin-right: 50px;
  }
}
.footer-prelast-left-logo1 img {
  width: 100%;
}

@media only screen and (max-width: 1500px) {
  .footer-prelast-left-logo2 {
    width: 68px;
  }
  .footer-prelast-left-logo2 img {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .footer-prelast-left-logo2 {
    width: 60px;
  }
}

.footer-prelast-right {
  width: 56.602641%; /* 943/1666 */
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .footer-prelast-right {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-prelast-right {
    width: 50%;
  }
}
@media only screen and (max-width: 666px) {
  .footer-prelast-right {
    width: 100%;
  }
}

.footer-down {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-down-left {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .footer-down-left {
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-down-left {
    font-size: 12px;
  }
}

.footer-down-right {
  color: #fff;
  text-align: right;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
}
.footer-down-right span {
  display: block;
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .footer-down-right {
    font-size: 14px;
  }
  .footer-down-right img {
    width: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-down-right {
    font-size: 12px;
    margin-right: 10px;
  }
  .footer-down-right img {
    width: 20px;
  }
}

.footer-menu-mob {
  display: none;
}
@media only screen and (max-width: 666px) {
  .footer-menu-mob {
    display: block;
  }
}

.footer-menu-mob-item {
  padding: 15px 0;
  border-bottom: 1px solid #1665c7;
}

.footer-menu-mob-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-menu-mob-item-head span {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer-menu-mob-item-head a {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer-menu-mob-item-head img {
  transition: all 0.3s ease-in-out;
}
.footer-menu-mob-item-head.in img {
  transform: rotate(180deg);
}

.footer-menu-mob-item-drop {
  padding-top: 15px;
  display: none;
}
.footer-menu-mob-item-drop a {
  width: 90%;
  display: block;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 13px;
}

.home-page {
  width: 100%;
}

.home-hero {
  width: 100%;
}

.home-hero-slider-wrapper {
  width: 100%;
  height: 100vh;
}

.home-hero-slider-arrows {
  width: 160px;
  position: absolute;
  right: 120px;
  bottom: 76px;
  z-index: 3;
}
.home-hero-slider-arrows .slick-prev {
  width: 70px;
  height: 70px;
  left: 0;
}
.home-hero-slider-arrows .slick-prev:before {
  display: none;
}
.home-hero-slider-arrows .slick-next {
  width: 70px;
  height: 70px;
  right: 0;
}
.home-hero-slider-arrows .slick-next:before {
  display: none;
}
@media only screen and (max-width: 1500px) {
  .home-hero-slider-arrows {
    width: 115px;
    right: 60px;
    bottom: 60px;
  }
  .home-hero-slider-arrows .slick-prev {
    width: 50px;
    height: 50px;
  }
  .home-hero-slider-arrows .slick-prev img {
    width: 100%;
  }
  .home-hero-slider-arrows .slick-next {
    width: 50px;
    height: 50px;
  }
  .home-hero-slider-arrows .slick-next img {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-hero-slider-arrows {
    right: auto;
    left: 30px;
    bottom: 90px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slider-arrows {
    width: 95px;
    bottom: 60px;
    left: 15px;
  }
  .home-hero-slider-arrows .slick-prev {
    width: 40px;
    height: 40px;
  }
  .home-hero-slider-arrows .slick-next {
    width: 40px;
    height: 40px;
  }
}

.home-hero-slider-item {
  width: 100%;
  position: relative;
}

.home-hero-slider-item-overlay {
  position: absolute;
  top: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e3097;
  opacity: 0.5;
  z-index: 2;
}

.home-hero-slider-item-image {
  position: absolute;
  top: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-hero-slider-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero-slider-item-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
  width: 100%;
  padding: 120px 19% 120px 130px;
}
@media only screen and (max-width: 1500px) {
  .home-hero-slider-item-content {
    padding: 60px 25% 60px 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-hero-slider-item-content {
    padding: 180px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slider-item-content {
    padding: 18vh 15px;
  }
}

.home-hero-slider-item-title {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 35px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .home-hero-slider-item-title {
    font-size: 45px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slider-item-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

.home-hero-slider-item-description {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 52.5px */
}
@media only screen and (max-width: 1500px) {
  .home-hero-slider-item-description {
    font-size: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero-slider-item-description {
    font-size: 20px;
  }
}

.home-news {
  width: 100%;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-news {
    margin: 100px 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-news {
    margin: 100px 0;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news {
    margin: 55px 0;
    padding: 0 15px;
  }
}

.home-news-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .home-news-top {
    margin-bottom: 30px;
  }
}

.home-news-top-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .home-news-top-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news-top-title {
    font-size: 16px;
  }
}

.home-news-top-link {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--blue, #014dab);
}
.home-news-top-link:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 1500px) {
  .home-news-top-link {
    font-size: 14px;
    padding: 11px 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news-top-link {
    padding: 8px 12px;
  }
}

.home-news-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1500px) {
  .home-news-container {
    gap: 20px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-news-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .home-news-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 50px;
  }
}

.home-news-item {
  background: #fff;
  border-radius: 15px;
  display: block;
}
.home-news-item:hover .home-news-item-name {
  color: #1d70d8;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1024px) {
  .home-news-item:last-child {
    display: none;
  }
}

.home-news-item-image {
  position: relative;
  width: 100%;
  height: 334px;
  background-color: #EAEBEF;
  border-radius: 15px 15px 0 0;
}
@media only screen and (max-width: 1500px) {
  .home-news-item-image {
    height: 250px;
  }
}
.home-news-item-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-news-item-down {
  width: 100%;
  padding: 33px 30px 60px 30px;
}
@media only screen and (max-width: 1500px) {
  .home-news-item-down {
    padding: 22px 20px 48px;
  }
}

.home-news-item-label {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 27px 8px 28px;
  border-radius: 0px 20px 0px 0px;
  min-width: 255px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: IBM Plex Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 1500px) {
  .home-news-item-label {
    padding: 10px 27px;
    font-size: 20px;
    min-width: 220px;
  }
}
.home-news-item-label.red {
  background: rgba(227, 59, 59, 0.7);
}
.home-news-item-label.blue {
  background: #0154a8;
}
.home-news-item-label.green {
  background: #129294;
}

.home-news-item-tag {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--soft-blue, #e5ebf3);
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .home-news-item-tag {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.home-news-item-name {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .home-news-item-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news-item-name {
    font-size: 18px;
  }
}

.home-news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 666px) {
  .home-news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.home-news-list-item {
  display: block;
}
.home-news-list-item:hover .home-news-list-item-name {
  color: #1d70d8;
  text-decoration-line: underline;
}

.home-news-list-item-tag {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--soft-blue, #e5ebf3);
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .home-news-list-item-tag {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.home-news-list-item-name {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .home-news-list-item-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-news-list-item-name {
    font-size: 18px;
  }
}

.home-youtube {
  width: 100%;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-youtube {
    margin: 100px 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-youtube {
    margin: 100px 0;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-youtube {
    margin: 50px 0;
    padding: 0;
  }
}

.home-youtube-wrapper {
  width: 100%;
}

.home-youtube-inner {
  position: relative;
  padding-bottom: 56.15%;
  height: 0;
  overflow: hidden;
}
.home-youtube-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-about {
  width: 100%;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-about {
    margin: 100px 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-about {
    margin: 100px 0;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about {
    margin: 50px 0;
    padding: 0 15px;
  }
}

.home-about-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 130px;
}
@media only screen and (max-width: 1500px) {
  .home-about-top {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-top {
    margin-bottom: 70px;
  }
}

.home-about-top-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .home-about-top-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-top-title {
    font-size: 16px;
  }
}

.home-about-top-link {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--blue, #014dab);
}
.home-about-top-link:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 1500px) {
  .home-about-top-link {
    font-size: 14px;
    padding: 11px 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-top-link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.home-about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .home-about-content {
    flex-direction: column;
  }
}

.home-about-content-left {
  text-align: center;
  width: 30%;
}
@media only screen and (max-width: 1500px) {
  .home-about-content-left img {
    width: 191px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-about-content-left {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-content-left {
    margin-bottom: 50px;
  }
  .home-about-content-left img {
    width: 147px;
  }
}

.home-about-content-right {
  width: 63.253012%; /* 1050/1660 */
}
@media only screen and (max-width: 1500px) {
  .home-about-content-right {
    width: 65%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-about-content-right {
    width: 100%;
  }
}

.home-about-content-right-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .home-about-content-right-title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-content-right-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.home-about-content-right-description {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
@media only screen and (max-width: 1500px) {
  .home-about-content-right-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-content-right-description {
    font-size: 14px;
  }
}

.home-statistic {
  width: 100%;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic {
    margin: 100px 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-statistic {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic {
    margin: 50px 0;
    padding: 0;
  }
}

.home-statistic-inner {
  border-radius: 30px;
  background: radial-gradient(129.81% 196.69% at 23.8% -75.37%, #22d081 0%, #004eaa 100%), var(--blue, #014dab);
  padding: 110px 100px 130px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-inner {
    padding: 80px 80px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-statistic-inner {
    padding: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-inner {
    padding: 30px 15px;
    border-radius: 0;
  }
}

.home-statistic-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-top {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-statistic-top {
    margin-bottom: 50px;
  }
}

.home-statistic-top-title {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 11px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-top-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-top-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.home-statistic-top-desc {
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 666px) {
  .home-statistic-top-desc {
    font-size: 14px;
  }
}

.home-statistic-top-link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  align-items: center;
  border-radius: 50px;
  background: #fff;
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-top-link {
    font-size: 14px;
    padding: 11px 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-top-link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.home-statistic-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-statistic-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.home-statistic-item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-item {
    padding-bottom: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-item {
    border-bottom: 1px solid #fff;
  }
}

.home-statistic-item-num {
  color: #fff;
  font-feature-settings: "liga" off;
  font-family: IBM Plex Sans;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-item-num {
    font-size: 45px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-item-num {
    width: 72px;
    font-size: 25px;
    margin-right: 30px;
  }
}

.home-statistic-item-name {
  color: #fff;
  font-feature-settings: "liga" off;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .home-statistic-item-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-statistic-item-name {
    font-size: 14px;
  }
}

.home-inform {
  width: 100%;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-inform {
    margin: 100px 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-inform {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-inform {
    margin: 50px 0;
    padding: 0 15px;
  }
}

.home-inform-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .home-inform-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-inform-title {
    font-size: 16px;
  }
}

.home-inform-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media only screen and (max-width: 1500px) {
  .home-inform-container {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-inform-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .home-inform-container {
    gap: 10px;
  }
}

.home-inform-item {
  padding: 35px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-radius: 15px;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .home-inform-item {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-inform-item {
    padding: 20px 15px;
    gap: 0;
  }
}

.home-inform-item-name {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .home-inform-item-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-inform-item-name {
    font-size: 16px;
    width: 85%;
  }
}

@media only screen and (max-width: 1500px) {
  .home-inform-item-arrow {
    width: 70px;
  }
  .home-inform-item-arrow img {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .home-inform-item-arrow {
    width: 34px;
  }
}

.home-video-wrapper {
  width: 100%;
  height: 796px;
  margin: 130px 0;
  padding: 0 130px;
}
@media only screen and (max-width: 1500px) {
  .home-video-wrapper {
    margin: 100px 0;
    padding: 0 60px;
    height: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-video-wrapper {
    margin: 100px 0;
    padding: 0 30px;
    height: 340px;
  }
}
@media only screen and (max-width: 666px) {
  .home-video-wrapper {
    margin: 50px 0;
    padding: 0;
    height: 190px;
  }
}
.home-video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-video-wrapper .video-file-wrapper {
  height: 100%;
}

.search-bar-fluid {
  width: 100%;
  height: 110px;
  background: #fff;
  padding: 0 130px;
  position: fixed;
  transition: all 0.3s ease-in-out;
  top: -110px;
  left: 0;
  z-index: 20;
}
.search-bar-fluid.show {
  top: 0;
}
@media only screen and (max-width: 1500px) {
  .search-bar-fluid {
    top: -80px;
    padding: 0 60px;
    height: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-bar-fluid {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .search-bar-fluid {
    height: auto;
    padding: 20px 15px;
    top: -100%;
  }
}

.search-bar-center {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 666px) {
  .search-bar-center {
    flex-direction: column;
    align-items: flex-start;
  }
}

.search-bar-left {
  width: 70%;
}
.search-bar-left input {
  border: none;
  width: 100%;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search-bar-left input::-moz-placeholder {
  color: #707b88;
}
.search-bar-left input::placeholder {
  color: #707b88;
}
.search-bar-left input:focus::-moz-placeholder {
  opacity: 0;
}
.search-bar-left input:focus::placeholder {
  opacity: 0;
}
@media only screen and (max-width: 1500px) {
  .search-bar-left input {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-bar-left input {
    font-size: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .search-bar-left {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
  }
  .search-bar-left input {
    width: 90%;
    font-size: 18px;
  }
}

.search-bar-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 666px) {
  .search-bar-right {
    width: 100%;
  }
}

.search-bar-right-btn {
  cursor: pointer;
  padding: 15px 60px;
  border-radius: 50px;
  background: #707b88;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
.search-bar-right-btn span {
  display: block;
  margin-right: 20px;
}
.search-bar-right-btn:hover {
  background: #014dab;
}
@media only screen and (max-width: 1500px) {
  .search-bar-right-btn {
    padding: 11px 50px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-bar-right-btn {
    margin-right: 20px;
  }
  .search-bar-right-btn span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .search-bar-right-btn {
    width: 100%;
  }
}

.search-bar-right-close {
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .search-bar-right-close {
    width: 24px;
  }
  .search-bar-right-close svg {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .search-bar-right-close {
    position: absolute;
    right: -3px;
    top: 0px;
    z-index: 20;
  }
  .search-bar-right-close svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
  }
}

.search-result-page {
  width: 100%;
}
.search-result-page .header {
  background: radial-gradient(214% 244.49% at 165.7% -32.24%, #22d081 0%, #004eaa 100%), #d9d9d9;
}
.search-result-page .header-inner {
  border: none;
}
.search-result-page .about-breadcrumbs-item {
  color: rgba(0, 0, 0, 0.6);
}
.search-result-page .about-breadcrumbs-item.last {
  color: rgba(0, 0, 0, 0.6);
}
.search-result-page .about-breadcrumbs-item.last::before {
  background: #000;
}

.search-result-first-fluid {
  padding: 170px 130px 60px 130px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .search-result-first-fluid {
    padding: 130px 60px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-result-first-fluid {
    padding: 125px 30px 50px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-first-fluid {
    padding: 80px 15px 20px;
  }
}

.search-result-first-field {
  max-width: 1098px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1500px) {
  .search-result-first-field {
    max-width: 824px;
    margin-top: 54px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-result-first-field {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-first-field {
    margin-top: 30px;
  }
}

.search-result-first-field-input {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid #000;
  margin-bottom: 30px;
}
.search-result-first-field-input input {
  border: none;
  width: 75%;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search-result-first-field-input input::-moz-placeholder {
  opacity: 0.5;
}
.search-result-first-field-input input::placeholder {
  opacity: 0.5;
}
.search-result-first-field-input input:focus::-moz-placeholder {
  opacity: 0;
}
.search-result-first-field-input input:focus::placeholder {
  opacity: 0;
}
@media only screen and (max-width: 1500px) {
  .search-result-first-field-input {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .search-result-first-field-input input {
    font-size: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-first-field-input {
    flex-direction: column;
    align-items: flex-start;
    border: none;
    margin-bottom: 10px;
  }
  .search-result-first-field-input input {
    width: 100%;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
  }
}

.search-result-first-field-input-btn {
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 20px;
}
.search-result-first-field-input-btn:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 1500px) {
  .search-result-first-field-input-btn {
    font-size: 14px;
    padding: 11px 50px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-first-field-input-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.search-result-first-field-text {
  color: #707b88;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .search-result-first-field-text {
    font-size: 16px;
  }
}

.search-result-content-fluid {
  background: #f6f7fa;
  padding: 60px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .search-result-content-fluid {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-result-content-fluid {
    padding: 50px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-content-fluid {
    padding: 20px 0px 50px;
  }
}

.search-result-content-centered {
  max-width: 1098px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 1500px) {
  .search-result-content-centered {
    max-width: 824px;
    padding: 0 30px;
  }
}

.search-result-content-item {
  padding: 40px 0;
  display: block;
}
.search-result-content-item:hover .search-result-content-item-title {
  color: #1d70d8;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1500px) {
  .search-result-content-item {
    padding: 30px 0;
  }
}

.search-result-content-item-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .search-result-content-item-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-content-item-title {
    font-size: 16px;
  }
}

.search-result-content-item-description {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
@media only screen and (max-width: 1500px) {
  .search-result-content-item-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-content-item-description {
    font-size: 14px;
  }
}

.search-result-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  .search-result-pagination {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-pagination {
    margin-bottom: 52px;
  }
}

.search-result-pagination-prev {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  stroke: rgba(145, 158, 171, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.search-result-pagination-prev:hover {
  border: 1px solid var(--blue, #014dab);
  background: rgba(1, 77, 171, 0.08);
}
@media only screen and (max-width: 1500px) {
  .search-result-pagination-prev {
    width: 40px;
    height: 40px;
  }
  .search-result-pagination-prev img {
    width: 7px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-pagination-prev {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
  .search-result-pagination-prev img {
    width: 5px;
  }
}

.search-result-pagination-numbers {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 666px) {
  .search-result-pagination-numbers {
    gap: 8px;
  }
}

.search-result-pagination-num {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.search-result-pagination-num:hover {
  border: 1px solid var(--blue, #014dab);
  background: rgba(1, 77, 171, 0.08);
  color: #014dab;
}
.search-result-pagination-num.active {
  border: 1px solid var(--blue, #014dab);
  background: rgba(1, 77, 171, 0.08);
  color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .search-result-pagination-num {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-pagination-num {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.search-result-pagination-dots {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
@media only screen and (max-width: 1500px) {
  .search-result-pagination-dots {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-pagination-dots {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.search-result-pagination-next {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  stroke: rgba(145, 158, 171, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.search-result-pagination-next:hover {
  border: 1px solid var(--blue, #014dab);
  background: rgba(1, 77, 171, 0.08);
}
@media only screen and (max-width: 1500px) {
  .search-result-pagination-next {
    width: 40px;
    height: 40px;
  }
  .search-result-pagination-next img {
    width: 7px;
  }
}
@media only screen and (max-width: 666px) {
  .search-result-pagination-next {
    width: 35px;
    height: 35px;
  }
  .search-result-pagination-next img {
    width: 5px;
  }
}

.monitoring-page {
  width: 100%;
}

.monitoring-wrapper {
  width: 100%;
  padding: 100px 130px 130px;
  background: #f6f7fa;
}
@media only screen and (max-width: 1500px) {
  .monitoring-wrapper {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .monitoring-wrapper {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-wrapper {
    padding: 50px 0;
  }
}

.monitoring-statistic {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic {
    padding: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .monitoring-statistic {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic {
    padding: 30px 15px;
  }
}

.monitoring-statistic-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic-title {
    font-size: 20px;
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.monitoring-statistic-date {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-bottom: 60px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic-date {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-date {
    font-size: 14px;
  }
}

.monitoring-statistic-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic-container {
    gap: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.monitoring-statistic-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5ebf3;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-item {
    padding-bottom: 16px;
    border-bottom: 1px solid #000;
  }
}

.monitoring-statistic-item-num {
  color: var(--blue, #014dab);
  font-feature-settings: "liga" off;
  font-family: IBM Plex Sans;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 30px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic-item-num {
    font-size: 45px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-item-num {
    font-size: 25px;
    margin-right: 35px;
  }
}

.monitoring-statistic-item-name {
  color: #000;
  font-feature-settings: "liga" off;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 130% */
}
@media only screen and (max-width: 1500px) {
  .monitoring-statistic-item-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-statistic-item-name {
    font-size: 14px;
  }
}

.monitoring-data {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .monitoring-data {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .monitoring-data {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-data {
    padding: 30px 15px;
  }
}

.monitoring-data-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-data-title {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-data-title {
    font-size: 16px;
  }
}

.monitoring-data-content {
  width: 100%;
}

.monitoring-data-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #edf2f9;
}
.monitoring-data-item:last-child {
  border: none;
}
.monitoring-data-item:hover .monitoring-data-item-right-title {
  color: #1d70d8;
  text-decoration-line: underline;
}
@media only screen and (max-width: 1500px) {
  .monitoring-data-item {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .monitoring-data-item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-data-item {
    padding: 20px 0;
  }
}

.monitoring-data-item-left {
  width: 12%;
}
@media only screen and (max-width: 1024px) {
  .monitoring-data-item-left {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}

.monitoring-data-item-left-date {
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: #e5ebf3;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .monitoring-data-item-left-date {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.monitoring-data-item-left-time {
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.monitoring-data-item-right {
  width: 85%; /* 1339/1500 */
}
@media only screen and (max-width: 1024px) {
  .monitoring-data-item-right {
    width: 100%;
  }
}

.monitoring-data-item-right-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .monitoring-data-item-right-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-data-item-right-title {
    font-size: 16px;
  }
}

.monitoring-data-item-right-text {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
@media only screen and (max-width: 1500px) {
  .monitoring-data-item-right-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .monitoring-data-item-right-text {
    font-size: 14px;
  }
}

.contacts-page {
  width: 100%;
}

.contacts-wrapper {
  width: 100%;
  padding: 80px 130px 130px;
  background: #f6f7fa;
}
@media only screen and (max-width: 1500px) {
  .contacts-wrapper {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .contacts-wrapper {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-wrapper {
    padding: 0 0 50px 0;
  }
}

.contacts-citizen {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen {
    padding: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .contacts-citizen {
    padding: 50px 30px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen {
    padding: 30px 15px;
  }
}

.contacts-citizen-left {
  width: 57.2%; /* 858/1500 */
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-left {
    width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .contacts-citizen-left {
    width: 100%;
  }
}

.contacts-citizen-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-title {
    font-size: 16px;
  }
}

.contacts-citizen-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contacts-citizen-input {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.contacts-citizen-input input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
  padding: 20px 25px;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.contacts-citizen-input input::-moz-placeholder {
  color: #707b88;
}
.contacts-citizen-input input::placeholder {
  color: #707b88;
}
.contacts-citizen-input input:focus {
  border: 1px solid #1d70d8;
}
.contacts-citizen-input input:focus::-moz-placeholder {
  opacity: 0;
}
.contacts-citizen-input input:focus::placeholder {
  opacity: 0;
}
.contacts-citizen-input.half {
  width: 48%;
}
.contacts-citizen-input.error input {
  border: 1px solid #b90c2f;
}
.contacts-citizen-input.error .error-text {
  display: block;
}
.contacts-citizen-input.error .error-icon {
  display: block;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-input input {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-input {
    margin-bottom: 23px;
  }
  .contacts-citizen-input input {
    padding: 15px;
    font-size: 14px;
  }
}

.error-text {
  color: #b90c2f;
  font-family: IBM Plex Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  position: absolute;
  bottom: -19px;
  left: 0;
  display: none;
}

.error-icon {
  position: absolute;
  top: 27px;
  right: 20px;
  display: none;
}
@media only screen and (max-width: 1500px) {
  .error-icon {
    top: 21px;
  }
}

.contacts-citizen-textarea {
  width: 100%;
  margin-bottom: 25px;
}
.contacts-citizen-textarea textarea {
  max-width: 100%;
  width: 100%;
  height: 100px;
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
  padding: 20px 25px;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
}
.contacts-citizen-textarea textarea::-moz-placeholder {
  color: #707b88;
}
.contacts-citizen-textarea textarea::placeholder {
  color: #707b88;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-textarea textarea {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-textarea textarea {
    padding: 15px;
    font-size: 14px;
  }
}

.form-group {
  display: block;
  margin-bottom: 25px;
  padding-left: 30px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-group label a {
  color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .form-group label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .form-group label {
    font-size: 14px;
  }
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.form-group input:checked + label::before {
  background: #014dab;
  border: 2px solid #014dab;
}

.form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  left: -24px;
  top: 7px;
}

.contacts-citizen-submit {
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.contacts-citizen-submit:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-submit {
    padding: 11px 50px;
    font-size: 14px;
    gap: 15px;
  }
  .contacts-citizen-submit svg {
    width: 12px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-submit {
    width: 100%;
  }
}

.contacts-citizen-right {
  width: 32%; /* 477/1500 */
  padding-top: 66px;
}
@media only screen and (max-width: 1024px) {
  .contacts-citizen-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 65px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    padding-top: 40px;
  }
}

.contacts-citizen-right-item {
  margin-bottom: 30px;
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-right-item {
    margin-bottom: 20px;
  }
}

.contacts-citizen-right-heading {
  color: #707b88;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-right-heading {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-right-heading {
    font-size: 14px;
  }
}

.contacts-citizen-right-text {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 100% */
}
.contacts-citizen-right-text a {
  color: #000;
  display: block;
}
@media only screen and (max-width: 1500px) {
  .contacts-citizen-right-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-right-text {
    font-size: 14px;
    line-height: 26px;
  }
}

.contacts-info {
  width: 100%;
  padding: 60px 50px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .contacts-info {
    padding: 50px 30px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-info {
    padding: 30px 15px;
  }
}

.contacts-info-left {
  width: 57.2%; /* 1023/1460 */
}
@media only screen and (max-width: 1024px) {
  .contacts-info-left {
    width: 100%;
    margin-bottom: 40px;
  }
}

.contacts-info-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 666px) {
  .contacts-info-title {
    font-size: 16px;
  }
}

.contacts-info-description {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-bottom: 30px;
}
@media only screen and (max-width: 666px) {
  .contacts-info-description {
    font-size: 14px;
  }
}

.contacts-info-btn {
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.contacts-info-btn:hover {
  background: #1d70d8;
}
@media only screen and (max-width: 666px) {
  .contacts-info-btn {
    width: 100%;
    padding: 11px;
    font-size: 14px;
  }
}

.contacts-info-right {
  width: 32%;
}
@media only screen and (max-width: 1024px) {
  .contacts-info-right {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .contacts-citizen-right-links {
    width: 100%;
    display: flex;
    gap: 100px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-citizen-right-links {
    flex-direction: column;
    gap: 15px;
  }
}

.contacts-map {
  width: 100%;
}
.contacts-map iframe {
  width: 100%;
  height: 650px;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .contacts-map iframe {
    height: 487px;
  }
}
@media only screen and (max-width: 666px) {
  .contacts-map iframe {
    border-radius: 0;
    height: 550px;
  }
}

.modal-journalist-content {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 1018px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  border-radius: 10px;
  background: #fff;
  padding: 60px 80px;
}
@media only screen and (max-width: 1500px) {
  .modal-journalist-content {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .modal-journalist-content {
    width: 95%;
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-content {
    padding: 30px 15px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    border-radius: 0;
    overflow-y: auto;
    height: 100vh;
  }
}

.modal-journalist-close {
  display: none;
}
@media only screen and (max-width: 666px) {
  .modal-journalist-close {
    display: block;
    text-align: right;
    margin-bottom: 30px;
  }
}

.modal-journalist-title {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .modal-journalist-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-title {
    font-size: 16px;
  }
}

.modal-journalist-input {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.modal-journalist-input input {
  width: 100%;
  padding: 20px 25px;
  color: #707b88;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
}
.modal-journalist-input.half {
  width: 48%;
}
@media only screen and (max-width: 666px) {
  .modal-journalist-input.half {
    width: 100%;
  }
}
.modal-journalist-input.error input {
  border: 1px solid #b90c2f;
}
.modal-journalist-input.error .error-text {
  display: block;
}
@media only screen and (max-width: 1500px) {
  .modal-journalist-input input {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-input {
    margin-bottom: 18px;
  }
  .modal-journalist-input input {
    padding: 15px;
    font-size: 14px;
  }
}

.modal-journalist-textarea {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.modal-journalist-textarea textarea {
  max-width: 100%;
  width: 100%;
  padding: 20px 25px;
  color: #707b88;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
}
.modal-journalist-textarea.error input {
  border: 1px solid #b90c2f;
}
.modal-journalist-textarea.error .error-text {
  display: block;
}
@media only screen and (max-width: 1500px) {
  .modal-journalist-textarea textarea {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-textarea {
    margin-bottom: 18px;
  }
  .modal-journalist-textarea textarea {
    padding: 15px;
    font-size: 14px;
  }
}

.modal-journalist-heading {
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1024px) {
  .modal-journalist-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-heading {
    margin-bottom: 14px;
    margin-bottom: 18px;
  }
}

.modal-journalist-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.modal-journalist-submit {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  gap: 20px;
  border: none;
}
@media only screen and (max-width: 1500px) {
  .modal-journalist-submit {
    padding: 11px 50px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-journalist-submit {
    width: 100%;
    padding: 11px 30px;
    font-size: 14px;
  }
  .modal-journalist-submit svg {
    width: 13px;
  }
}

.modal-thanks-content {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 739px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  border-radius: 10px;
  background: #fff;
  padding: 80px 50px;
  text-align: center;
}
@media only screen and (max-width: 1500px) {
  .modal-thanks-content {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .modal-thanks-content {
    width: 95%;
    padding: 80px 50px 50px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-thanks-content {
    padding: 30px 15px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    border-radius: 0;
    overflow-y: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal-thanks-content .modal-journalist-close {
    position: absolute;
    top: 30px;
    right: 15px;
  }
}

.modal-thanks-icon {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .modal-thanks-icon svg {
    width: 80px;
    height: 80px;
  }
}

.modal-thanks-title {
  color: #000;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .modal-thanks-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-thanks-title {
    font-size: 16px;
  }
}

.modal-thanks-description {
  color: #000;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .modal-thanks-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-thanks-description {
    font-size: 14px;
  }
}

.modal-thanks-btn {
  cursor: pointer;
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  color: #fff;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media only screen and (max-width: 1500px) {
  .modal-thanks-btn {
    padding: 11px 50px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .modal-thanks-btn {
    width: 100%;
  }
}

.mission-page {
  width: 100%;
}

.mission-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.mission-main p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .mission-main p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-main p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-main p.desktop {
    display: none;
  }
}
.mission-main p.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mission-main p.tablet {
    display: block;
  }
}
.mission-main h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  width: 80%; /* 948/1660 */
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .mission-main h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-main h1 {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .mission-main h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1660px;
}

.about-title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  width: 80%; /* 948/1660 */
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  .about-title {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-title {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .about-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.about-subtitle {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .about-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .about-subtitle {
    font-size: 16px;
  }
}

.about-hero {
  width: 100%;
  padding: 170px 130px 40px;
  background: radial-gradient(214% 244.49% at 165.7% -32.24%, #22d081 0%, #004eaa 100%), #d9d9d9;
}
@media only screen and (max-width: 1500px) {
  .about-hero {
    padding: 120px 60px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .about-hero {
    padding: 120px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .about-hero {
    padding: 80px 15px 20px;
  }
}

.about-breadcrumbs {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .about-breadcrumbs {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .about-breadcrumbs {
    margin-bottom: 15px;
  }
}

.about-breadcrumbs-item {
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 7px;
}
@media only screen and (max-width: 666px) {
  .about-breadcrumbs-item {
    font-size: 12px;
  }
}
.about-breadcrumbs-item.last {
  position: relative;
  color: #fff;
  padding-left: 12px;
}
.about-breadcrumbs-item.last::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-25%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
}

.about-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -5px;
}
@media only screen and (max-width: 1500px) {
  .about-list {
    margin: -4px;
  }
}
.about-list-item {
  margin: 5px;
}
@media only screen and (max-width: 1500px) {
  .about-list-item {
    margin: 4px;
  }
}
.about-list-item-link {
  display: block;
  padding: 8px 15px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .about-list-item-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .about-list-item-link {
    padding: 6px 10px;
    font-size: 12px;
  }
}
.about-list-item-link:hover {
  color: #000;
  background: #fff;
}

.about-list-item-link.current {
  color: #000;
  background: #fff;
}

.section-content {
  width: 100%;
  padding: 0 130px;
  margin: 80px 0;
}
@media only screen and (max-width: 1500px) {
  .section-content {
    padding: 0 60px;
    margin: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .section-content {
    padding: 0 30px;
    margin: 60px 0;
  }
}
@media only screen and (max-width: 666px) {
  .section-content {
    margin: 0;
    padding: 0;
  }
}

.mission-item-content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 25px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .mission-item-content-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-list {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .mission-item-content-list-item {
    display: flex;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-list-item {
    padding: 15px 0;
  }
}
.mission-item-content-list-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .mission-item-content-list-item img {
    width: 72px;
    height: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-item-content-list-item img {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-list-item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}
.mission-item-content-list-item h3 {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .mission-item-content-list-item h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-list-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.mission-item-content-list-item .mission-item-content-list-text {
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 0;
}
@media only screen and (max-width: 1500px) {
  .mission-item-content-list-item .mission-item-content-list-text {
    font-size: 14px;
  }
}
.mission-video-wrapper {
  margin: 80px 0;
}
@media only screen and (max-width: 1500px) {
  .mission-video-wrapper {
    margin: 60px 0;
  }
}
@media only screen and (max-width: 666px) {
  .mission-video-wrapper {
    margin: 0px 0 50px;
  }
}

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 48%;
  background-color: #000000;
}

.video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0;
  width: 200px;
  height: 200px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .video-button {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 666px) {
  .video-button {
    width: 60px;
    height: 60px;
  }
}
.video-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.video-enabled {
  cursor: pointer;
}

.video-enabled .video-button {
  display: block;
}

.video-file-wrapper {
  position: relative;
  width: 100%;
  height: 652px;
}
@media only screen and (max-width: 1500px) {
  .video-file-wrapper {
    height: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  .video-file-wrapper {
    height: 340px;
  }
}
@media only screen and (max-width: 666px) {
  .video-file-wrapper {
    height: 190px;
  }
}
.video-file-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-file-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0;
  width: 200px;
  height: 200px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .video-file-button {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 666px) {
  .video-file-button {
    width: 60px;
    height: 60px;
  }
}
.video-file-button img {
  display: block;
  width: 100%;
  height: 100%;
}
.video-file-button.hidden {
  display: none;
}

.mission-item {
  padding: 0 100px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .mission-item {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-item {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item {
    padding: 0 15px;
  }
}
.mission-item h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .mission-item h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-item h2.desktop {
    display: none;
  }
}
.mission-item h2.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mission-item h2.tablet {
    display: block;
  }
}
.mission-item a {
  display: inline-block;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
  margin-bottom: 30px;
  font-style: inherit;
}
@media only screen and (max-width: 1500px) {
  .mission-item a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item a {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.mission-item-content {
  padding: 50px 0 30px;
}

.mission-item-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .mission-item-content-wrapper {
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-wrapper {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}

.mission-item-content-wrapper-reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .mission-item-content-wrapper-reverse {
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-wrapper-reverse {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}

.mission-item-content-group {
  width: 48.767123%; /* 712/1460 */
}
@media only screen and (max-width: 1500px) {
  .mission-item-content-group {
    width: 47%; /* 504/1062 */
  }
}
@media only screen and (max-width: 1024px) {
  .mission-item-content-group {
    width: 56.481481%; /* 366/648 */
  }
}
@media only screen and (max-width: 666px) {
  .mission-item-content-group {
    width: 100%;
  }
}

.mission-content-item-img {
  width: 34.246575%; /* 500/1460 */
}
@media only screen and (max-width: 1500px) {
  .mission-content-item-img {
    width: 44%;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-content-item-img {
    width: 35.493827%; /* 230/648 */
  }
}
@media only screen and (max-width: 666px) {
  .mission-content-item-img {
    width: 100%;
    height: 387px;
    margin-bottom: 20px;
  }
}
.mission-content-item-img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .mission-content-item-img img {
    width: 100%;
    height: 100%;
  }
}

.section-bottom {
  width: 100%;
  padding: 0px 130px 80px;
}
@media only screen and (max-width: 1500px) {
  .section-bottom {
    padding: 0px 60px 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-bottom {
    padding: 0px 30px 60px;
  }
}
@media only screen and (max-width: 666px) {
  .section-bottom {
    padding: 10px 15px;
  }
}

.mission-bottom-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  margin: 50px 0;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item {
    padding-bottom: 40px;
    margin: 40px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-bottom-item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item {
    padding: 0 15px;
  }
}
.mission-bottom-item:not(:last-child) {
  border-bottom: 1px solid #dde4ee;
}
.mission-bottom-item p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item p {
    font-size: 14px;
  }
}
.mission-bottom-item h3 {
  width: 27.710843%; /* 460/1660 */
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item h3 {
    width: 34.34992%; /* 428/1246 */
    font-size: 20px;
    line-height: 140%;
  }
}
@media only screen and (max-width: 1024px) {
  .mission-bottom-item h3 {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item h3 {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.mission-bottom-item ul {
  padding-left: 25px;
  list-style: disc;
}
.mission-bottom-item ul li {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item ul li {
    font-size: 14px;
  }
}
.mission-bottom-item ol {
  counter-reset: list;
}
.mission-bottom-item ol li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 12px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item ol li {
    font-size: 16px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item ol li {
    font-size: 14px;
  }
}
.mission-bottom-item ol li::before {
  counter-increment: list;
  content: "" counter(list) " ";
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--blue, #014dab);
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-item ol li::before {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .mission-bottom-item ol li::before {
    font-size: 14px;
  }
}

.mission-bottom-right {
  width: 70.481928%; /* 1170/1660 */
}
@media only screen and (max-width: 1500px) {
  .mission-bottom-right {
    width: 63.242376%; /* 788/1246 */
  }
}
@media only screen and (max-width: 1024px) {
  .mission-bottom-right {
    width: 100%;
  }
}
.direction-page {
  width: 100%;
}

.direction-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.direction-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .direction-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .direction-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .direction-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.direction-section-list-item {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item {
    padding: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-item {
    flex-direction: column;
    padding: 15px 15px 30px 15px;
  }
}
.direction-section-list-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.direction-section-list-img {
  width: 300px;
  height: 300px;
  background: #ebeef6;
  flex-shrink: 0;
  margin-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-img {
    width: 266px;
    height: 266px;
  }
}
@media only screen and (max-width: 1024px) {
  .direction-section-list-img {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-img {
    width: 100%;
    max-width: 400px;
    height: 290px;
    margin: 0 auto 30px;
  }
}
.direction-section-list-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .direction-section-list-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.direction-section-list-wrapper {
  width: 72.78481%; /* 1150/1580 */
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-wrapper {
    width: 69.139966%; /* 820/1186 */
  }
}
@media only screen and (max-width: 1024px) {
  .direction-section-list-wrapper {
    width: 61.419753%; /* 398/648 */
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-wrapper {
    width: 100%;
  }
}

.direction-section-list-item-name {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item-name {
    font-size: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-item-name {
    font-size: 18px;
  }
}

.direction-section-list-item-position {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #707b88;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item-position {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-item-position {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.direction-section-list-item-descr {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-top: 15px;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item-descr {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-item-descr {
    font-size: 14px;
    margin-top: 8px;
  }
}

.direction-section-list-item-phone {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 112%;
  color: #000;
  margin-top: 30px;
}
@media only screen and (max-width: 1500px) {
  .direction-section-list-item-phone {
    font-size: 20px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 666px) {
  .direction-section-list-item-phone {
    font-size: 16px;
    line-height: 175%;
    margin-top: 30px;
  }
}

.departments-page {
  width: 100%;
}

.departments-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.departments-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .departments-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .departments-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .departments-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .departments-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.departments-section-item {
  padding: 20px 80px 30px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .departments-section-item {
    padding: 35px 50px 20px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-item {
    padding: 35px 30px 20px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .departments-section-item {
    padding: 15px 15px;
    border-radius: 0px;
  }
}
.departments-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .departments-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.departments-section-list-item-title {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin: 40px 0 30px;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item-title {
    font-size: 28px;
    margin: 15px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-list-item-title {
    margin: 15px 0 20px;
  }
}
@media only screen and (max-width: 666px) {
  .departments-section-list-item-title {
    font-size: 18px;
    margin: 15px 0;
  }
}

.departments-section-list-item {
  display: flex;
  padding: 40px 0px;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item {
    padding: 15px 0px;
  }
}
@media only screen and (max-width: 666px) {
  .departments-section-list-item {
    flex-direction: column;
  }
}
.departments-section-list-item:not(:last-child) {
  border-bottom: 1px solid #edf2f9;
}
.departments-section-list-item p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item p {
    font-size: 16px;
  }
}
.departments-section-list-item p a {
  color: inherit;
}

p.departments-section-list-item-col1 {
  width: 40%; /* 590/1500 */
  padding-right: 50px;
  font-weight: 700;
}
@media only screen and (max-width: 1500px) {
  p.departments-section-list-item-col1 {
    width: 33%; /* 380/1146 */
  }
}
@media only screen and (max-width: 1024px) {
  p.departments-section-list-item-col1 {
    width: 48.45679%; /* 314/648 */
    padding-right: 30px;
  }
}
@media only screen and (max-width: 666px) {
  p.departments-section-list-item-col1 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }
}

.departments-section-list-item-wrapper {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item-wrapper {
    width: 67%;
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-list-item-wrapper {
    flex-direction: column;
    width: 43.67284%; /* 283/648 */
  }
}
@media only screen and (max-width: 666px) {
  .departments-section-list-item-wrapper {
    width: 100%;
  }
}

.departments-section-list-item-col2 {
  width: 40%; /* 259/900 */
  margin-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item-col2 {
    width: 40%; /* 235/768 */
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-list-item-col2 {
    width: 100%;
    margin-bottom: 10px;
  }
}

.departments-section-list-item-col3 {
  width: 35%; /* 403/900 */
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item-col3 {
    width: 35%; /* 350/768 */
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-list-item-col3 {
    width: 100%;
    margin-bottom: 10px;
  }
}

.departments-section-list-item-col4 {
  width: 180px; /* 188/900 */
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .departments-section-list-item-col4 {
    width: 130px; /* 118/768 */
  }
}
@media only screen and (max-width: 1024px) {
  .departments-section-list-item-col4 {
    width: 100%;
  }
}

.subdivisions-page {
  width: 100%;
}

.subdivisions-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.subdivisions-main .about-list-item-link.subdivisions {
  color: #000;
  background: #fff;
}

.subdivisions-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.subdivisions-section-item {
  padding: 15px 80px 30px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section-item {
    padding: 15px 50px 30px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section-item {
    padding: 20px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-section-item {
    padding: 0px 15px;
    border-radius: 0px;
  }
}
.subdivisions-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.subdivisions-section-list-item {
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section-list-item {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section-list-item {
    flex-direction: column;
    padding: 30px 0px;
  }
}
.subdivisions-section-list-item:not(:last-child) {
  border-bottom: 1px solid var(--soft-blue, #edf2f9);
}
.subdivisions-section-list-item:first-child {
  border-bottom: 2px solid #000;
}

.subdivisions-section-list-item-direction {
  width: 57.533333%; /* 863/1500 */
  padding-right: 30px;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section-list-item-direction {
    width: 42.757417%; /* 490/1146 */
  }
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section-list-item-direction {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-section-list-item-direction {
    margin-bottom: 15px;
  }
}

.subdivisions-name-main {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-name-main {
    font-size: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-name-main {
    font-size: 18px;
    text-transform: none;
  }
}

.subdivisions-name {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 666px) {
  .subdivisions-name {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.subdivisions-direction-position {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #707b88;
  margin-bottom: 10px;
}
@media only screen and (max-width: 666px) {
  .subdivisions-direction-position {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.subdivisions-direction-position.main {
  margin-bottom: 15px;
}

.subdivisions-direction-name {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #000;
}
@media only screen and (max-width: 666px) {
  .subdivisions-direction-name {
    font-size: 16px;
  }
}

.subdivisions-section-list-item-address {
  width: 30.933333%; /* 464/1500 */
  padding-right: 30px;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .subdivisions-section-list-item-address {
    width: 38.656195%; /* 443/1146 */
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section-list-item-address {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .subdivisions-section-list-item-address {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.subdivisions-section-list-item-address span {
  display: block;
}
.subdivisions-section-list-item-address a {
  color: inherit;
}
.subdivisions-section-list-item-address a:hover {
  color: #014dab;
}

.subdivisions-section-list-item-social {
  display: flex;
  justify-content: flex-end;
  width: 150px;
}
@media only screen and (max-width: 1024px) {
  .subdivisions-section-list-item-social {
    justify-content: flex-start;
    align-items: center;
  }
}
.subdivisions-social-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-facebook {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.subdivisions-social-facebook svg {
  width: 10px;
  height: 20px;
}
.subdivisions-social-facebook:hover {
  background-color: rgba(1, 77, 171, 0.1);
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-facebook:hover {
    background-color: transparent;
  }
}

.subdivisions-social-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-instagram {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.subdivisions-social-instagram svg {
  width: 22px;
  height: 22px;
}
.subdivisions-social-instagram:hover {
  background-color: rgba(1, 77, 171, 0.1);
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-instagram:hover {
    background-color: transparent;
  }
}

.subdivisions-social-youtube {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-youtube {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.subdivisions-social-youtube svg {
  width: 21px;
  height: 15px;
}
.subdivisions-social-youtube:hover {
  background-color: rgba(1, 77, 171, 0.1);
}
@media only screen and (max-width: 1024px) {
  .subdivisions-social-youtube:hover {
    background-color: transparent;
  }
}

.documents-page {
  width: 100%;
}

.documents-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.documents-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .documents-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .documents-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .documents-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.documents-section-item {
  padding: 60px 80px 30px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item {
    padding: 50px 50px 20px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .documents-section-item {
    padding: 50px 30px 20px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-section-item {
    padding: 30px 15px 15px;
    border-radius: 0px;
  }
}
.documents-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.documents-section-item-title {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-section-item-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.documents-section-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 0px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-list {
    gap: 15px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .documents-section-item-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.documents-section-item-list-item {
  cursor: pointer;
}
.documents-section-item-list-item:nth-child(2n+1) {
  padding-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-list-item:nth-child(2n+1) {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .documents-section-item-list-item:nth-child(2n+1) {
    padding: 0;
  }
  .documents-section-item-list-item:nth-child(2n+1):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.documents-section-item-list-item:nth-child(2n) {
  padding-left: 20px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-list-item:nth-child(2n) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .documents-section-item-list-item:nth-child(2n) {
    padding: 0;
  }
  .documents-section-item-list-item:nth-child(2n):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.documents-section-item-list-item:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid #edf2f9;
}
@media only screen and (max-width: 1024px) {
  .documents-section-item-list-item:not(:nth-last-child(-n+2)) {
    border: none;
  }
}
.documents-section-item-list-item:hover .documents-icon-document {
  fill: #1d70d8;
}
.documents-section-item-list-item:hover p {
  color: #1d70d8;
}
.documents-section-item-list-item:hover .documents-icon-download {
  stroke: #1d70d8;
}

.documents-section-item-list-item-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px 0px;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-list-item-link {
    padding: 15px 0px;
  }
}
.documents-section-item-list-item-link p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin: 0 30px;
  flex-grow: 1;
}
@media only screen and (max-width: 1500px) {
  .documents-section-item-list-item-link p {
    font-size: 16px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-section-item-list-item-link p {
    font-size: 14px;
  }
}

.documents-icon-document {
  width: 60px;
  height: 60px;
  fill: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .documents-icon-document {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-icon-document {
    width: 40px;
    height: 40px;
  }
}

.documents-icon-download {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .documents-icon-download {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .documents-icon-download {
    width: 24px;
    height: 24px;
  }
}

.procurement-page {
  width: 100%;
}

.procurement-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.procurement-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .procurement-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .procurement-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}
.procurement-section h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .procurement-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.procurement-section p {
  width: 81.266667%; /* 1219/1500 */
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) {
  .procurement-section p {
    font-size: 16px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-section p {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section p {
    font-size: 14px;
    margin-top: 20px;
    padding: 0px 15px;
  }
}
.procurement-section a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
  margin-top: 20px;
}
@media only screen and (max-width: 1500px) {
  .procurement-section a {
    font-size: 16px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-section a {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section a {
    font-size: 14px;
    margin-top: 20px;
  }
}

.procurement-section-item {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .procurement-section-item {
    padding: 50px 50px 20px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-section-item {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-section-item {
    padding: 30px 15px 50px 15px;
    border-radius: 0px;
  }
}
.procurement-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .procurement-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .procurement-table {
    display: none;
  }
}

.procurement-table-head th {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  color: #000;
  padding: 20px 30px;
  background: #f1f5f9;
}
@media only screen and (max-width: 1500px) {
  .procurement-table-head th {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-table-head th {
    padding: 20px 10px 20px 20px;
  }
}
.procurement-table-head th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.procurement-table-head th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.procurement-table-body td {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  padding: 20px 30px;
}
@media only screen and (max-width: 1500px) {
  .procurement-table-body td {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .procurement-table-body td {
    padding: 15px 10px 15px 20px;
  }
}
.procurement-table-body td:not(:first-child) {
  white-space: nowrap;
  vertical-align: middle;
}
.procurement-table-body td a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #014dab;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .procurement-table-body td a {
    font-size: 16px;
  }
}
.procurement-table-body td span {
  padding: 6px 15px;
  border-radius: 20px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1500px) {
  .procurement-table-body td span {
    font-size: 16px;
    padding: 4px 10px;
  }
}
.procurement-table-body td span.status-blue {
  background: #d6e8ff;
  color: #014dab;
}
.procurement-table-body td span.status-green {
  background: #def6e2;
  color: #098880;
}
.procurement-table-body tr:not(:last-child) {
  border-bottom: 1px solid var(--soft-blue, #edf2f9);
}

.procurement-content-sm {
  display: none;
}
@media only screen and (max-width: 666px) {
  .procurement-content-sm {
    display: block;
  }
}

.procurement-content-sm-list-item {
  padding: 20px 0;
  border-bottom: 1px solid #dde4ee;
}
.procurement-content-sm-list-item:first-child {
  border-top: 1px solid #dde4ee;
}
.procurement-content-sm-list-item h4 {
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin-bottom: 10px;
}
.procurement-content-sm-list-item p {
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  padding: 0;
}
.procurement-content-sm-list-item a {
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #014dab;
  padding: 0;
  text-decoration: none;
}

.procurement-content-sm-list-item-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.procurement-content-sm-list-item-left {
  width: 48%; /* 165/345 */
}

.procurement-content-sm-list-item-right {
  width: 48%; /* 165/345 */
}

@media only screen and (max-width: 666px) {
  .status-blue {
    display: inline-block;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--blue, #014dab);
    padding: 4px 8px;
    border-radius: 20px;
    background: #d6e8ff;
  }
}

.status-green {
  display: inline-block;
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #098880;
  padding: 4px 8px;
  border-radius: 20px;
  background: #def6e2;
}

.transparency-page {
  width: 100%;
}

.transparency-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.transparency-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .transparency-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.transparency-section-item {
  padding: 60px 150px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item {
    padding: 50px 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.transparency-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.transparency-section-item.laws {
  padding: 60px 80px 30px 80px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item.laws {
    padding: 50px 50px 20px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item.laws {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item.laws {
    padding: 30px 15px;
  }
}
.transparency-section-item.docs {
  padding: 30px 80px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item.docs {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item.docs {
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item.docs {
    padding: 15px;
  }
}
.transparency-section-item p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item p {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item p {
    font-size: 14px;
  }
}
.transparency-section-item ol {
  counter-reset: list;
}
.transparency-section-item ol li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item ol li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item ol li {
    font-size: 14px;
  }
}
.transparency-section-item ol li::before {
  counter-increment: list;
  content: "" counter(list) " ";
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--blue, #014dab);
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item ol li::before {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item ol li::before {
    font-size: 14px;
  }
}
.transparency-section-item ul li {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item ul li {
    font-size: 14px;
  }
}
.transparency-section-item ul li::before {
  content: "-";
}

.transparency-section-item-title {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.transparency-section-item-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--soft-blue, #edf2f9);
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item-wrapper {
    flex-direction: column;
    border-top: none;
  }
}

.transparency-section-item-link {
  display: flex;
  justify-content: space-between;
  padding: 30px 10px 30px 0;
  width: 48%; /* 725/1500 */
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item-link {
    padding: 25px 10px 25px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item-link {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid var(--soft-blue, #edf2f9);
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item-link {
    padding: 20px 0px;
  }
}
.transparency-section-item-link:hover span {
  color: #1d70d8;
}
.transparency-section-item-link:hover svg {
  stroke: #1d70d8;
}
.transparency-section-item-link span {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1d1d1d;
  padding-right: 10px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item-link span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item-link span {
    font-size: 16px;
    padding-right: 20px;
  }
}
.transparency-section-item-link svg {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item-link svg {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-section-item-link svg {
    width: 24px;
    height: 24px;
  }
}

.transparency-section-item.docs .transparency-section-item-wrapper {
  border-top: none;
}
.transparency-section-item.docs .transparency-section-item-wrapper:not(:last-child) {
  border-bottom: 1px solid var(--soft-blue, #edf2f9);
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item.docs .transparency-section-item-wrapper:not(:last-child) {
    border-bottom: none;
  }
}

.transparency-section-item-link-doc {
  display: flex;
  width: 48%;
  justify-content: space-between;
  padding: 20px 0px;
}
@media only screen and (max-width: 1500px) {
  .transparency-section-item-link-doc {
    padding: 15px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .transparency-section-item-link-doc {
    width: 100%;
  }
  .transparency-section-item-link-doc:not(:last-child) {
    border-bottom: 1px solid var(--soft-blue, #edf2f9);
  }
}
.transparency-section-item-link-doc:hover .transparency-icon-document {
  fill: #1d70d8;
}
.transparency-section-item-link-doc:hover .transparency-doc-name {
  color: #1d70d8;
}
.transparency-section-item-link-doc:hover .transparency-icon-download {
  stroke: #1d70d8;
}

.transparency-icon-document {
  width: 60px;
  height: 60px;
  fill: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .transparency-icon-document {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-icon-document {
    width: 40px;
    height: 40px;
  }
}

p.transparency-doc-name {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin: 0 30px;
  flex-grow: 1;
}
@media only screen and (max-width: 1500px) {
  p.transparency-doc-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  p.transparency-doc-name {
    font-size: 14px;
  }
}

.transparency-icon-download {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .transparency-icon-download {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .transparency-icon-download {
    width: 24px;
    height: 24px;
  }
}

.vacancies-page {
  width: 100%;
}

.vacancies-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.vacancies-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 1500px) {
  .vacancies-section .about-subtitle {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section .about-subtitle {
    margin-bottom: 30px;
    padding: 0px 15px;
  }
}

.vacancies-section-item {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item {
    padding: 50px 50px 30px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.vacancies-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.vacancies-section-item-title {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--blue, #014dab);
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.vacancies-section-item-wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-wrapper {
    flex-direction: column;
  }
}
.vacancies-section-item-wrapper ul {
  list-style-type: disc;
  margin-bottom: 30px;
  padding-left: 25px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-wrapper ul {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-wrapper ul {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-wrapper ul {
    margin-bottom: 15px;
  }
}
.vacancies-section-item-wrapper ul li {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-wrapper ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-wrapper ul li {
    font-size: 14px;
  }
}
.vacancies-section-item-wrapper ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-wrapper ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-wrapper ul li:not(:last-child) {
    margin-bottom: 6px;
  }
}

.vacancies-section-item-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60.933333%; /* 914/1500 */
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-left {
    width: 60.209424%; /* 690/1146 */
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-left {
    width: 100%;
    border-bottom: 1px solid #edf2f9;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-left {
    margin-bottom: 15px;
  }
}

.vacancies-section-item-border {
  width: 1px;
  background: var(--soft-blue, #edf2f9);
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-border {
    display: none;
  }
}

.vacancies-section-item-right {
  width: 32.333333%; /* 485/1500 */
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-right {
    width: 32.722513%; /* 375/1146 */
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-right {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf2f9;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-right {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.vacancies-section-item-salary {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-salary {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-salary {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.vacancies-section-item-descr {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-descr {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-descr {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.vacancies-section-item-btn {
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-btn {
    padding: 11px 20px;
    border-radius: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-btn {
    font-size: 12px;
    padding: 8px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-btn.desktop {
    display: none;
  }
}
.vacancies-section-item-btn.mobile {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .vacancies-section-item-btn.mobile {
    display: block;
  }
}
.vacancies-section-item-btn:hover {
  background: #1d70d8;
}

.vacancies-section-item-requirements {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-requirements {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-requirements {
    font-size: 16px;
  }
}

.vacancies-section-item-questions {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-item-questions {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-item-questions {
    font-size: 14px;
  }
}
.vacancies-section-item-questions a {
  color: #014dab;
  white-space: nowrap;
}

.vacancies-section-pagination {
  display: flex;
  justify-content: center;
  margin-top: 130px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-pagination {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-pagination {
    margin-top: 50px;
  }
}

.vacancies-section-pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 13px 10px;
  border-radius: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-pagination-item {
    width: 40px;
    height: 40px;
    padding: 8px;
    font-size: 14px;
    line-height: 170%;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-section-pagination-item {
    width: 35px;
    height: 35px;
    padding: 5px 7px 6px 7px;
  }
}
.vacancies-section-pagination-item:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-section-pagination-item:not(:last-child) {
    margin-right: 8px;
  }
}
.vacancies-section-pagination-item.arrow {
  padding: 0;
}
.vacancies-section-pagination-item svg {
  width: 100%;
  height: 100%;
}
.vacancies-section-pagination-item svg path {
  fill: #000;
}
.vacancies-section-pagination-item.arrow.disable:hover {
  background: transparent;
}
.vacancies-section-pagination-item.arrow.disable svg {
  width: 100%;
  height: 100%;
}
.vacancies-section-pagination-item.arrow.disable svg path {
  fill: #919eab;
}

.vacancies-section-pagination-item:hover {
  background: rgba(1, 77, 171, 0.08);
}

.vacancies-section-pagination-item.active {
  border: 1px solid var(--blue, #014dab);
  background: rgba(1, 77, 171, 0.08);
  color: var(--blue, #014dab);
}

.control-page {
  width: 100%;
}

.control-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}

.about-list-item-link.current {
  color: #000;
  background: #fff;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1500px) {
  h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.activity-content {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .activity-content {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content {
    padding: 50px 0px;
  }
}
.activity-content h2 {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content h2 {
    font-size: 16px;
    padding: 0px 15px;
  }
}
.activity-content p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1500px) {
  .activity-content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.activity-content p.activity-citation {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  padding-left: 60px;
  border-left: 3px solid #014dab;
}
@media only screen and (max-width: 1500px) {
  .activity-content p.activity-citation {
    font-size: 16px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content p.activity-citation {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content p.activity-citation {
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 15px;
  }
}
.activity-content h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.activity-content h4 {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin: 50px 0;
}
@media only screen and (max-width: 1500px) {
  .activity-content h4 {
    font-size: 20px;
    margin: 30px 0;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content h4 {
    font-size: 16px;
    margin: 15px 0;
  }
}
.activity-content img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1500px) {
  .activity-content img {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content img {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content img {
    margin-bottom: 15px;
  }
}
.activity-content ul li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .activity-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content ul li {
    font-size: 14px;
  }
}
.activity-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .activity-content ul li::before {
    width: 6px;
    height: 6px;
  }
}
.activity-content ul.activity-two-column-list {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content ul.activity-two-column-list {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content ul.activity-two-column-list {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.activity-content ul.activity-two-column-list li {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content ul.activity-two-column-list li {
    margin-bottom: 30px;
  }
}
.activity-content ol {
  counter-reset: list;
}
.activity-content ol li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .activity-content ol li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content ol li {
    font-size: 14px;
  }
}
.activity-content ol li::before {
  counter-increment: list;
  content: "" counter(list) " ";
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--blue, #014dab);
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .activity-content ol li::before {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content ol li::before {
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content ol li::before {
    font-size: 14px;
  }
}
.activity-content a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
  font-style: inherit;
}
@media only screen and (max-width: 1500px) {
  .activity-content a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content a {
    font-size: 14px;
  }
}

.activity-content-item {
  padding: 60px 150px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item {
    padding: 50px 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-item {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-item {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.activity-content-item.wide {
  padding: 60px 80px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item.wide {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-item.wide {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-item.wide {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.activity-content-item:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.activity-content-link-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-link-group {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-link-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-link-group {
    padding: 0 15px;
    gap: 10px;
  }
}
.activity-content-link-group a {
  display: flex;
  justify-content: space-between;
  padding: 35px 40px;
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  margin: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-content-link-group a {
    padding: 25px 30px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-link-group a {
    padding: 20px 15px;
  }
}
.activity-content-link-group a span {
  width: 80%; /* 567/817 */
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .activity-content-link-group a span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-link-group a span {
    font-size: 16px;
  }
}
.activity-content-link-group a svg {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-content-link-group a svg {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-link-group a svg {
    width: 24px;
    height: 24px;
  }
}
.activity-content-link-group a:hover span {
  color: #1d70d8;
}
.activity-content-link-group a:hover svg {
  stroke: #1d70d8;
}

.activity-group-text-img {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .activity-group-text-img {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-group-text-img {
    flex-direction: column;
    margin: 0;
  }
}
.activity-group-text-img img {
  display: block;
  width: 38.676471%; /* 526/1360 */
  height: auto;
  margin-bottom: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-group-text-img img {
    width: 39.960239%; /* 402/1006 */
  }
}
@media only screen and (max-width: 1024px) {
  .activity-group-text-img img {
    width: 100%;
    max-height: 540px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-group-text-img img {
    max-height: 288px;
  }
}
.activity-group-text-img .activity-group-text {
  width: 57.573529%; /* 783/1360 */
}
@media only screen and (max-width: 1500px) {
  .activity-group-text-img .activity-group-text {
    width: 55.069583%; /* 554/1006 */
  }
}
@media only screen and (max-width: 1024px) {
  .activity-group-text-img .activity-group-text {
    width: 100%;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-group-text-img .activity-group-text {
    margin-top: 15px;
  }
}

.activity-content-item .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 48%;
  background-color: #000000;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item .video {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-item .video {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-item .video {
    margin-bottom: 15px;
    padding-bottom: 56.15%;
  }
}
.activity-content-item .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.activity-content-item .video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.activity-content-item .video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
.activity-content-item .video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0;
  width: 200px;
  height: 200px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item .video-button {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-item .video-button {
    width: 60px;
    height: 60px;
  }
}
.activity-content-item .video-button img {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.activity-content-item .video-file-wrapper {
  position: relative;
  width: 100%;
  height: 652px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-item .video-file-wrapper {
    height: 600px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-item .video-file-wrapper {
    height: 340px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-item .video-file-wrapper {
    height: 190px;
    margin-bottom: 15px;
  }
}
.activity-content-item .video-file-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.activity-content-item .video-file-wrapper .video-file-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.activity-group-img-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  height: 472px;
}
@media only screen and (max-width: 1500px) {
  .activity-group-img-img {
    height: 350px;
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-group-img-img {
    height: 215px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-group-img-img {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    height: auto;
  }
}
.activity-group-img-img img {
  width: 100%;
  height: 472px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-group-img-img img {
    height: 350px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-group-img-img img {
    height: 215px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-group-img-img img {
    height: 197px;
  }
}

.activity-content-documents-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 0px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper {
    gap: 15px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-documents-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px 0px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  margin: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link {
    padding: 15px 0px;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n+1) {
  padding-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n+1) {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n+1) {
    padding: 15px 0px;
  }
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n+1):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n) {
  padding-left: 20px;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n) {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n) {
    padding: 15px 0px;
  }
  .activity-content-documents-wrapper a.activity-content-documents-link:nth-child(2n):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid #edf2f9;
}
@media only screen and (max-width: 1024px) {
  .activity-content-documents-wrapper a.activity-content-documents-link:not(:nth-last-child(-n+2)) {
    border: none;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link span {
  width: 80%; /* 567/817 */
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-documents-wrapper a.activity-content-documents-link span {
    font-size: 16px;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link svg {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link svg {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-documents-wrapper a.activity-content-documents-link svg {
    width: 24px;
    height: 24px;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link:hover span {
  color: #1d70d8;
}
.activity-content-documents-wrapper a.activity-content-documents-link:hover svg {
  stroke: #1d70d8;
}
.activity-content-documents-wrapper a.activity-content-documents-link p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin: 0 30px;
  flex-grow: 1;
}
@media only screen and (max-width: 1500px) {
  .activity-content-documents-wrapper a.activity-content-documents-link p {
    font-size: 16px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-content-documents-wrapper a.activity-content-documents-link p {
    font-size: 14px;
  }
}
.activity-content-documents-wrapper a.activity-content-documents-link:hover svg.activity-content-icon-document {
  fill: #1d70d8;
}
.activity-content-documents-wrapper a.activity-content-documents-link:hover p {
  color: #1d70d8;
}
.activity-content-documents-wrapper a.activity-content-documents-link:hover svg.activity-content-icon-download {
  stroke: #1d70d8;
}

a.activity-content-documents-link > svg.activity-content-icon-document {
  width: 60px;
  height: 60px;
  fill: #014dab;
  stroke: none;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  a.activity-content-documents-link > svg.activity-content-icon-document {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 666px) {
  a.activity-content-documents-link > svg.activity-content-icon-document {
    width: 40px;
    height: 40px;
  }
}

a.activity-content-documents-link > svg.activity-content-icon-download {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  a.activity-content-documents-link > svg.activity-content-icon-download {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  a.activity-content-documents-link > svg.activity-content-icon-download {
    width: 24px;
    height: 24px;
  }
}

.activity-slider {
  width: 100%;
}
.activity-slider .slick-slide {
  margin-right: 30px;
}
@media only screen and (max-width: 1500px) {
  .activity-slider .slick-slide {
    margin-right: 20px;
  }
}
.activity-slider-item {
  height: 323px;
  margin: 0;
}
@media only screen and (max-width: 1500px) {
  .activity-slider-item {
    height: 240px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-slider-item {
    height: 143px;
  }
}
@media only screen and (max-width: 666px) {
  .activity-slider-item {
    height: 197px;
  }
}

a.activity-slider-item-link {
  display: block;
  height: 100%;
  padding: 0;
}
a.activity-slider-item-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}

.activity-slider-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  height: 60px;
  margin-top: 50px;
}
@media only screen and (max-width: 1500px) {
  .activity-slider-arrows {
    width: 90px;
    height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-slider-arrows {
    margin-top: 30px;
  }
}
.activity-slick-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #014dab;
  border-radius: 50%;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .activity-slick-prev {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-slick-prev {
    border: 1.5px solid #014dab;
  }
}
.activity-slick-prev svg {
  pointer-events: none;
  stroke: #014dab;
}
.activity-slick-prev:hover {
  border: 2px solid #1d70d8;
  background: #1d70d8;
}
.activity-slick-prev:hover svg {
  stroke: #fff;
}

.activity-slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #014dab;
  border-radius: 50%;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .activity-slick-next {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .activity-slick-next {
    border: 1.5px solid #014dab;
  }
}
.activity-slick-next svg {
  pointer-events: none;
  stroke: #014dab;
}
.activity-slick-next:hover {
  border: 2px solid #1d70d8;
  background: #1d70d8;
}
.activity-slick-next:hover svg {
  stroke: #fff;
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.8);
  opacity: 1;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}

.sl-wrapper * {
  box-sizing: border-box;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
  font-size: 3rem;
}
@media only screen and (max-width: 1024px) {
  .sl-wrapper .sl-close {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 666px) {
  .sl-wrapper .sl-close {
    top: 67px;
  }
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 10060;
  color: #fff;
  font-family: IBM Plex Sans;
  font-weight: 400;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .sl-wrapper .sl-counter {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 666px) {
  .sl-wrapper .sl-counter {
    top: 65px;
  }
}

.sl-wrapper .sl-download {
  display: none;
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  z-index: 10060;
  color: #fff;
  font-size: 1rem;
}

.sl-wrapper .sl-download a {
  color: #fff;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}

.sl-wrapper .sl-image {
  position: fixed;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: transform ease 200ms;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.development-page {
  width: 100%;
}

.development-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.development-main h1 {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .development-main h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .development-main h1 {
    font-size: 16px;
    padding: 0 15px;
  }
}
.development-main h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .development-main h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .development-main h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.development-main h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .development-main h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .development-main h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.about-list-item-link.current {
  color: #000;
  background: #fff;
}

.development-content {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .development-content {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .development-content {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .development-content {
    padding: 50px 0px;
  }
}

.development-content-item {
  padding: 60px 80px 30px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .development-content-item {
    padding: 50px 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .development-content-item {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .development-content-item {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.development-content-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .development-content-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.citizens-page {
  width: 100%;
}

.citizens-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.citizens-main h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .citizens-main h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-main h3 {
    font-size: 18px;
    padding: 0 15px;
  }
}
.citizens-main h4 > a {
  display: block;
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .citizens-main h4 > a {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-main h4 > a {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.citizens-section {
  width: 100%;
  padding: 110px 130px 130px;
}
@media only screen and (max-width: 1500px) {
  .citizens-section {
    padding: 60px 60px 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-section {
    padding: 60px 30px 100px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-section {
    padding: 50px 0px;
  }
}
.citizens-section h1 {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1500px) {
  .citizens-section h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-section h1 {
    font-size: 16px;
    padding: 0px 15px;
    margin-bottom: 30px;
  }
}
.citizens-section p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1500px) {
  .citizens-section p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.citizens-section-item {
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .citizens-section-item {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-section-item {
    padding: 50px 30px 30px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-section-item {
    padding: 30px 15px;
    border-radius: 0px;
  }
}
.citizens-section-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .citizens-section-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.citizens-section-item .activity-content-documents-wrapper {
  margin-top: 50px;
}
@media only screen and (max-width: 1500px) {
  .citizens-section-item .activity-content-documents-wrapper {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-section-item .activity-content-documents-wrapper {
    margin-top: 0;
  }
}
.citizens-articles-list {
  padding: 0 40px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1500px) {
  .citizens-articles-list {
    padding: 0 30px;
  }
}
.citizens-articles-list-item {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
@media only screen and (max-width: 1500px) {
  .citizens-articles-list-item {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-articles-list-item {
    flex-direction: column;
    padding: 30px 0 20px 0;
  }
}
.citizens-articles-list-item:not(:last-child) {
  border-bottom: 1px solid #edf2f9;
}

.citizens-articles-list-item-img {
  width: 366px;
  height: 220px;
  background-color: #ebeef6;
}
@media only screen and (max-width: 1500px) {
  .citizens-articles-list-item-img {
    width: 266px;
    height: 160px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-articles-list-item-img {
    width: 200px;
    height: 120px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-articles-list-item-img {
    width: 100%;
    height: 190px;
    margin-bottom: 20px;
  }
}
.citizens-articles-list-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.citizens-articles-list-item-right {
  width: 70.506329%; /* 1114/1580 */
  padding-left: 15px;
}
@media only screen and (max-width: 1500px) {
  .citizens-articles-list-item-right {
    width: 69.139966%; /* 820/1186 */
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-articles-list-item-right {
    width: 64.506173%; /* 418/648 */
  }
}
@media only screen and (max-width: 666px) {
  .citizens-articles-list-item-right {
    width: 100%;
    padding-left: 0px;
  }
}

.services-page {
  width: 100%;
}

.services-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.services-main h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 50px;
  padding-right: 50px;
}
@media only screen and (max-width: 1500px) {
  .services-main h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .services-main h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 20px;
  }
}

.citizens-accordion {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion {
    margin-bottom: 20px;
  }
}
.citizens-accordion-item {
  border-radius: 10px;
  background: #fff;
  padding: 40px 80px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion-item {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-accordion-item {
    padding: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion-item {
    padding: 20px 15px;
  }
}
.citizens-accordion-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.citizens-accordion-item:first-child .citizens-accordion-item-dropdown {
  display: block;
}

.citizens-accordion-item-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.citizens-accordion-item-heading.open .citizens-accordeon-item-heading-icon {
  transform: rotate(180deg);
}
.citizens-accordion-item-heading h3 {
  margin-bottom: 0;
}

.citizens-accordeon-item-heading-icon {
  width: 24px;
  height: 12px;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 200ms linear;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordeon-item-heading-icon {
    width: 18px;
    height: 9px;
  }
}
.citizens-accordeon-item-heading-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.citizens-accordion-item-dropdown {
  display: none;
  padding-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .citizens-accordion-item-dropdown {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion-item-dropdown {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 666px) {
  .citizens-table {
    display: none;
  }
}

.citizens-table-head th {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  color: #000;
  padding: 20px 30px;
  background: #f1f5f9;
  white-space: nowrap;
}
@media only screen and (max-width: 1500px) {
  .citizens-table-head th {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-table-head th {
    padding: 20px 10px 20px 20px;
    white-space: break-spaces;
    vertical-align: middle;
  }
}
.citizens-table-head th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.citizens-table-head th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.citizens-table-body td {
  padding: 20px 30px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .citizens-table-body td {
    font-size: 16px;
    padding: 15px 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-table-body td {
    padding: 15px 10px 15px 20px;
  }
}
.citizens-table-body td h4 {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) {
  .citizens-table-body td h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .citizens-table-body td h4 {
    margin-bottom: 5px;
  }
}
.citizens-table-body td p {
  margin-bottom: 0;
}
.citizens-table-body td:not(:first-child) {
  white-space: nowrap;
  vertical-align: middle;
}
.citizens-table-body tr:not(:last-child) {
  border-bottom: 1px solid var(--soft-blue, #edf2f9);
}

.citizens-accordion-item-dropdown-content-sm {
  display: none;
}
@media only screen and (max-width: 666px) {
  .citizens-accordion-item-dropdown-content-sm {
    display: block;
  }
}

.citizens-content-sm-item {
  padding: 20px 0;
  border-top: 1px solid #dde4ee;
}
.citizens-content-sm-item h4 {
  font-family: IBM Plex Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 666px) {
  .citizens-content-sm-item h4 {
    font-size: 14px;
  }
}
.citizens-content-sm-item p {
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}

.citizens-content-sm-list-item-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.citizens-content-sm-list-item-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
}

.questions-page {
  width: 100%;
}

.questions-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.questions-main h3 {
  font-family: IBM Plex Sans;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  padding-right: 50px;
}
@media only screen and (max-width: 1500px) {
  .questions-main h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 666px) {
  .questions-main h3 {
    font-size: 18px;
    padding-right: 20px;
  }
}

.citizens-accordion ul {
  margin-bottom: 30px;
}
@media only screen and (max-width: 666px) {
  .citizens-accordion ul {
    margin-bottom: 20px;
  }
}
.citizens-accordion ul li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ul li {
    font-size: 16px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion ul li {
    font-size: 14px;
  }
}
.citizens-accordion ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.citizens-accordion ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ul li::before {
    width: 6px;
    height: 6px;
  }
}
.citizens-accordion ol {
  counter-reset: list;
  margin-bottom: 30px;
}
@media only screen and (max-width: 666px) {
  .citizens-accordion ol {
    margin-bottom: 20px;
  }
}
.citizens-accordion ol li {
  display: flex;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ol li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion ol li {
    font-size: 14px;
  }
}
.citizens-accordion ol li:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ol li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.citizens-accordion ol li::before {
  counter-increment: list;
  content: "" counter(list) " ";
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--blue, #014dab);
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion ol li::before {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion ol li::before {
    font-size: 14px;
  }
}
.citizens-accordion a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .citizens-accordion a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .citizens-accordion a {
    font-size: 14px;
  }
}

.news-page {
  width: 100%;
}
.news-page .home-news {
  margin: 0 0;
  padding: 16px 130px 0;
}
@media only screen and (max-width: 1500px) {
  .news-page .home-news {
    padding: 16px 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .news-page .home-news {
    padding: 16px 30px 0;
  }
}
@media only screen and (max-width: 666px) {
  .news-page .home-news {
    padding: 16px 15px 0;
  }
}

.news-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.news-main .vacancies-section-pagination {
  margin-bottom: 130px;
}
@media only screen and (max-width: 1500px) {
  .news-main .vacancies-section-pagination {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 666px) {
  .news-main .vacancies-section-pagination {
    margin-bottom: 50px;
  }
}
.news-main .home-news-list {
  margin: 80px 0 130px;
}
@media only screen and (max-width: 1500px) {
  .news-main .home-news-list {
    margin: 60px 0 100px;
  }
}
@media only screen and (max-width: 666px) {
  .news-main .home-news-list {
    margin: 50px 0;
  }
}

.news-hero {
  width: 100%;
  padding: 170px 130px 60px;
  background: radial-gradient(214% 244.49% at 165.7% -32.24%, #22d081 0%, #004eaa 100%), #d9d9d9;
}
@media only screen and (max-width: 1500px) {
  .news-hero {
    padding: 120px 60px 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .news-hero {
    padding: 120px 30px 50px;
  }
}
@media only screen and (max-width: 666px) {
  .news-hero {
    padding: 80px 15px 30px;
  }
}
.news-hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (max-width: 1500px) {
  .news-hero h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 666px) {
  .news-hero h1 {
    font-size: 25px;
  }
}

.news-filter-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.news-filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 0px solid var(--blue, #014dab);
  background-color: #f6f7fa;
  transition: all 250ms ease;
  box-shadow: 0px 0px 4px 0px #014dab;
  margin-left: auto;
  cursor: pointer;
}
.news-filter-btn:hover {
  background-color: rgba(1, 77, 171, 0.08);
}
.news-filter-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.news-filter-btn span {
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--blue, #014dab);
}

.news-filter {
  position: absolute;
  right: 0;
  top: 56px;
  width: 394px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  background: #fff;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 2;
  display: none;
}
@media only screen and (max-width: 666px) {
  .news-filter {
    width: auto;
    max-width: 394px;
    padding: 24px 12px;
  }
}

.news-filter-title {
  font-family: "IBM Plex Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin-bottom: 20px;
}

.news-filter-form-radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.news-filter-form-radio-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid var(--blue, #014dab);
  background: transparent;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--blue, #014dab);
  cursor: pointer;
}

.news-filter-form-radio-input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.news-filter-form-radio-input:checked + .news-filter-form-radio-label {
  color: #fff;
  background: var(--blue, #014dab);
}

.news-filter-form-select-wrapper {
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid var(--blue, #014dab);
  background: #fff;
  margin-bottom: 24px;
}
.news-filter-form-select {
  border-radius: 6px;
  background: #fff;
  outline: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

.news-filter-form-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-filter-form-btn,
.news-filter-form-btn-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47%;
  padding: 11px 20px;
  border-radius: 40px;
  border: 2px solid #1d70d8;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.news-filter-form-btn {
  color: #1d70d8;
  background: #fff;
  transition: all 250ms ease;
}
.news-filter-form-btn:hover {
  color: #fff;
  background: #1d70d8;
}

.news-filter-form-btn-accent {
  color: #fff;
  background: #1d70d8;
  transition: all 250ms ease;
}
.news-filter-form-btn-accent:hover {
  color: #1d70d8;
  background: #fff;
}

.news-filter-calendar {
  position: relative;
  margin: 24px 0;
  padding: 20px 10px;
  border-radius: 8px;
  background: #f6f7fa;
}
@media only screen and (max-width: 666px) {
  .news-filter-calendar {
    padding: 15px;
  }
}

.news-filter-input-wrapper {
  display: flex;
  justify-content: space-between;
}
.news-filter-input-wrapper input {
  width: 48%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid var(--blue, #014dab);
  background: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .news-filter-input-wrapper input {
    padding: 13px;
  }
}
.news-filter-calendar-title {
  font-family: "IBM Plex Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.ui-widget.ui-widget-content {
  width: 100%;
  background: transparent;
  border: none;
}

.ui-datepicker .ui-datepicker-header {
  border: none;
  background: transparent;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: IBM Plex Sans;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.75px;
}

.ui-datepicker .ui-datepicker-prev span {
  background-image: url("../images/arr-prev3.svg");
  background-size: contain;
  background-position: 50% 50%;
  z-index: 6;
}

.ui-datepicker .ui-datepicker-next span {
  background-image: url("../images/arr-next3.svg");
  background-size: contain;
  background-position: 50% 50%;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border: 1px solid transparent;
  background: transparent;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: #33333e;
  width: 30px;
  height: 30px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  border-radius: 50%;
  background: var(--blue, #014dab);
  color: #fff;
  text-align: center;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid transparent;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
  border-radius: 50%;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: #33333e;
}

#ui-datepicker-div {
  width: 344px;
  left: auto !important;
  top: 715px !important;
  right: 154px;
  padding: 8px 24px;
  background: #f6f7fa;
  border-radius: 8px;
}
@media only screen and (max-width: 1500px) {
  #ui-datepicker-div {
    left: auto !important;
    top: 625px !important;
    right: 84px;
  }
}
@media only screen and (max-width: 1024px) {
  #ui-datepicker-div {
    right: 54px;
  }
}
@media only screen and (max-width: 666px) {
  #ui-datepicker-div {
    right: 27px;
    top: 532px !important;
    padding: 2px 14px 8px;
    max-width: 370px;
    width: 85%;
  }
}

.article-page {
  width: 100%;
}
.article-page .header {
  background: radial-gradient(214% 244.49% at 165.7% -32.24%, #22d081 0%, #004eaa 100%), #d9d9d9;
}
.article-page .header-inner {
  border: none;
}

.article-main {
  width: 100%;
  overflow: hidden;
  background-color: var(--base-cream, #f6f7fa);
}
.article-main p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1500px) {
  .article-main p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .article-main p {
    font-size: 14px;
  }
}

.article-section {
  width: 100%;
  padding: 170px 130px 0px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1366px) {
  .article-section {
    padding: 130px 60px 0px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-section {
    padding: 130px 30px 0px;
  }
}
@media only screen and (max-width: 666px) {
  .article-section {
    padding: 60px 0px 0px;
    margin-bottom: 30px;
  }
}

.article-content {
  padding: 60px 150px 1px;
  border-radius: 10px;
  background: #fff;
}
@media only screen and (max-width: 1366px) {
  .article-content {
    padding: 50px 120px 1px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-content {
    padding: 50px 40px 1px 40px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content {
    padding: 30px 15px 1px;
    border-radius: 0px;
  }
}
.article-content h1 {
  font-family: IBM Plex Sans;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .article-content h1 {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content h1 {
    font-size: 25px;
  }
}
.article-content h2 {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .article-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.article-content a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .article-content a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content a {
    font-size: 14px;
  }
}
.article-content img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-content img {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-content img {
    margin: 30px 0;
  }
}
.article-content ul {
  margin: 25px 0 60px;
}
@media only screen and (max-width: 1500px) {
  .article-content ul {
    margin: 25px 0 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-content ul {
    margin: 25px 0 30px;
  }
}
.article-content ul li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .article-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content ul li {
    font-size: 14px;
  }
}
.article-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .article-content ul li::before {
    width: 6px;
    height: 6px;
  }
}
.article-content ol {
  counter-reset: list;
  margin: 25px 0 60px;
}
@media only screen and (max-width: 1500px) {
  .article-content ol {
    margin: 25px 0 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-content ol {
    margin: 25px 0 30px;
  }
}
.article-content ol li {
  position: relative;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-bottom: 15px;
  padding-left: 28px;
}
@media only screen and (max-width: 1500px) {
  .article-content ol li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content ol li {
    font-size: 14px;
  }
}
.article-content ol li::before {
  counter-increment: list;
  content: "" counter(list) " ";
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: var(--blue, #014dab);
  margin-right: 15px;
}
@media only screen and (max-width: 1500px) {
  .article-content ol li::before {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 666px) {
  .article-content ol li::before {
    font-size: 14px;
  }
}

a.article-all-news-link {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  text-decoration-line: none;
}
@media only screen and (max-width: 1500px) {
  a.article-all-news-link {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  a.article-all-news-link {
    margin-bottom: 30px;
  }
}
a.article-all-news-link svg {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 1500px) {
  a.article-all-news-link svg {
    width: 24px;
    height: 24px;
  }
}
a.article-all-news-link svg path {
  stroke: #014dab;
}
a.article-all-news-link span {
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--blue, #014dab);
  margin-left: 10px;
}
@media only screen and (max-width: 1500px) {
  a.article-all-news-link span {
    font-size: 14px;
  }
}
a.article-all-news-link:hover svg path {
  stroke: #fff;
}
a.article-all-news-link:hover svg rect {
  fill: #014dab;
}
a.article-all-news-link:hover span {
  color: #1d70d8;
}

.article-date {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--blue, #014dab);
  font-family: IBM Plex Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--blue, #014dab);
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--soft-blue, #e5ebf3);
  margin-bottom: 60px;
}
@media only screen and (max-width: 1500px) {
  .article-date {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-date {
    margin-bottom: 30px;
  }
}

.article-group-img-text {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-group-img-text {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-group-img-text {
    display: block;
    margin: 30px 0;
  }
}
.article-group-img-text img {
  display: block;
  width: 38.455882%; /* 523/1360 */
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 1500px) {
  .article-group-img-text img {
    width: 40%; /* 402/1006 */
    height: 336px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-group-img-text img {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .article-group-img-text img {
    height: 288px;
  }
}
.article-group-img-text ul,
.article-group-img-text ol {
  margin: 25px 0 0px;
}

.article-group-text {
  width: 57.647059%; /* 784/1360 */
  padding-left: 20px;
}
@media only screen and (max-width: 1500px) {
  .article-group-text {
    width: 55%; /* 554/1006 */
  }
}
@media only screen and (max-width: 1024px) {
  .article-group-text {
    width: 100%;
    padding-left: 0;
  }
}
.article-citation {
  margin: 60px 0;
  padding-left: 60px;
  border-left: 3px solid #014dab;
}
@media only screen and (max-width: 1500px) {
  .article-citation {
    margin: 50px 0;
    padding-left: 50px;
    border-left: 2px solid #014dab;
  }
}
@media only screen and (max-width: 1024px) {
  .article-citation {
    margin: 30px 0;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .article-citation {
    padding-left: 15px;
  }
}
.article-citation p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  color: #000;
}
@media only screen and (max-width: 1500px) {
  .article-citation p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .article-citation p {
    font-size: 14px;
  }
}

.article-slider {
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-slider {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-slider {
    margin: 30px 0;
  }
}
.article-slider img {
  margin: 0;
}

.article-video {
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-video {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-video {
    margin: 30px 0;
  }
}
.article-video .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 48%;
  background-color: #000000;
}
@media only screen and (max-width: 1500px) {
  .article-video .video {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-video .video {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .article-video .video {
    margin-bottom: 15px;
    padding-bottom: 56.15%;
  }
}
.article-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-video .video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-video .video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.article-video .video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0;
  width: 200px;
  height: 200px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .article-video .video-button {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 666px) {
  .article-video .video-button {
    width: 60px;
    height: 60px;
  }
}
.article-video .video-button img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.article-video-file {
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-video-file {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-video-file {
    margin: 30px 0;
  }
}
.article-video-file .video-file-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.article-group-img-img {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}
@media only screen and (max-width: 1500px) {
  .article-group-img-img {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .article-group-img-img {
    margin: 30px 0;
  }
}
@media only screen and (max-width: 666px) {
  .article-group-img-img {
    display: block;
  }
}
.article-group-img-img img {
  width: 49%; /* 665/1360 */
  height: 472px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 1500px) {
  .article-group-img-img img {
    height: 350px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-group-img-img img {
    height: 212px;
  }
}
@media only screen and (max-width: 666px) {
  .article-group-img-img img {
    width: 100%;
    height: 197px;
    margin-bottom: 30px;
  }
}

.article-documents-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 0px;
  margin: 30px 0 60px;
  padding-top: 30px;
  border-top: 1px solid #edf2f9;
}
@media only screen and (max-width: 1500px) {
  .article-documents-wrapper {
    gap: 15px 0px;
    margin: 20px 0 50px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-documents-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin: 20px 0 30px;
    padding-top: 20px;
  }
}
.article-documents-wrapper a.article-documents-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px 0px;
  border-radius: 0;
  cursor: pointer;
  text-decoration-line: none;
}
@media only screen and (max-width: 1500px) {
  .article-documents-wrapper a.article-documents-link {
    padding: 15px 0px;
  }
}
.article-documents-wrapper a.article-documents-link:nth-child(2n+1) {
  padding-right: 20px;
}
@media only screen and (max-width: 1500px) {
  .article-documents-wrapper a.article-documents-link:nth-child(2n+1) {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-documents-wrapper a.article-documents-link:nth-child(2n+1) {
    padding: 15px 0px;
  }
  .article-documents-wrapper a.article-documents-link:nth-child(2n+1):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.article-documents-wrapper a.article-documents-link:nth-child(2n) {
  padding-left: 20px;
}
@media only screen and (max-width: 1500px) {
  .article-documents-wrapper a.article-documents-link:nth-child(2n) {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-documents-wrapper a.article-documents-link:nth-child(2n) {
    padding: 15px 0px;
  }
  .article-documents-wrapper a.article-documents-link:nth-child(2n):not(:last-child) {
    border-bottom: 1px solid #edf2f9;
  }
}
.article-documents-wrapper a.article-documents-link:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid #edf2f9;
}
@media only screen and (max-width: 1024px) {
  .article-documents-wrapper a.article-documents-link:not(:nth-last-child(-n+2)) {
    border: none;
  }
}
.article-documents-wrapper a.article-documents-link p {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
  margin: 0 30px;
  flex-grow: 1;
}
@media only screen and (max-width: 1500px) {
  .article-documents-wrapper a.article-documents-link p {
    font-size: 16px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 666px) {
  .article-documents-wrapper a.article-documents-link p {
    font-size: 14px;
  }
}
.article-documents-wrapper a.article-documents-link:hover svg.article-icon-document {
  fill: #1d70d8;
}
.article-documents-wrapper a.article-documents-link:hover p {
  color: #1d70d8;
}
.article-documents-wrapper a.article-documents-link:hover svg.article-icon-download {
  stroke: #1d70d8;
}

a.article-documents-link > svg.article-icon-document {
  width: 60px;
  height: 60px;
  fill: #014dab;
  stroke: none;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  a.article-documents-link > svg.article-icon-document {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 666px) {
  a.article-documents-link > svg.article-icon-document {
    width: 40px;
    height: 40px;
  }
}

a.article-documents-link > svg.article-icon-download {
  width: 50px;
  height: 50px;
  stroke: #014dab;
  flex-shrink: 0;
}
@media only screen and (max-width: 1500px) {
  a.article-documents-link > svg.article-icon-download {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 666px) {
  a.article-documents-link > svg.article-icon-download {
    width: 24px;
    height: 24px;
  }
}

.article-bottom-text {
  padding: 0 130px;
  margin: 60px 0 130px;
}
@media only screen and (max-width: 1500px) {
  .article-bottom-text {
    padding: 0 60px;
    margin: 50px 0 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .article-bottom-text {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 666px) {
  .article-bottom-text {
    padding: 0 15px;
    margin: 30px 0 50px;
  }
}
.article-bottom-text a {
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  color: #014dab;
}
@media only screen and (max-width: 1500px) {
  .article-bottom-text a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .article-bottom-text a {
    font-size: 14px;
  }
}

.article-signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .article-signature {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .article-signature {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.article-signature p.article-author {
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%; /* 27px */
  color: #5e5e5e;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}
@media only screen and (max-width: 666px) {
  .article-signature p.article-author {
    font-size: 16px;
  }
}
.article-signature .article-signature-social {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1024px) {
  .article-signature .article-signature-social {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .article-signature .article-signature-social {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.article-signature .article-signature-social span {
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  color: #5e5e5e;
}
@media only screen and (max-width: 666px) {
  .article-signature .article-signature-social span {
    font-size: 16px;
  }
}
.article-signature .article-signature-social-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
}
.article-signature .article-signature-social-item {
  padding: 0;
  margin: 0;
}
.article-signature .article-signature-social-item::before {
  display: none;
}
.article-signature .article-signature-social-item img {
  margin: 0;
  width: 32px;
  height: 32px;
}

.article-tags-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .article-tags-wrapper {
    margin-bottom: 30px;
    gap: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .article-tags-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.article-tags-wrapper .article-tags-title {
  color: #000;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  white-space: nowrap;
}
.article-tags-wrapper .article-tags {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.article-tags-wrapper .article-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: none;
  color: var(--blue, #014dab);
  margin: 5px;
  padding: 8px 17.5px;
  border-radius: 40px;
  border: 1px solid var(--blue, #014dab);
  min-width: 65px;
  background-color: transparent;
  transition: all 250ms ease;
}
.article-tags-wrapper .article-tag:hover {
  background-color: rgba(1, 77, 171, 0.08);
}

.vacancies-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 20;
  display: none;
}
.vacancies-popup.show {
  display: block;
}

.vacancies-popup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.vacancies-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 80px;
  border-radius: 10px;
  background: #fff;
  width: 1020px;
  min-height: 620px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-popup-content {
    padding: 50px;
    width: 739px;
    min-height: 539px;
  }
}
@media only screen and (max-width: 1024px) {
  .vacancies-popup-content {
    width: 707px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-popup-content {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0px;
    padding: 30px 15px;
  }
}

.vacancies-popup-close {
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-bottom: 30px;
  cursor: pointer;
}
@media only screen and (max-width: 666px) {
  .vacancies-popup-close {
    margin-bottom: 20px;
    width: 20px;
    height: 20px;
  }
}
.vacancies-popup-close svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 100ms linear;
}
.vacancies-popup-close:hover svg {
  transform: scale(1.2);
}

.vacancies-popup-title {
  font-family: IBM Plex Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-popup-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-popup-title {
    font-size: 16px;
  }
}

.vacancies-form-field-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vacancies-form-field {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field {
    margin-bottom: 20px;
  }
}
.vacancies-form-field input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
  padding: 20px 25px;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field input {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field input {
    padding: 15px;
    font-size: 14px;
  }
}
.vacancies-form-field input::-moz-placeholder {
  color: #707b88;
}
.vacancies-form-field input::placeholder {
  color: #707b88;
}
.vacancies-form-field input:focus {
  border: 1px solid #1d70d8;
}
.vacancies-form-field input:focus::-moz-placeholder {
  opacity: 0;
}
.vacancies-form-field input:focus::placeholder {
  opacity: 0;
}
.vacancies-form-field textarea {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  border: 1px solid #d5dfec;
  background: #fff;
  padding: 20px 25px;
  color: #000;
  font-family: IBM Plex Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  resize: none;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field textarea {
    padding: 17px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field textarea {
    padding: 15px;
    font-size: 14px;
  }
}
.vacancies-form-field textarea::-moz-placeholder {
  color: #707b88;
}
.vacancies-form-field textarea::placeholder {
  color: #707b88;
}
.vacancies-form-field.half {
  width: 48%;
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field.half {
    width: 100%;
  }
}
.vacancies-form-field.error input {
  border: 1px solid #b90c2f;
}
.vacancies-form-field.error .vacancies-error-text {
  display: block;
}
.vacancies-form-field.error .vacancies-error-icon {
  display: block;
}

.vacancies-error-text {
  position: absolute;
  bottom: -19px;
  left: 0;
  color: #b90c2f;
  font-family: IBM Plex Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  display: none;
}

.vacancies-error-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: none;
}

.vacancies-form-field-file {
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #edf2f9;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field-file {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field-file {
    padding-bottom: 18px;
  }
}
.vacancies-form-field-file span {
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field-file span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field-file span {
    font-size: 14px;
  }
}
.vacancies-form-field-file label {
  display: flex;
  align-items: center;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--blue, #014dab);
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field-file label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field-file label {
    font-size: 14px;
  }
}
.vacancies-form-field-file label img {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field-file label img {
    width: 22px;
    height: 22px;
  }
}
.vacancies-form-field-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  position: absolute;
  z-index: -10;
}
.vacancies-form-field-file .vacancies-form-field-file-img {
  margin-right: 10px;
}
.vacancies-form-field-file span.vacancies-error-text {
  position: static;
  font-family: IBM Plex Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #b90c2f;
}
.vacancies-form-field-file.error .vacancies-error-text {
  display: block;
}

.vacancies-form-field-file-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}

.vacancies-form-field-file-selected {
  align-items: center;
  display: none;
}
.vacancies-form-field-file-selected .vacancies-form-selected-file {
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--blue, #014dab);
  margin-right: 10px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-field-file-selected .vacancies-form-selected-file {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-field-file-selected .vacancies-form-selected-file {
    font-size: 14px;
  }
}
.vacancies-form-field-file-selected img {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.vacancies-form-field-file-selected.show {
  display: flex;
}

.vacancies-form-submit {
  padding: 15px 60px;
  border-radius: 50px;
  background: var(--blue, #014dab);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: IBM Plex Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-submit {
    padding: 11px 50px;
    border-radius: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-submit {
    width: 100%;
    padding: 11px 30px;
  }
}
.vacancies-form-submit svg {
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 20px;
}
@media only screen and (max-width: 1500px) {
  .vacancies-form-submit svg {
    width: 12px;
    height: 12px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .vacancies-form-submit svg {
    width: 10px;
    height: 10px;
  }
}
.vacancies-form-submit:hover {
  background: #1d70d8;
}

html,
body {
  font-family: IBM Plex Sans;
  font-weight: 400;
}

html {
  background: #f6f7fa;
}
html.is-hidden {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}
/*# sourceMappingURL=main.css.map */
