:root {
  --color-text: #484848;
  --color-primary: #61C13B;
  --color-on-primary: #351d4a;
  --color-secondary: #394754;
  --color-background: #27272c;
  --color-on-background: #c5c5ce;
  --color-background-alt: #1e1c22;
  --color-background-alt-alpha: #1e1c22bf;
  --color-inverse: #fff;
  --color-gray: #e6e6e6;
  --color-darkgray: #7f7f7f;
  --color-yellow: #dedf40;
  --color-green: #62cb5c;
  --color-blue: #00bbcb;
  --color-on-blue: #004a09;
  --gradient: var(--color-secondary) 10%, var(--color-yellow) 25%, var(--color-green) 50%, var(--color-blue) 75%, var(--color-primary) 90%;
  --brand-font: "Kanit", serif;
  --brand-font-weight: 800;
  --brand-font-alt: "Baloo 2", system-ui, sans-serif;
  --brand-font-alt-weight: normal;
  --brand-font-alt-weight-bold: 500;

  --types-list-item: 24px;

  --layout-column-min: 360px;
  --layout-grid-gap: 3vmax;
}

.hrblog2 .container {
  max-width: 1200px;
}

.hrblog2-header__block {
  position: relative;
  padding-right: 300px;
}

.hrblog2-search {
  position: absolute;
  top: 12px;
  right: 0;
}

.hrblog2-search__input {
  height: 38px;
  border-radius: 20px;
  border: 2px solid #E5E5E5;
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  color: #000;
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.hrblog2-search__input:focus {
  outline: none !important;
}

.hrblog2-search__icon {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 13.5L10 10' stroke='black'/%3E%3Ccircle cx='6' cy='6' r='5.5' stroke='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 14px auto;
  background-repeat: no-repeat;
}

.hrblog2-search__icon input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.hrblog2-search__icon:hover {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 13.5L10 10' stroke='white'/%3E%3Ccircle cx='6' cy='6' r='5.5' stroke='white'/%3E%3C/svg%3E%0A");
}

.hrblog2-search.open .hrblog2-search__input {
  opacity: 1;
  pointer-events: auto;
}

.hrblog2-search.open .hrblog2-search__icon input {
  pointer-events: auto;
}

.hrblog2-header__breadcrumbs {
  padding: 22px 0;
  font-size: 14px;
}

.hrblog2-header__breadcrumbs .breadcrumbs-list {
  gap: unset;
}

.hrblog2-header__breadcrumbs .breadcrumbs {
  padding-bottom: 9px;
}

.hrblog2-header__breadcrumbs .breadcrumbs-item {
  display: flex;
  align-items: center;
}

.hrblog2-header__breadcrumbs .breadcrumbs-item a {
  color: var(--color-primary);
}

.hrblog2-header__breadcrumbs .breadcrumbs-item+.breadcrumbs-item:before {
  content: '';
  display: inline-block;
  position: relative;
  width: 8px;
  min-width: 8px;
  height: 12px;
  margin: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 6.2381L1 11' stroke='black' stroke-width='0.5'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  opacity: 1;
  transform: none;
}

.hrblog2-header__title h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: normal;
  color: #393A3C;
  padding: 5px 0;
}

.hrblog2-header__text {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: normal;
  color: #383838;
}

.hrblog2-header__title+.hrblog2-header__text {
  margin-top: 10px;
}

.hrblog2-filters {
  margin-top: 60px;
  display: none;
}

.hrblog2-filters__main {
  display: flex;
  align-items: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: normal;
  color: #4F5052;
}

.hrblog2-filters__main div {
  padding: 0 24px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.hrblog2-filters__main div:hover {
  color: var(--color-primary);
}

.hrblog2-filters__main div:first-child {
  padding-left: 0;
}

.hrblog2-filters__main div::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2px;
  height: 30px;
  background: #ccc;
}

.hrblog2-filters__main div:last-child {
  padding-right: 0;
}

.hrblog2-filters__main div:last-child::after {
  display: none;
}

.hrblog2-filters__main div.active {
  font-weight: 500;
}

.hrblog2-filters__main+.hrblog2-filters__theme {
  margin-top: 58px;
}

.hrblog2-filters__theme {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: normal;
}

