/* @font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
} */

@font-face {
  font-family: 'Roboto Condensed';

  src: url('../fonts/RobotoCondensed.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto Condensed';

  src: url('../fonts/RobotoCondensed-Italic.ttf') format('truetype');

  font-style: italic;
}

@font-face {
  font-family: 'Inter';

  src: url('../fonts/Inter.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';

  src: url('../fonts/Inter-Italic.ttf') format('truetype');

  font-style: italic;
}

header {
  position: relative;
}

header > div {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  header > div {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  header > div {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* Меню */

.menu-container_burger {
  display: block;
}

@media (min-width: 1024px) {
  .menu-container_burger {
    display: none;
  }
}

.menu-container_burger .close {
  display: none;
}

.menu-container_burger.active .open {
  display: none;
}

.menu-container_burger.active .close {
  display: block;
}

.menu-container__tg {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.menu-container__tg:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
}

@media not all and (min-width: 1024px) {
  .menu-container__tg {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}

@media (min-width: 768px) {
  .menu-container__tg {
    height: 2rem;
    width: 2rem;
  }
}

.menu-container__tg svg {
  fill: #1F252E;
}

.menu-container__tg:hover svg {
  fill: #fff;
}

.menu-container__flex-logo {
  display: flex;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .menu-container__flex-logo img {
    width: 220px;
  }
}

header .menu-container__flex-logo-text {
  display: none;
  max-width: 310px;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1rem;
}

@media (min-width: 1536px) {
  header .menu-container__flex-logo-text {
    display: flex;
  }
}

header .marking {
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.menu-container__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media not all and (min-width: 1024px) {
  .menu-container__flex {
    height: 52px;
  }
}

/* Меню */

.menu-container__flex-menu-container {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .menu-container__flex-menu-container {
    display: flex;
  }
}

.menu-container__flex-menu-container .search-container {
  display: block;
}

@media (min-width: 1024px) {
  .menu-container__flex-menu-container .search-container {
    display: none;
  }
}

.menu-container__flex-menu a {
  display: block;
  white-space: nowrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.menu-container__flex-menu a:hover {
  --tw-text-opacity: 1;
  color: rgb(3 102 201 / var(--tw-text-opacity, 1));
}

.menu-container__flex-menu a:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 1024px) {
  .menu-container__flex-menu a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.menu-container__flex-menu-container .primary-menu {
  display: flex;
  gap: 0.5rem;
}

/* Мобильное меню */

@media (max-width: 1024px) {
  .menu-container__flex-menu-container{
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 110px);
    justify-content: flex-start;
    padding: 16px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .primary-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media not all and (min-width: 1024px) {
    .primary-menu {
      margin-bottom: 1rem;
    }
  }

  .menu-container__flex-menu-container>div {
    width: 100%;
  }

  .menu-container__flex-menu-container.active {
    display: flex;
  }
}

/* Поиск */

.search-container {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  display: none;
}

@media (min-width: 1024px) {
  .search-container {
    display: block;
  }
}

.search-container form {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid #D2D7DF;
  box-shadow: 0px 8px 32px -4px #676F7B1A;
  border-radius: 8px;
  padding: 6px 6px 6px 14px;
}

.search-container svg {
  height: 18px;
  min-height: 18px;
  width: 18px;
  min-width: 18px;
}

.search-container form input {
  height: 48px;
  width: 100% !important;
  border-style: none !important;
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.search-container button {
  display: flex;
  height: 3rem;
  min-height: 3rem;
  width: 3rem;
  min-width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.search-container button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 102 201 / var(--tw-bg-opacity, 1));
}

.search-container button:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.menu-container__flex-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1294px;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE и Edge */
}

.news-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari и Opera */
}

/* Страницы новостей*/

.news-single_hero {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-single_hero p {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(155 163 174 / var(--tw-text-opacity, 1));
}

.news-single_hero-tags {
  display: flex;
  gap: 0.25rem;
}

.news-single_hero-tags a {
  border-radius: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.new-tags {
  display: flex;
  gap: 0.75rem;
}

.new-tags li {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  --tw-text-opacity: 1;
  color: rgb(155 163 174 / var(--tw-text-opacity, 1));
}

.news-single-h1 {
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .news-single-h1 {
    font-family: Roboto Condensed, sans-serif;
  }
}

@media (min-width: 1024px) {
  .news-single-h1 {
    margin-bottom: 2rem;
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
  }
}

/* Страница новостей - контент */

.news-single_content {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .news-single_content {
    margin-bottom: 2rem;
  }
}

.news-single_content img {
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-main-image {
  height: 150px;
}

@media (min-width: 640px) {
  .news-main-image {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .news-main-image {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .news-main-image {
    height: 450px;
  }
}

@media (min-width: 1280px) {
  .news-main-image {
    height: 600px;
  }
}

.news-container hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
}

@media (min-width: 1024px) {
  .news-container hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.news-single_content-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 16px;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-single_content-text a {
  text-decoration-line: underline;
  text-underline-offset: 4px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.news-single_content-text a:hover {
  --tw-text-opacity: 1;
  color: rgb(3 102 201 / var(--tw-text-opacity, 1));
}

/*Страница новостей - Автор */

.news-single_author {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  max-width: 1038px;
  gap: 1.5rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media not all and (min-width: 1024px) {
  .news-single_author {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .news-single_author {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.news-single_author-info {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
  padding-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .news-single_author-info {
    width: 30%;
    border-bottom-width: 0px;
    border-right-width: 1px;
    padding-bottom: 2rem;
  }
}

.news-single_author-info > p:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-single_author-info > p:last-child {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-single_author-text {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .news-single_author-text {
    width: 70%;
  }
}

.news-single_content-margin {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .news-single_content-margin {
    margin-bottom: 2rem;
  }
}

/* Страница новостей - изображение */

.news-single_content-img img {
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-single_content-img {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .news-single_content-img {
    margin-bottom: 2rem;
  }
}

.news-single_content-text-img {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .news-single_content-text-img {
    margin-bottom: 2rem;
  }
}

.news-single_content-text-img p {
  font-size: 16px;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-single_content-text-img p a {
  text-decoration-line: underline;
}

/* Страница новостей - ссылка на мессенджер */

.news-single_content-share {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media not all and (min-width: 768px) {
  .news-single_content-share {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .news-single_content-share {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .news-single_content-share {
    margin-bottom: 2rem;
  }
}

.news-single_content-share p {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 150%;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.news-single_content-share-icons {
  display: flex;
  gap: 1rem;
}

.news-single_content-share-icons svg {
  height: 1rem;
  width: 1rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}

/* Таблица */

.news-container-table {
  overflow-x: auto;
}

.news-single_content-table {
  margin-bottom: 1.5rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  .news-single_content-table {
    margin-bottom: 2rem;
  }
}

.news-single_content-table h2 {
  display: block;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.news-single_content-table > div {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.5rem;
}

.news-single_content-table table {
  width: 100%;
}

.news-single_content-table thead {
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.news-single_content-table thead th {
  font-weight: 400;
}

.news-single_content-table tbody {
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-single_content-table th,
.news-single_content-table td {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.news-single_content-table th:first-child,
.news-single_content-table td:first-child {
  padding-left: 0px;
}

.news-single_content-table th:last-child,
.news-single_content-table td:last-child {
  padding-right: 0px;
}

.news-single_content-table td {
  position: relative;
  min-width: 160px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
  padding-top: 18px;
  padding-bottom: 18px;
}

@media (min-width: 1024px) {
  .news-single_content-table td {
    padding-top: 27px;
    padding-bottom: 27px;
  }
}

.news-single_content-table tr:last-child td {
  border-bottom-width: 0px;
}

.news-single_content-table td:not(:last-child):after {
  position: absolute;
  right: 0px;
  top: 1rem;
  height: calc(100% - 32px);
  width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}

/* Кастомный скроллбар */

.scroll-indicator {
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 2rem;
  margin-top: -0.5rem;
  height: 6px;
  overflow: hidden;
  max-width: calc(100% - 32px);
}

.scroll-indicator__track {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
}

.scroll-indicator__thumb {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 182 241 / var(--tw-bg-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

/* Вам также может быть интересно */

.news-container_related {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: flex;
  max-width: 780px;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .news-container_related {
    margin-bottom: 120px;
  }
}

.news-container_related h2 {
  padding-top: 60px;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

@media (min-width: 1024px) {
  .news-container_related h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

.news-container_related-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-container_related-items {
    gap: 1.5rem;
  }
}

.news-container_related-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media not all and (min-width: 768px) {
  .news-container_related-item {
    flex-direction: column;
  }
}

.news-container_related-item-img {
  width: 100%;
}

@media (min-width: 768px) {
  .news-container_related-item-img {
    width: 30%;
  }
}

.news-container_related-item img {
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-container_related-item-info {
  display: flex;
  width: 70%;
  flex-direction: column;
  gap: 0.25rem;
}

.news-container_related-item-info p {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(155 163 174 / var(--tw-text-opacity, 1));
}

.news-container_related-item-tags {
  display: flex;
  gap: 0.25rem;
}

.news-container_related-item-tags a {
  border-radius: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.news-container_related-item-tags-list {
  display: flex;
  gap: 0.75rem;
}

.news-container_related-item-tags-list li {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(155 163 174 / var(--tw-text-opacity, 1));
}

.news-container_related-title {
  padding: 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.news-container_related-item-info-flex {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Страница Новости - Архив */

.posts-group {
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
}

.posts-group:last-child {
  margin-bottom: 0px !important;
  border-bottom-width: 0px;
}

@media (min-width: 768px) {
  .posts-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .posts-group {
    grid-template-rows: repeat(4, minmax(0, 1fr));
    border-bottom-width: 1px;
    padding-bottom: 40px;
  }
}

.archive-news_post {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
}

@media not all and (min-width: 1024px) {
  .archive-news_post {
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .archive-news_post {
    flex-direction: row;
    border-bottom-width: 0px;
  }
}

.archive-news_post-date {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.archive-news_post-custom-tags {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.archive-news_post-tags .archive-news_post-tag {
  border-radius: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.archive-news_post-custom-tag {
  display: flex;
  gap: 0.75rem;
}

span.archive-news_post-custom-tag {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

a.archive-news_post-title {
  margin-top: 0.75rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 200ms !important;
}

a.archive-news_post-title:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(3 102 201 / var(--tw-text-opacity, 1)) !important;
}

.archive-news_post-image {
  display: block;
  aspect-ratio: 16/10;
  height: 100%;
  min-height: 150px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

@media (min-width: 768px) {
  .archive-news_post-image {
    height: 150px;
  }
}

.archive-news_post-image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/*  */

.posts-group:nth-child(odd) .archive-news_post:first-child,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .posts-group:nth-child(odd) .archive-news_post:first-child,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) {
    grid-row: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .posts-group:nth-child(odd) .archive-news_post:first-child,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) {
    grid-row: span 4 / span 4;
  }

  .posts-group:nth-child(odd) .archive-news_post:first-child .archive-news_post-image,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) .archive-news_post-image {
    height: 100%;
    width: 100%;
  }
}

.posts-group:nth-child(odd) .archive-news_post:first-child a.archive-news_post-title,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) a.archive-news_post-title {
  margin-top: 0.75rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .posts-group:nth-child(odd) .archive-news_post:first-child a.archive-news_post-title,
.posts-group:nth-child(even) .archive-news_post:nth-child(2) a.archive-news_post-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.news-single_content-text h2 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.news-single_content-text h3 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.news-single_content-text h4 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.news-single_content-text h5 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.footer {
  position: relative;
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
}

.footer_scrol {
  position: absolute;
  top: 0px;
  right: 19px;
  z-index: 10;
  display: flex;
  height: 3rem;
  width: 3rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 182 241 / var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.footer_scrol:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 1024px) {
  .footer_scrol {
    right: 90px;
  }

  .footer_scrol:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  }
}

.footer div {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.footer a {
  font-size: 12px;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Лого */

.footer__logo {
  display: flex;
}

footer.footer .marking {
  --tw-text-opacity: 1;
  color: rgb(210 215 223 / var(--tw-text-opacity, 1));
  opacity: 0.5;
}

footer a.menu-container__flex-logo {
  display: flex;
  gap: 1rem;
}

@media not all and (min-width: 1024px) {
  footer a.menu-container__flex-logo {
    flex-direction: column;
  }
}

footer .menu-container__flex-logo-text {
  display: flex;
  max-width: 310px;
  flex-direction: column;
  justify-content: space-between;
}

footer img {
  width: 180px;
}

/* Меню */

.footer__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 2rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 72px;
  padding-bottom: 48px;
}

@media not all and (min-width: 1024px) {
  .footer__container {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer__container {
    padding-top: 64px;
  }
}

.footer__menu {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

@media not all and (min-width: 1024px) {
  .footer__menu {
    flex-direction: column;
  }
}

.footer__container .footer__menu a {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 1024px) {
  .footer__container .footer__menu a {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

/* Кнопка */

.footer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  transition-duration: 150ms;
}

.footer__button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 102 201 / var(--tw-bg-opacity, 1));
}

@media not all and (min-width: 1024px) {
  .footer__button {
    width: 100%;
  }
}

.footer__button span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

/* Информация */

.footer__copyright a {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

@media (min-width: 1024px) {
  .footer__copyright a {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .footer__copyright {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.footer_info p {
  font-size: 14px;
  line-height: 18px;
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .footer_info {
    gap: 0.75rem;
  }
}

.digest-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1294px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.digest-tags > li::before {
  --tw-content: '#';
  content: var(--tw-content);
}

/* HERO */

.digest-single_hero {
  display: flex;
  gap: 1.5rem;
}

@media not all and (min-width: 1024px) {
  .digest-single_hero {
    flex-direction: column;
  }
}

.digest-single_hero > img {
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.digest-single_hero .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.digest-single_hero h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .digest-single_hero h1 {
    font-family: Roboto Condensed, sans-serif;
    font-size: 36px;
    font-weight: 600;
  }
}

.digest-single_hero .digest-info li {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.digest-single_hero .digest-info .digest-info-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.digest-single_hero .digest-info li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.digest-tags {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 0.25rem;
}

.digest-single_hero hr {
  height: 1px;
  width: 100%;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
}

.digest-tags > li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.digest-single_hero.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

/* Автор */

.digest-single_author {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  max-width: 1038px;
  gap: 1.5rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media not all and (min-width: 1024px) {
  .digest-single_author {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .digest-single_author {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.digest-single_author-info {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
  padding-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .digest-single_author-info {
    width: 30%;
    border-bottom-width: 0px;
    border-right-width: 1px;
    padding-bottom: 2rem;
  }
}

.digest-single_author-info > p:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.digest-single_author-info > p:last-child {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.digest-single_author-text {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .digest-single_author-text {
    width: 70%;
  }
}

/* Текст */

.digest-single_content {
  margin-bottom: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .digest-single_content {
    margin-bottom: 2rem;
  }
}

.digest-single_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.digest-single_content p {
  margin-bottom: 20px;
}

.digest-single_content p:last-child {
  margin-bottom: 0px;
}

.digest-single_content a {
  text-decoration-line: underline;
}

/* Картинка */

.digest-single_content-img {
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .digest-single_content-img {
    margin-bottom: 2rem;
  }
}

/* Аккордеон */

.digest-accordion {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .digest-accordion {
    margin-bottom: 120px;
    row-gap: 2rem;
    padding: 60px;
  }
}

.digest-accordion-item-header {
  display: flex;
  cursor: pointer;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}

.digest-accordion-item-header svg {
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.digest-accordion-item-header.active svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.digest-accordion-item-header h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

.digest-accordion-item-content {
  display: grid;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .digest-accordion-item-content {
    grid-template-columns: 15% 85%;
    gap: 0.5rem;
  }
}

.digest-info-labels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.digest-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.digest-accordion-item-content .digest-info-labels span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

/* NikPl7 */

.digest_accordion-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.digest_accordion-item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.25rem;
}

@media not all and (min-width: 768px) {
  .digest_accordion-item {
    flex-direction: column;
  }
}

.digest_accordion-item .key {
  width: 100%;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .digest_accordion-item .key {
    width: 150px;
  }
}

.digest_accordion-item .value {
  width: 100%;
}

@media (min-width: 768px) {
  .digest_accordion-item .value {
    width: calc(100% - 158px);
  }
}

/* Заголовок */

.archive-digest_h1 {
  margin-bottom: 1.5rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .archive-digest_h1 {
    margin-bottom: 60px;
    font-size: 56px;
    line-height: 64px;
  }
}

/* Категории */

.archive-digest_categories {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
}

@media not all and (min-width: 1024px) {
  .archive-digest_categories {
    flex-wrap: nowrap;
  }
}

.archive-digest_categories a {
  white-space: nowrap;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-digest_categories a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.archive-digest_categories::-webkit-scrollbar {
  display: none;
}

.archive-digest_categories a.active {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Посты */

.digest-archive, .news-archive {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .digest-archive, .news-archive {
    margin-bottom: 4rem;
  }
}

.archive-digest_posts {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .archive-digest_posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .archive-digest_posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.archive-digest_post {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
  padding: 1rem;
}

@media (min-width: 768px) {
  .archive-digest_post {
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .archive-digest_post {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.archive-digest_post-preview {
  display: flex;
  gap: 0.75rem;
}

@media not all and (min-width: 1536px) {
  .archive-digest_post-preview {
    flex-direction: column;
  }
}

@media (min-width: 1536px) {
  .archive-digest_post-preview {
    align-items: center;
  }
}

.archive-digest_post-preview .archive-digest_post-image {
  display: block;
  height: 100px;
  width: 140px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-digest_post-preview .archive-digest_post-image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-digest_post-preview > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 500;
}

.archive-digest_post-preview > div span {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.archive-digest_post-title {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-digest_post-title:hover {
  --tw-text-opacity: 1;
  color: rgb(36 144 252 / var(--tw-text-opacity, 1));
}

.archive-digest_post-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  stroke: #00B6F1;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-digest_post-link:hover {
  stroke: #2490FC;
  --tw-text-opacity: 1;
  color: rgb(36 144 252 / var(--tw-text-opacity, 1));
}

.vacancies-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1262px;
}

.vacancies-tags > li::before {
  --tw-content: '#';
  content: var(--tw-content);
}

/* HERO */

.vacancies-single_hero {
  display: flex;
  gap: 1.5rem;
}

@media not all and (min-width: 1024px) {
  .vacancies-single_hero {
    flex-direction: column;
  }
}

.vacancies-single_hero > img {
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.vacancies-single_hero-info {
  display: flex;
  gap: 0.75rem;
}

@media not all and (min-width: 1024px) {
  .vacancies-single_hero-info {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .vacancies-single_hero-info {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.vacancies-single_hero-info .vacancies-info {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}

@media (min-width: 1024px) {
  .vacancies-single_hero-info .vacancies-info {
    width: 50%;
  }
}

.vacancies-single_hero-info img {
  height: 90px;
  width: 203px;
  border-radius: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.vacancies-single_hero .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
}

.vacancies-single_hero h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .vacancies-single_hero h1 {
    font-family: Roboto Condensed, sans-serif;
    font-size: 36px;
    font-weight: 600;
  }
}

.vacancies-single_hero .vacancies-info li {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.vacancies-single_hero .vacancies-info .vacancies-info-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.vacancies-single_hero .vacancies-info li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.vacancies-tags {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 0.25rem;
}

.vacancies-single_hero hr {
  height: 1px;
  width: 100%;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
}

.vacancies-single_hero-hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  height: 1px;
  width: 100%;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
}

@media (min-width: 1024px) {
  .vacancies-single_hero-hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.vacancies-tags > li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.vacancies-single_hero.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

/* Контент */

.vacancies-single_content {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .vacancies-single_content {
    margin-bottom: 2rem;
  }
}

.vacancies-single_content h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.vacancies-single_content ul {
  list-style-position: inside;
  list-style-type: disc;
}

.vacancies-single_content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

/* Аккордеон */

.vacancies-accordion-headliner {
  display: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .vacancies-accordion-headliner {
    display: block;
  }
}

.vacancies-accordion {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .vacancies-accordion {
    margin-top: 2rem;
    margin-bottom: 120px;
    row-gap: 2rem;
    padding: 60px;
  }
}

.vacancies-accordion-item-header {
  display: flex;
  cursor: pointer;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}

@media (min-width: 1024px) {
  .vacancies-accordion-item-header {
    display: none;
  }
}

.vacancies-accordion-item-header svg {
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.vacancies-accordion-item-header.active svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.vacancies-accordion-item-header h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

.vacancies-accordion-item-content {
  display: grid;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .vacancies-accordion-item-content {
    grid-template-columns: 15% 85%;
    gap: 0.5rem;
  }
}

.vacancies-info-labels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vacancies-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vacancies-accordion-item-content .vacancies-info-labels span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.vacancies_accordion-item .vacancies_accordion-tel {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

/* NikPl7 */

.vacancies_accordion-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vacancies_accordion-item {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.25rem;
}

@media not all and (min-width: 768px) {
  .vacancies_accordion-item {
    flex-direction: column;
  }
}

.vacancies_accordion-item .key {
  width: 100%;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .vacancies_accordion-item .key {
    width: 150px;
  }
}

.vacancies_accordion-item .value {
  width: 100%;
}

@media (min-width: 768px) {
  .vacancies_accordion-item .value {
    width: calc(100% - 158px);
  }
}

/* Заголовок */

.archive-digest_h1 {
  margin-bottom: 1.5rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .archive-digest_h1 {
    margin-bottom: 60px;
    font-size: 56px;
    line-height: 64px;
  }
}

/* Категории */

.archive-vacancies_categories {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
}

@media not all and (min-width: 1024px) {
  .archive-vacancies_categories {
    flex-wrap: nowrap;
  }
}

.archive-vacancies_categories a {
  white-space: nowrap;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-vacancies_categories a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.archive-vacancies_categories::-webkit-scrollbar {
  display: none;
}

.archive-vacancies_categories a.active {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Посты */

.archive-vacancies_post
  .archive-vacancies_post-preview
  .archive-vacancies_post-title-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.archive-vacancies_post-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.archive-vacancies_posts {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .archive-vacancies_posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .archive-vacancies_posts {
    margin-bottom: 60px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.archive-vacancies_post {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding: 1rem;
}

@media (min-width: 768px) {
  .archive-vacancies_post {
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .archive-vacancies_post {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.archive-vacancies_post-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.archive-vacancies_post-preview .archive-vacancies_post-image {
  display: block;
  height: 100px;
  width: 140px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-vacancies_post-preview .archive-vacancies_post-image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-vacancies_post-preview > div span {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.archive-vacancies_post-title {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-vacancies_post-title:hover {
  --tw-text-opacity: 1;
  color: rgb(36 144 252 / var(--tw-text-opacity, 1));
}

.archive-vacancies_post-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  stroke: #00B6F1;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.archive-vacancies_post-link:hover {
  stroke: #2490FC;
  --tw-text-opacity: 1;
  color: rgb(36 144 252 / var(--tw-text-opacity, 1));
}

.archive-vacancies_post-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

/* Пагинация */

.pagination {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .pagination {
    margin-bottom: 60px;
  }
}

.pagination__number {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.pagination__number:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

a.pagination__number.active {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
  padding: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.pagination__arrow.prev,
.pagination__arrow.next {
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 11px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.pagination__arrow.prev:hover,
.pagination__arrow.next:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.pagination__arrow.prev.disabled,
.pagination__arrow.next.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination__arrow.prev svg,
.pagination__arrow.next svg {
  fill: #1F252E;
}

.pagination__arrow.prev:hover svg,
.pagination__arrow.next:hover svg {
  fill: #fff !important;
}

/* Форма */

.archive-vacancies_form-container.section_container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1038px;
}

.form-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.form-container_form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-container_form {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.form-container_form-input,
.form-container_form-textarea {
  position: relative;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
}

@media (min-width: 768px) {
  .form-container_form-input,
.form-container_form-textarea {
    border-radius: 0.5rem;
  }
}

.form-container_form-input label,
.form-container_form-textarea label {
  position: absolute;
  top: 0px;
  left: 1rem;
  z-index: 10;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  line-height: 16px;
}

.form-container_form-input input,
.form-container_form-textarea textarea {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.form-container_form .full-width {
  grid-column: span 2 / span 2;
}

/* Костыли для формы */

.form-container_form span {
  margin: 0px;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}

.form-container_form br {
  display: none;
}

.form-container_form textarea {
  height: 3em;
}

.form-container_form span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0.25rem;
  font-size: 8px;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

@media not all and (min-width: 768px) {
  .form-container_form span.wpcf7-not-valid-tip {
    left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .form-container_form span.wpcf7-not-valid-tip {
    right: 1.5rem;
  }
}

.form-container_form .form-container_form-checkbox label input {
  display: none;
}

.form-container_form .form-container_form-checkbox label span {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-container_form .form-container_form-checkbox label span::before {
  margin-right: 0.5rem;
  display: inline-block;
  height: 10px;
  min-height: 10px;
  width: 10px;
  min-width: 10px;
  border-radius: 9999px;
  border-width: 3px;
  border-color: transparent;
  padding: 3px;
  outline-color: #1F252E;
  --tw-content: '';
  content: var(--tw-content);
  outline-offset: 3px;
  outline-width: 1px;
  outline-style: solid;
}

.form-container_form
  .form-container_form-checkbox
  label
  input:checked
  + span::before {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
}

.form-container_form .form-container_form-checkbox a {
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

/* <div class="form-container_form-file full-width">
    <label for="your-file">Прикрепить файл</label>
    [file* your-file]
  </div> */

.form-container_form .form-container_form-file {
  position: relative;
}

.form-container_form .form-container_form-file span.wpcf7-form-control-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.form-container_form
  .form-container_form-file
  span.wpcf7-form-control-wrap
  input {
  height: 100%;
  width: 100%;
  opacity: 0;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-label {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.file-upload-text {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.file-upload-icon {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

/* .file-upload-input {
  @apply absolute opacity-0 w-0 h-0 overflow-hidden;
} */

.file-upload-list {
  margin-top: 1rem;
}

.file-upload-list-header {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.file-upload-items > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.file-upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file-upload-item-name {
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.file-upload-item-remove {
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.file-upload-item-remove:hover {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

span.file-upload-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

label.file-upload-label {
  padding: 0px;
}

.form-container_form-submit-button p {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .form-container_form-submit-button p {
    max-width: 140px;
  }
}

.form-container_form-submit-button p:before {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-content: 'Отправить';
  content: var(--tw-content);
}

.form-container_form-submit-button input {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.form-container_form-submit-button span.wpcf7-spinner {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  background-color: rgb(3 102 201 / 0.5);
}

.form-container_form-submit-button span.wpcf7-spinner:before {
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.archive-vacancies_form-container {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .archive-vacancies_form-container {
    margin-bottom: 120px;
  }
}

.about_content {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .about_content {
    margin-bottom: 120px;
    gap: 2.5rem;
  }
}

.about_section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.about_h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1552px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
}

@media (min-width: 1024px) {
  .about_h1 {
    font-size: 56px;
    line-height: 64px;
  }
}

.about_block-text_image {
  display: flex;
  align-items: flex-start;
  row-gap: 16px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

@media not all and (min-width: 1024px) {
  .about_block-text_image {
    flex-direction: column;
  }
}

.about_block-text_image > * {
  width: 100%;
}

@media (min-width: 1024px) {
  .about_block-text_image > * {
    width: 50%;
    max-width: 50%;
  }
}

.about_block-text_image img {
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1024px) {
  .about_block-text_image img {
    margin-top: 7rem;
  }
}

.about_block-text_image img {
  aspect-ratio: 16/12;
}

.about_block-text_image .content {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 1024px) {
  .about_block-text_image .content {
    padding: 60px;
  }
}

.about_block-text_image .content p {
  margin-bottom: 1rem;
}

.about_content .simple_text {
  margin-left: auto;
  margin-right: auto;
  max-width: 1030px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.about_content .simple_text > div {
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 768px) {
  .about_content .simple_text > div {
    padding-left: 3rem;
  }
}

/* .about_content .about_img {
    @apply mb-6 lg:mb-[142px] w-full h-auto object-cover;
} */

/* .about_block-left-content {
    @apply lg:-mt-[102px];
}

.text-about-2 {
    @apply mb-[100px] lg:mb-[120px]; 
} */

/* 
.about_block-right {
    @apply mb-6 lg:mb-10 mt-4 lg:mt-[102px] flex flex-col gap-[16px] lg:flex-row lg:gap-[24px];
}

.about_block-right p {
    @apply text-[16px] leading-[24px] font-normal px-4 py-6 lg:p-[60px] bg-[#F5F7FA] rounded-lg;
}

.about_block-right img {
    @apply w-full h-auto object-cover;
}

.about_block-right-text {
    @apply lg:-mt-[102px];
} */

/* .about_block-left {
    @apply mb-6 lg:mb-10 mt-4 lg:mt-[102px] flex flex-col gap-[16px] lg:flex-row lg:gap-[24px];
} */

/* .about_block-left-content {
    @apply text-[16px] leading-[24px] font-normal px-4 py-6 lg:p-[60px] bg-[#F5F7FA] rounded-lg;
}

.about_block-left-content p {
    @apply mb-4;
}

.about_block-left-content img {
    @apply w-full h-auto object-cover;
}

.about_block-left-content {
    @apply lg:-mt-[102px];
}

.text-about-2 {
    @apply mb-[100px] lg:mb-[120px]; 
} */

.services_main {
  padding-bottom: 120px;
}

.services_h1 {
  margin-bottom: 1.5rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
}

@media (min-width: 1024px) {
  .services_h1 {
    margin-bottom: 2.5rem;
    font-size: 56px;
    line-height: 64px;
  }
}

.services_hero {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services_hero-item {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  gap: 0.75rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

@media (min-width: 1024px) {
  .services_hero-item:hover {
    gap: 1rem;
  }
}

.services_hero-item svg {
  min-height: 24px;
  min-width: 24px;
}

.services_hero-item span {
  font-size: 16px;
  line-height: 24px;
}

.services_hr {
  margin-top: 2.25rem;
  margin-bottom: 60px;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
}

/* Контент */

.services_content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services_content {
    flex-direction: row;
  }
}

.services_content-headline {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services_content-headline {
    width: 40%;
  }
}

.services_content-headline h2 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
}

.services_content-headline img {
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.services_content-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services_content-text {
    width: 60%;
  }
}

.services_content-text > div {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 1024px) {
  .services_content-text > div {
    padding: 60px;
  }
}

.services_content-text > div > * {
  margin-bottom: 1rem;
}

.services_content-text > div > *:last-child {
  margin-bottom: 0px;
}

.services_content-text > div > ul {
  list-style-type: disc;
  padding-left: 1rem;
}

.services_content-text > div > ul > li {
  margin-bottom: 0.5rem;
}

.services_content-text > div > ul > li:last-child {
  margin-bottom: 0px;
}

/* .services_content-text button {
    @apply max-md:w-full w-fit flex items-center gap-[6px] lg:gap-6 bg-[#2490FC] text-white px-4 py-[10px] lg:px-8 rounded-lg;
} */

.services_content-text span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.services-content_hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
}

@media (min-width: 1024px) {
  .services-content_hr {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/* Обратная сторона */

.services_content-reverse {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services_content-reverse {
    flex-direction: row-reverse;
  }
}

.services_content-last_text {
  margin-bottom: 120px;
}

.section_container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1552px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contacts_h1 {
  margin-bottom: 2.5rem;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
}

@media (min-width: 1024px) {
  .contacts_h1 {
    margin-bottom: 60px;
    font-size: 56px;
    line-height: 64px;
  }
}

.contacts_content {
  margin-bottom: 60px;
  display: flex;
  gap: 2.5rem;
}

@media not all and (min-width: 768px) {
  .contacts_content {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .contacts_content {
    margin-bottom: 120px;
    gap: 60px;
  }
}

.contacts_content-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contacts_content-item {
    width: 30%;
  }
}

.contacts_content-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts_content-item-content-phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts_content-item-content .contacts_content-item-content-phones a {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.contacts_content-item h2 {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.contacts_content-item-content p {
  font-size: 16px;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.contacts_content-item-content a {
  font-size: 16px;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

@media (min-width: 1024px) {
  .contacts_content-item-content a:hover {
    --tw-text-opacity: 1;
    color: rgb(3 102 201 / var(--tw-text-opacity, 1));
  }
}

.contacts_navigator {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(31 37 46 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.contacts_navigator img {
  height: 20px;
  width: 20px;
}

/* Форма */

.contacts_form-container {
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media not all and (min-width: 768px) {
  .contacts_form-container {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-bottom: 52px;
  }
}

@media (min-width: 768px) {
  .contacts_form-container {
    width: 70%;
    border-radius: 0.5rem;
    padding: 60px;
  }
}

.form-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.form-container_form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  row-gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-container_form {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.form-container_form-input,
  .form-container_form-textarea {
  position: relative;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
}

@media (min-width: 768px) {
  .form-container_form-input,
  .form-container_form-textarea {
    border-radius: 0.5rem;
  }
}

.form-container_form-input label,
  .form-container_form-textarea label {
  position: absolute;
  top: 0px;
  left: 1rem;
  z-index: 10;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  line-height: 16px;
}

.form-container_form-input input,
  .form-container_form-textarea textarea {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.form-container_form-input, .form-container_form-textarea {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.form-container_form .full-width {
  grid-column: span 2 / span 2;
}

/* Костыли для формы */

.form-container_form span {
  margin: 0px;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}

.form-container_form br {
  display: none;
}

.form-container_form textarea {
  height: 3em;
}

.form-container_form span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0.25rem;
  font-size: 8px;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

@media not all and (min-width: 768px) {
  .form-container_form span.wpcf7-not-valid-tip {
    left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .form-container_form span.wpcf7-not-valid-tip {
    right: 1.5rem;
  }
}

.form-container_form .form-container_form-checkbox label input {
  display: none;
}

.form-container_form .form-container_form-checkbox label span {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-container_form .form-container_form-checkbox label span::before {
  margin-right: 0.5rem;
  display: inline-block;
  height: 10px;
  min-height: 10px;
  width: 10px;
  min-width: 10px;
  border-radius: 9999px;
  border-width: 3px;
  border-color: transparent;
  padding: 3px;
  outline-color: #1F252E;
  --tw-content: '';
  content: var(--tw-content);
  outline-offset: 3px;
  outline-width: 1px;
  outline-style: solid;
}

.form-container_form
    .form-container_form-checkbox
    label
    input:checked
    + span::before {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
}

.form-container_form .form-container_form-checkbox a {
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.form-container_form .form-container_form-file {
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
}

.form-container_form .form-container_form-file span.wpcf7-form-control-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.form-container_form
    .form-container_form-file
    span.wpcf7-form-control-wrap
    input {
  height: 100%;
  width: 100%;
  opacity: 0;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-label {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.file-upload-text {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.file-upload-icon {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.file-upload-list {
  margin-top: 1rem;
}

.file-upload-list-header {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.file-upload-items > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.file-upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file-upload-item-name {
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.file-upload-item-remove {
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.file-upload-item-remove:hover {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

span.file-upload-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

label.file-upload-label {
  padding: 0px;
}

.form-container_form-submit-button p {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .form-container_form-submit-button p {
    max-width: 140px;
  }
}

.form-container_form-submit-button p:before {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  --tw-content: 'Отправить';
  content: var(--tw-content);
}

.form-container_form-submit-button input {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.form-container_form-submit-button span.wpcf7-spinner {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  background-color: rgb(3 102 201 / 0.5);
}

.form-container_form-submit-button span.wpcf7-spinner:before {
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.archive-vacancies_form-container {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .archive-vacancies_form-container {
    margin-bottom: 120px;
  }
}

.error404_container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .error404_container {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

.error404_container img {
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 100%;
  max-width: 620px;
}

.error404_container h1 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

a.error404_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.pulse-posts-group:last-child {
  margin-bottom: 0px;
}

@media (min-width: 1024px) {
  .pulse-posts-group {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }

  .pulse-posts-group:nth-child(even) {
    flex-direction: row-reverse;
  }

  .pulse-posts-group .big-item {
    width: calc(60% - 12px);
  }

  .pulse-posts-group .mansory {
    display: flex;
    width: calc(40% - 12px);
    flex-wrap: wrap;
    align-content: flex-start;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 2.5rem;
  }

  .pulse-posts-group .mansory .pulse-post {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width: 1024px) {
  .pulse-posts-group .big-item .chartist-graph {
    aspect-ratio: 12 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pulse-posts-group .mansory .pulse-post-chart .chartist-graph {
    background: #e6e8f2;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.pulse-post {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .pulse-post {
    margin-bottom: 0px;
  }
}

.pulse-post-date {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .pulse-post-date {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

.pulse-post-title-link {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.pulse-post-title-link:hover {
  --tw-text-opacity: 1;
  color: rgb(3 102 201 / var(--tw-text-opacity, 1));
}

/* Chartist */

.chartist-graph {
  padding: 20px;
  background: #e6e8f2;
  border-radius: 8px;
}

.ct-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.ct-chart-pie .ct-label {
  font-size: 21px;
  color: white !important;
  fill: white !important;
}

/* Pulse single */

.pulse-single {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .pulse-single {
    margin-bottom: 120px;
    gap: 2.5rem;
  }
}

.pulse-single > * {
  width: 100%;
}

.pulse-single-title {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .pulse-single-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.pulse-single-date {
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

/* Настройка легенды */

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 5px;
  font-size: 14px;
}

.legend-color {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  border-radius: 3px;
}

.search_page {
  margin-bottom: 8rem;
}

.search_page h1 {
  margin-bottom: 40px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .search_page h1 {
    margin-bottom: 60px;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.search_page h1 span {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

@media not all and (min-width: 1024px) {
  .search_page h1 span {
    margin-top: 0.75rem;
    display: block;
  }
}

@media (min-width: 1024px) {
  .search_page h1 span {
    margin-left: 0.75rem;
  }
}

.search_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media not all and (min-width: 768px) {
  .search_tabs {
    flex-direction: column;
  }
}

.search_tabs-item {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.search_tabs-item-count {
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

.search_tabs-item.active {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.search_tabs-item:not(.active) {
  cursor: pointer;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.search_tabs-item:not(.active):hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Post grid */

.search_tabs-content-post .list_posts {
  gap: 1.5rem;
}

@media not all and (min-width: 768px) {
  .search_tabs-content-post .list_posts {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .search_tabs-content-post .list_posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.search_tabs-content:not(.active) {
  display: none !important;
}

/* Vacancies */

.search_tabs-content-vacancies .list_posts {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .search_tabs-content-vacancies .list_posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .search_tabs-content-vacancies .list_posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Digest */

.search_tabs-content-digest .list_posts {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .search_tabs-content-digest .list_posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .search_tabs-content-digest .list_posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Pulse */

.search_tabs-content-pulse .list_posts {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .search_tabs-content-pulse .list_posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .search_tabs-content-pulse .list_posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home h2 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

@media (min-width: 1024px) {
  .page-home h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

.hero_block {
  position: relative;
  margin-bottom: 2.5rem;
  overflow: hidden;
  padding-top: 48px;
}

@media (min-width: 1024px) {
  .hero_block {
    margin-top: 40px;
    margin-bottom: 120px;
  }
}

.hero_block > div {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero_block > div {
    flex-direction: row;
  }
}

.hero_block-left {
  width: 100%;
}

@media not all and (min-width: 1024px) {
  .hero_block-left {
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero_block-left {
    width: 54%;
  }
}

.hero_block-right {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero_block-right {
    width: 46%;
  }
}

.hero_block-left h1 {
  position: relative;
  z-index: 10;
  margin-bottom: 44px;
  max-width: 594px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 44px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .hero_block-left h1 {
    margin-bottom: 32px;
    font-size: 48px;
    line-height: 56px;
  }
}

@media (min-width: 1280px) {
  .hero_block-left h1 {
    font-size: 56px;
    line-height: 64px;
  }
}

.hero_block-left svg {
  position: absolute;
  top: 64px;
  right: -38px;
  z-index: -10;
  height: 260px;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1024px) {
  .hero_block-left svg {
    top: 0px;
    right: calc(50%);
    height: 274px;
  }
}

.hero_block-left::before {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -20;
  height: 300px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  --tw-content: '';
  content: var(--tw-content);
}

@media (min-width: 1024px) {
  .hero_block-left::before {
    height: 380px;
    width: calc(54% - 76px);
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}

/* Main post */

.hero_block-left .main-post {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero_block-left .main-post {
    padding-left: 77px;
  }
}

.hero_block-left .main-post .archive-news_post {
  width: 100%;
  flex-direction: column;
  border-bottom-width: 0px !important;
  padding-bottom: 0px !important;
}

@media (min-width: 1024px) {
  .hero_block-left .main-post .archive-news_post {
    margin-left: 53px;
  }
}

.hero_block-left .main-post .archive-news_post-image {
  height: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero_block-left .main-post .archive-news_post-title {
    font-size: 1.5rem;
    line-height: 2rem;
    line-height: 32px;
  }

  .hero_block-left .main-post .archive-news_post-info {
    padding-right: 130px;
  }
}

/* Other posts */

.hero_block-right {
  position: relative;
}

@media not all and (min-width: 1024px) {
  .hero_block-right {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.hero_block-right .other-posts {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero_block-right .other-posts {
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding-top: 58px;
    padding-bottom: 58px;
    padding-left: 77px;
    padding-right: 26px;
  }
}

.hero_block-right .other-posts .archive-news_post {
  border-bottom-width: 0px !important;
  padding-bottom: 0px !important;
}

.hero_block-right::before {
  position: absolute;
  top: 0px;
  left: -1rem;
  z-index: -10;
  height: 100%;
  width: calc(100% + 2rem);
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}

@media not all and (min-width: 1024px) {
  .hero_block-right::before {
    --tw-content: '';
    content: var(--tw-content);
  }
}

.hero_block-right .other-posts::before {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -10;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}

@media (min-width: 1024px) {
  .hero_block-right .other-posts::before {
    --tw-content: '';
    content: var(--tw-content);
  }
}

.hero_block-right .global-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Digests */

.home_page-digests {
  position: relative;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .home_page-digests {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.home_page-digests > div {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1rem;
}

@media not all and (min-width: 1024px) {
  .home_page-digests > div {
    flex-direction: column;
  }
}

.home_page-digests-title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .home_page-digests-title {
    width: 360px;
    min-width: 360px;
  }
}

.home_page-digests-title p {
  font-weight: 500;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(147 149 152 / var(--tw-text-opacity, 1));
}

.home_page-digests-title .global-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_page-digests-list {
  width: 100%;
}

@media (min-width: 1024px) {
  .home_page-digests-list {
    width: calc(100% - 384px);
  }
}

.home_page-digests-list .swiper-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .home_page-digests-list .swiper-wrapper {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Pulse */

.home_page-pulse {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .home_page-pulse {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.home_page-pulse h2 {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .home_page-pulse h2 {
    margin-bottom: 2rem;
  }
}

@media not all and (min-width: 1024px) {
  .home_page-pulse .archive-pulse_posts {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .home_page-pulse .home_page-pulse-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .home_page-pulse .chartist-graph {
    background: #e6e8f2;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Vacancies */

.home_page-vacancies {
  position: relative;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .home_page-vacancies {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.home_page-vacancies > div {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1rem;
}

@media not all and (min-width: 1024px) {
  .home_page-vacancies > div {
    flex-direction: column;
  }
}

.home_page-vacancies-title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .home_page-vacancies-title {
    width: 360px;
    min-width: 360px;
  }
}

.home_page-vacancies-title p {
  font-weight: 500;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(147 149 152 / var(--tw-text-opacity, 1));
}

.home_page-vacancies-title .global-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_page-vacancies-list {
  width: 100%;
}

@media (min-width: 1024px) {
  .home_page-vacancies-list {
    width: calc(100% - 384px);
  }
}

.home_page-vacancies-list .swiper-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .home_page-vacancies-list .swiper-wrapper {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.home_page-vacancies-list .archive-vacancies_post {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

/* Description */

.home_page-description {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  row-gap: 16px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

@media not all and (min-width: 1024px) {
  .home_page-description {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .home_page-description {
    margin-top: 120px;
    margin-bottom: 120px;
  }

  .home_page-description > * {
    width: 50%;
    max-width: 50%;
  }
}

.home_page-description img {
  height: auto;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media not all and (min-width: 1024px) {
  .home_page-description img {
    width: 100%;
  }
}

.home_page-description img {
  aspect-ratio: 16/12;
}

.home_page-description .text-part {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  -moz-column-gap: 26px;
       column-gap: 26px;
}

@media (min-width: 1024px) {
  .home_page-description .text-part {
    margin-top: 88px;
  }
}

.home_page-description .content {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 1024px) {
  .home_page-description .content {
    padding: 60px;
  }
}

.home_page-description .text-part p {
  margin-bottom: 1rem;
}

.home_page-bg_icon {
  position: absolute;
  top: 0px;
  right: -230px;
  z-index: -10;
}

@media not all and (min-width: 1024px) {
  .home_page-bg_icon {
    display: none;
  }
}

/* Swiper Navigation */

.home-swiper,
.chart-swiper {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .home-swiper .swiper-navigation,
.chart-swiper .swiper-navigation {
    display: none !important;
  }
}

.home-swiper .swiper-navigation,
.chart-swiper .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.home-swiper .swiper-navigation > *,
.chart-swiper .swiper-navigation > * {
  position: relative;
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  left: inherit;
  right: inherit;
  top: inherit;
  bottom: inherit;
  margin: 24px 0 0 0;
  padding: 0;
}

.home-swiper .swiper-navigation .swiper-button-disabled,
.chart-swiper .swiper-navigation .swiper-button-disabled {
  opacity: 0.5;
}

.home-swiper .swiper-navigation > *:after,
.chart-swiper .swiper-navigation > *:after {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Inter, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.my-\[24px\] {
  margin-top: 24px;
  margin-bottom: 24px;
}

.block {
  display: block;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.h-\[60px\] {
  height: 60px;
}

.w-\[60px\] {
  width: 60px;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
  resize: both;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.rounded-full {
  border-radius: 9999px;
}

.border-t {
  border-top-width: 1px;
}

.border-\[\#D2D7DF\] {
  --tw-border-opacity: 1;
  border-color: rgb(210 215 223 / var(--tw-border-opacity, 1));
}

.bg-nt_gray-medium {
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
}

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

.text-nt_blue-1 {
  --tw-text-opacity: 1;
  color: rgb(0 182 241 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

/* Дополнительные пользовательские стили можно добавить здесь */

body {
  font-family: Inter, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.section_container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1552px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.breadcrumb {
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 4px;
  padding-top: 24px;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(159 170 187 / var(--tw-text-opacity, 1));
}

@media (min-width: 1024px) {
  .breadcrumb {
    margin-bottom: 80px;
    padding-top: 48px;
  }
}

.breadcrumb a {
  text-decoration-line: underline;
  text-underline-offset: 4px;
  transition-duration: 150ms;
}

.breadcrumb a:hover {
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb_last {
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgb(31 37 46 / var(--tw-text-opacity, 1));
}

/* Стили для спиннера загрузки */

.posts-spinner {
  position: relative;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Анимация линий спиннера */

@keyframes spinner-line-fade-quick {
  0%,
  39%,
  100% {
    opacity: 0.25;
  }

  40% {
    opacity: 1;
  }
}

.spinner-line-fade-quick div {
  animation: spinner-line-fade-quick 0.8s linear infinite;
}

/*  */

.global-button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(36 144 252 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-duration: 150ms;
}

.global-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(3 102 201 / var(--tw-bg-opacity, 1));
}

@media not all and (min-width: 768px) {
  .global-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .global-button:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

@media (min-width: 1024px) {
  .global-button {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.wpcf7-response-output {
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

/* Информация о компании | Модальное окно */

.company_info-modal-button {
  height: 1rem;
  width: 1rem;
}

.company_info-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 50;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.company_info-modal-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.3;
}

.company_info-modal-container {
  position: relative;
  max-height: 90vh;
  width: 100%;
  max-width: 730px;
  overflow-y: auto;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  box-shadow: 0px 8px 32px -4px #676f7b1a;
}

.company_info-modal-container::-webkit-scrollbar {
  width: 0.5rem;
}

.company_info-modal-container::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
}

.company_info-modal-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
  padding-bottom: 1.5rem;
}

@media not all and (min-width: 640px) {
  .company_info-modal-header {
    flex-direction: column-reverse;
  }
}

@media (min-width: 640px) {
  .company_info-modal-header {
    align-items: center;
  }
}

.company_info-modal-header .company-title-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media not all and (min-width: 640px) {
  .company_info-modal-header .company-title-container {
    width: 100%;
  }
}

.company_info-modal-header .company-title-container img {
  height: 60px;
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.company_info-modal-header .company-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.company_info-modal-close {
  display: flex;
  height: 40px;
  width: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

@media (min-width: 1024px) {
  .company_info-modal-close:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
  }

  .company_info-modal-close:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

.company_info-modal-close svg {
  height: 14px;
  width: 14px;
}

.company_info-modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company_info-modal-content .description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.company_info-modal-content .gallery-desktop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media not all and (min-width: 768px) {
  .company_info-modal-content .gallery-desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .company_info-modal-content .gallery-desktop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.company_info-modal-content .gallery-desktop img {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.company_info-modal-content .gallery-mobile {
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .company_info-modal-content .gallery-mobile {
    display: none !important;
  }
}

.company_info-modal-content .gallery-mobile .swiper-slide {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.company_info-modal-content .gallery-mobile .swiper-slide img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.company_info-modal-content .gallery-mobile .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.company_info-modal-content .gallery-mobile .swiper-navigation > * {
  position: relative;
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  left: inherit;
  right: inherit;
  top: inherit;
  bottom: inherit;
  margin: 24px 0 0 0;
  padding: 0;
}

.company_info-modal-content .gallery-mobile .swiper-navigation .swiper-button-disabled {
  opacity: 0.5;
}

.company_info-modal-content .gallery-mobile .swiper-navigation > *:after {
  display: none;
}

/* Модальное окно с формой */

.form_modal {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 50;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.form_modal-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgb(31 37 46 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.3;
}

.form_modal-container {
  position: relative;
  max-height: 90vh;
  width: 100%;
  max-width: 730px;
  overflow-y: auto;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  box-shadow: 0px 8px 32px -4px #676F7B1A;
}

.form_modal-container::-webkit-scrollbar {
  width: 0.5rem;
}

.form_modal-container::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(159 170 187 / var(--tw-bg-opacity, 1));
}

.form_modal-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(159 170 187 / var(--tw-border-opacity, 1));
  padding-bottom: 1.5rem;
}

.form_modal-header h2 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.form_modal-close {
  display: flex;
  height: 40px;
  width: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

@media (min-width: 1024px) {
  .form_modal-close:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(210 215 223 / var(--tw-bg-opacity, 1));
  }

  .form_modal-close:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}

.form_modal-close svg {
  height: 14px;
  width: 14px;
}

@media (min-width: 1024px) {
  .lg\:my-\[40px\] {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .lg\:my-\[60px\] {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .lg\:mb-\[40px\] {
    margin-bottom: 40px;
  }

  .lg\:mt-\[60px\] {
    margin-top: 60px;
  }
}