.hrblog2-filters__theme-item {
  height: 42px;
  padding: 0 20px;
  border-radius: 21px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  background: #E6E6E6;
  color: #000;
  margin: 10px 10px 0 0;
  cursor: pointer;
  user-select: none;
}

.hrblog2-filters__theme-item:hover {
  background: var(--color-primary);
  color: #fff;
}

.hrblog2-filters__theme-item.active {
  background: #394754;
  color: #fff;
}

.hrblog2-filters__theme-clear {
  flex: 1;
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: normal;
  color: #969696;
  cursor: pointer;
  margin: 10px 0 0 0;
}

.hrblog2-filters__theme-clear:hover {
  color: var(--color-primary);
}

.hrblog2-articles {
  margin-top: 17px;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
}

.hrblog2-articles:not(show) {
  min-height: 100vh;
}

.hrblog2-articles.show {
  opacity: 1;
}

.hrblog2-articles__section {
  display: none;
}

.hrblog2-articles__section.active {
  display: block;
}

.hrblog2-articles__content {
  display: flex;
  flex-wrap: wrap;
}

.hrblog2-articles__item {
  line-height: 1.375;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: normal;
  overflow: hidden;
  position: relative;
  width: 30.9%;
  margin-right: 3.65%;
  margin-top: 45px;
  color: #484848;
  outline: none;
  user-select: none;
  display: flex;
  flex-direction: column;
}

.hrblog2-articles__item.hidden {
  display: none;
}

.hrblog2-articles__item.last {
  width: 100%;
  flex-direction: row;
  min-height: 417px;
}

.hrblog2-articles__item.last .hrblog2-articles__item-photo {
  width: 48.61%;
  height: 100%;
}

.hrblog2-articles__item.last .hrblog2-articles__item-content {
  padding: 33px 58px 40px 33px;
}

.hrblog2-articles__item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 24px;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  width: fit-content;
}

.hrblog2-articles__item.last .hrblog2-articles__item-theme {
  position: absolute;
  right: 33px;
  top: 33px;
}

.hrblog2-articles__item.last .hrblog2-articles__item-title {
  font-size: 30px;
  line-height: 1.06;
  max-height: 100px;
}

.hrblog2-articles__item-label+.hrblog2-articles__item-title {
  margin-top: 33px;
}

.hrblog2-articles__item.last .hrblog2-articles__item-text {
  font-size: 16px;
  line-height: 1.5;
}

/* .hrblog2-articles:not(.notopitem) .hrblog2-articles__item:nth-child(3n+1) {
  margin-right: 0;
} */

/* .hrblog2-articles.notopitem .hrblog2-articles__item:nth-child(3n) {
  margin-right: 0;
} */

.hrblog2-articles .hrblog2-articles__item:nth-child(3n) {
  margin-right: 0;
}


.hrblog2-articles__item:hover {
  text-decoration: none;
}

.hrblog2-articles__item:hover .hrblog2-articles__item-title {
  color: #61c13a;
}

.hrblog2-articles__item-photo {
  height: 200px;
  /* height: 230px; */
  overflow: hidden;
}

.hrblog2-articles__item-photo picture {
  display: block;
  height: 100%;
}

.hrblog2-articles__item-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(.02, .74, .29, .64);
}

.hrblog2-articles__item:hover .hrblog2-articles__item-photo img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.hrblog2-articles__item-content {
  padding: 25px 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hrblog2-articles__item-theme {
  color: #7F7F7F;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 300;
  text-transform: lowercase;
}

.hrblog2-articles__item-theme span {
  display: inline-block;
  white-space: nowrap;
  margin-right: 5px;
  /* cursor: pointer; */
}

/* .hrblog2-articles__item-theme span:hover{
  color: var(--color-primary);
} */
.hrblog2-articles__item-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  color: #484848;
  transition-timing-function: linear;
  transition-duration: .3s;
  transition-property: color, background, opacity, border, visibility, box-shadow;
  max-height: 72px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hrblog2-articles__item-theme+.hrblog2-articles__item-title {
  margin-top: 33px;
}

.hrblog2-articles__item-text {
  margin-top: 20px;
  color: #484848;
}

.hrblog2-articles__item-info {
  margin-top: 20px;
  color: #7F7F7F;
  font-size: 14px;
  display: flex;
  align-items: flex-end;
  flex: 1;
}

.hrblog2-articles__item-info span::before {
  content: '•';
  display: inline-block;
  width: 25px;
  text-align: center;
}

.hrblog2-articles__item-info span:first-child::before {
  display: none;
}

.hrblog2-articles__notfound {
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: normal;
  padding: 50px 0;
}

.hrblog2-nav {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 29px;
}

.hrblog2-nav__item {
  min-width: 48px;
  padding: 10px 15px;
  height: 56px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
  text-decoration: none;
  color: #484848;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.hrblog2-nav__next a,
.hrblog2-nav__previous a {
  line-height: 1;
  display: flex;
  min-width: 56px;
  height: 56px;
  color: #61c13a;
  border-radius: 5px;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s linear;
}

.hrblog2-nav__item a {
  color: #bababa;
}

.hrblog2-nav__item.is-active a {
  color: var(--color-primary) !important;
}

.hrblog2-nav__item:not(.is-active) {
  cursor: pointer;
}

.hrblog2-nav__previous a {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='21' viewBox='0 0 14 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19L2 10.0952L12 2' stroke='%2361C13A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 12px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.hrblog2-nav__next a {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='21' viewBox='0 0 14 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L12 10.9048L2 19' stroke='%2361C13A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 12px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.hrblog2-nav__item:not(.is-active):not(.hrblog2-nav__previous):not(.hrblog2-nav__next):hover {
  text-decoration: underline;
}

.hrblog2-nav__item--ellipsis a,
.hrblog2-nav__item--ellipsis {
  color: #000 !important;
  cursor: default !important;
}

.hrblog2-nav__item.hidden {
  display: none !important;
}

.hrblog2-more {
  background-color: #f6f6f6;
  text-align: center;
  padding: 46px 0;
  margin-top: 33px;
}

.hrblog2-more__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hrblog2-more h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
  color: #000;
  margin: 0 !important;
  padding: 0 0 27px;
}

.hrblog2-more a {
  background-color: #fff;
  text-decoration: none;
  color: #000;
  padding: 0 20px;
  height: 58px;
  border: 2px solid #000;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 21px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
}

.hrblog2-more a::after {
  content: '';
  display: block;
  width: 12px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='20' viewBox='0 0 12 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1L10.5 10.36L1.5 19' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}

.hrblog2-more a:last-child {
  margin-bottom: 0;
}

.hrblog2-articles__arrow {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 63px;
  height: 63px;
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='21' viewBox='0 0 39 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 20L20.24 2L38 20' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: center 45%;
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-color: #F2F2F2;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 675px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.hrblog2-articles__arrow.show {
  opacity: 1;
  pointer-events: auto;
}

.hrblog2-articles__arrow:hover {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='21' viewBox='0 0 39 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 20L20.24 2L38 20' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1500px) {
  .hrblog2-articles__arrow {
    margin-left: 605px;
  }
}

@media (max-width: 1340px) {
  .hrblog2-articles__arrow {
    display: none;
  }
}

@media (max-width: 812px) {
  .hrblog2-articles__item {
    width: calc(50% - 40px);
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .hrblog2-articles__content {
    margin-left: -20px;
    margin-right: -20px;
  }

  .hrblog2-filters__theme-item {
    height: 34px;
    padding: 0 12px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hrblog2-header__title h1 {
    font-size: 35px;
    line-height: 1;
    letter-spacing: -0.02em;
    padding: 0;
  }

  .hrblog2-header__title+.hrblog2-header__text {
    margin-top: 14px;
    letter-spacing: -0.025em;
  }

  .hrblog2-filters__main {
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .hrblog2-filters__main div {
    padding: 0 14px;
  }

  .hrblog2-filters__main div::after {
    height: 20px;
  }

  .hrblog2-filters {
    margin-top: 30px;
  }

  .hrblog2-articles {
    margin-top: 0;
  }

  .hrblog2-articles__item {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 40px !important;
    font-size: 17px;
    line-height: 1.5;
  }

  .hrblog2-articles__content {
    margin-left: 0;
    margin-right: 0;
  }

  .hrblog2-articles__item-title,
  .hrblog2-articles__item.last .hrblog2-articles__item-title {
    font-size: 20px;
    line-height: 1.2;
    max-height: 72px;
  }

  .hrblog2-articles__item-label+.hrblog2-articles__item-title {
    margin-top: 18px;
  }

  .hrblog2-articles__item-content,
  .hrblog2-articles__item.last .hrblog2-articles__item-content {
    padding: 23px 16px;
  }

  .hrblog2-articles__item-text {
    margin-top: 25px;
  }

  .hrblog2-articles__item-info {
    margin-top: 25px;
    font-size: 15px;
  }

  .hrblog2-articles__item-theme {
    font-size: 16px;
  }

  .hrblog2-articles__item.last {
    min-height: unset;
    flex-direction: column;
  }

  .hrblog2-articles__item.last .hrblog2-articles__item-photo {
    width: 100%;
    height: 100%;
  }

  .hrblog2-articles__item.last .hrblog2-articles__item-theme {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 16px;
  }

  .hrblog2-articles__item.last .hrblog2-articles__item-content::before {
    padding: 15px 24px;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 16px;
  }

  .hrblog2-nav {
    flex-wrap: wrap;
  }

  .hrblog2-nav__item {
    min-width: unset;
    padding: 10px 12px;
  }

  .hrblog2-nav__next a,
  .hrblog2-nav__previous a {
    min-width: 16px;
  }

  .hrblog2-header__block {
    padding-right: 0;
  }

  .hrblog2-search {
    position: relative;
    top: 0;
    margin-top: 40px;
  }

  .hrblog2-search__input {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  .hrblog2-search__icon input {
    pointer-events: auto;
  }
}
/* --------------------------------------------------------- */
.breadcrumbs {
  padding: 0 0 2rem;
}

.breadcrumbs-list {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0 !important;
  max-width: 100%;
  overflow: hidden;
  list-style-type: none;
}

.container.blog .breadcrumbs-list>li {
  list-style-type: none;
}

.breadcrumbs-list:after {
  content: '';
  display: block;
  position: absolute;
  width: 3rem;
  height: 3rem;
  right: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25253851540616246) 13%, rgba(255, 255, 255, 0.6979166666666667) 29%, rgba(255, 255, 255, 0.8463760504201681) 48%, rgba(255, 255, 255, 0.8995973389355743) 65%, rgba(255, 255, 255, 1) 83%);
}

.breadcrumbs-item {
  list-style-type: none;
  margin: 0;
  white-space: nowrap;
}

.breadcrumbs-item span[itemprop="name"] {
  overflow: visible;
  height: auto;
  display: inline;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs-item>span[itemprop="name"] {
  color: #393A3C;
}

.breadcrumbs-item+.breadcrumbs-item:before {
  content: '';
  font-size: xx-small;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 6.2381L1 11' stroke='black' stroke-width='0.5'/%3E%3C/svg%3E%0A");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  opacity: 1;
}

.breadcrumbs-link {
  color: #61c13a !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.breadcrumbs-link:hover {
  color: var(--c-link);
  text-decoration: none;
}

.breadcrumbs-link>span[itemprop="name"] {
  color: #61c13a;
  font-size: 14px;
}

.breadcrumbs-item span[itemprop="name"] br {
  display: none;
}

@media (min-width: 841px) {

  .breadcrumbs-links-contacts,
  .breadcrumbs-links-metodika {
    cursor: pointer;
  }

  .breadcrumbs-links-contacts>span[itemprop="name"],
  .breadcrumbs-links-metodika>span[itemprop="name"] {
    color: #61c13a;
  }
}

@media (max-width: 575px) {
  .breadcrumbs {
    padding: 1.5rem 0 1rem;
  }

  .breadcrumbs-list {
    gap: 0.5rem;
  }

  .breadcrumbs-item {
    display: inline-flex;
    align-items: flex-start;
  }

  .breadcrumbs-item+.breadcrumbs-item:before {
    transform: translate(-3px, -3px);
  }

  .breadcrumbs-item>span[itemprop="name"] {
    transform: translate(2px, 1px);
  }

  .breadcrumbs-item:last-child {
    display: none;
  }
}
