

/* Start:/local/templates/nioteks/css/articles-page.css?17875872203226*/
.articles-page {
  padding-block: 30px 40px;
}

.articles-page__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  min-width: 0;
}

.articles-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  min-width: 0;
}

.articles-page__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

.articles-page__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.articles-page__grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.articles-page__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.articles-page__card:hover,
.articles-page__card:focus-visible {
  color: var(--color-black);
}

.articles-page__card-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 343 / 210;
  border-radius: 15px;
  background-color: var(--color-grey-lg-2);
}

.articles-page__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.articles-page__card:hover .articles-page__card-image,
.articles-page__card:focus-visible .articles-page__card-image {
  transform: scale(1.05);
}

.articles-page__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.articles-page__card-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.articles-page__card:hover .articles-page__card-title,
.articles-page__card:focus-visible .articles-page__card-title {
  color: var(--color-primary);
}

.articles-page__card-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .articles-page {
    padding-block: 40px 70px;
  }

  .articles-page__inner {
    gap: 35px;
  }

  .articles-page__content {
    gap: 40px;
  }

  .articles-page__title {
    font-size: 30px;
  }

  .articles-page__body {
    gap: 50px;
  }

  .articles-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .articles-page__card {
    gap: 24px;
  }

  .articles-page__card-title,
  .articles-page__card-text {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .articles-page {
    padding-block: 50px 100px;
  }

  .articles-page__inner {
    gap: 30px;
  }

  .articles-page__content {
    gap: 50px;
  }

  .articles-page__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .articles-page__body {
    gap: 80px;
  }

  .articles-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .articles-page__card-title,
  .articles-page__card-text {
    font-size: 16px;
  }

  .articles-page__card-media {
    aspect-ratio: 384 / 210;
  }
}

/* End */


/* Start:/local/templates/nioteks/css/article-page.css?17875872202318*/
.article-page {
  padding-block: 30px 40px;
}

.article-page__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.article-page__head {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.article-page__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

.article-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  min-width: 0;
}

.article-page__related {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 3px;
}

.article-page__related-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

@media (max-width: 767px) {
  .article-page .news-item__text,
  .article-page .news-item__list,
  .article-page .news-item__link {
    font-size: 16px;
  }

  .article-page .news-item__footer {
    gap: 32px;
  }

  .article-page .news-item__table-block {
    gap: 8px;
  }

  .article-page .news-item__date {
    font-size: 14px;
  }

  .article-page .news-item__gallery-main {
    height: 224px;
    border-radius: 15px;
  }

  .article-page .news-item__gallery-image {
    border-radius: 15px;
  }
}

@media (min-width: 768px) {
  .article-page {
    padding-block: 40px 70px;
  }

  .article-page__inner {
    gap: 40px;
  }

  .article-page__head {
    gap: 30px;
  }

  .article-page__title {
    font-size: 30px;
  }

  .article-page__content {
    gap: 40px;
  }

  .article-page__related {
    gap: 40px;
    margin-top: 0;
  }

  .article-page__related-title {
    font-size: 30px;
  }

  .article-page__related .articles-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .article-page {
    padding-block: 50px 100px;
  }

  .article-page__inner {
    gap: 50px;
  }

  .article-page__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .article-page__content {
    gap: 48px;
  }

  .article-page__related {
    gap: 50px;
    margin-top: 50px;
  }

  .article-page__related-title {
    font-size: 38px;
  }
}

/* End */


/* Start:/local/templates/nioteks/css/news-item-page.css?178758721917103*/
.news-item {
  padding-block: 30px 50px;
}

.news-item__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.news-item__head {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.news-item__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

.news-item__hero {
  overflow: hidden;
  height: 210px;
  border-radius: 15px;
  background-color: var(--color-grey-lg-2);
}

.news-item__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--content-max-width);
  min-width: 0;
  margin-inline: auto;
}

.news-item__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
}

.news-item__text h1,
.news-item__text h2,
.news-item__text h3,
.news-item__text h4,
.news-item__text h5,
.news-item__text h6 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 12px;
}

.news-item__text p + p {
  margin-top: 1em;
}

.news-item__gallery {
  --gallery-nav-width: 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item__gallery-main {
  position: relative;
  overflow: hidden;
  /*height: 220px;*/
  background-color: var(--color-grey-lg-2);
  cursor: zoom-in;
  aspect-ratio: 990 / 670;
}

.news-item__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__gallery-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.news-item__gallery-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--gallery-nav-width);
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.news-item__gallery-btn--prev {
  left: 0;
}

.news-item__gallery-btn--next {
  right: 0;
}

.news-item__gallery-btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--color-grey-lg-2);
  border: 1px solid var(--color-grey-lg-4);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.news-item__gallery-btn:hover .news-item__gallery-btn-circle,
.news-item__gallery-btn:focus-visible .news-item__gallery-btn-circle {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.news-item__gallery-btn-icon {
  display: block;
  width: 15px;
  height: 15px;
  transition: filter var(--transition-base);
}

.news-item__gallery-btn:hover .news-item__gallery-btn-icon,
.news-item__gallery-btn:focus-visible .news-item__gallery-btn-icon {
  filter: brightness(0) invert(1);
}

.news-item__gallery-btn--prev .news-item__gallery-btn-icon {
  transform: rotate(180deg);
}

.news-item__gallery-thumbs-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.news-item__gallery-thumbs {
  display: flex;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
}

.news-item__gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.news-item__gallery-thumbs--dragging {
  cursor: grabbing;
  user-select: none;
}

.news-item__gallery-thumbs--dragging .news-item__gallery-thumb {
  cursor: grabbing;
  pointer-events: none;
}

.news-item__gallery-thumb {
  flex-shrink: 0;
  /*width: 72px;*/
  /*height: 72px;*/
  max-height: 72px;
  height: 100%;
  max-width: 110px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 990 / 670;
}

.news-item__gallery-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.news-item__gallery-thumb--active {
  border-color: var(--color-primary);
}

.news-item__gallery-pagination {
  width: 100%;
}

.news-item__gallery-pagination-progress {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-grey-lg-4);
}

.news-item__gallery-pagination-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-primary);
  transition: left var(--transition-base);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 16px;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background-color: rgb(0 0 0 / 85%);
  cursor: pointer;
}

.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background-color: var(--color-primary);
}

.gallery-lightbox__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.gallery-lightbox__image {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 64px);
  width: auto;
  height: 100%;
  object-fit: contain;
}

.gallery-lightbox__nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-lightbox__nav[hidden] {
  display: none;
}

.gallery-lightbox__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-grey-lg-4);
  border-radius: 50%;
  background-color: var(--color-grey-lg-2);
  cursor: pointer;
  pointer-events: auto;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.gallery-lightbox__nav-btn:hover,
.gallery-lightbox__nav-btn:focus-visible {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.gallery-lightbox__nav-btn--prev {
  left: 16px;
}

.gallery-lightbox__nav-btn--next {
  right: 16px;
}

.gallery-lightbox__nav-icon {
  display: block;
  width: 15px;
  height: 15px;
  transition: filter var(--transition-base);
}

.gallery-lightbox__nav-btn:hover .gallery-lightbox__nav-icon,
.gallery-lightbox__nav-btn:focus-visible .gallery-lightbox__nav-icon {
  filter: brightness(0) invert(1);
}

.gallery-lightbox__nav-btn--prev .gallery-lightbox__nav-icon {
  transform: rotate(180deg);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.news-item__table-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.news-item__table-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  /*font-size: 14px;*/
  font-size: 22px;
  line-height: 1.4;
  /*text-transform: uppercase;*/
  color: var(--color-black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.news-item__table-scroll {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
  margin-bottom: 30px
}

.news-item__table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-item__table-wrap::-webkit-scrollbar {
  display: none;
}

.news-item__scroll-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-grey-lg-2);
  flex-shrink: 0;
}

.news-item__scroll-bar[hidden] {
  display: none;
}

.news-item__scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  min-width: 24px;
  background-color: var(--color-primary);
  will-change: transform, width;
}

.news-item__table {
  width: max-content;
  min-width: 608px;
  border-collapse: collapse;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.4;
}

.news-item__table.big-content-table {
  width: auto;
}

.news-item__table thead th {
  padding: 16px 12px;
  font-weight: var(--font-weight-semibold);
  text-align: center;
  color: var(--color-primary);
  background-color: var(--color-grey-lg-2);
}

.news-item__table thead th:first-child {
  width: 282px;
  text-align: left;
}

.news-item__table tbody th {
  padding: 16px 12px;
  font-weight: var(--font-weight-semibold);
  text-align: left;
  color: var(--color-black);
  vertical-align: middle;
}

.news-item__table tbody td {
  padding: 16px 12px;
  font-weight: var(--font-weight-regular);
  text-align: center;
  color: var(--color-black);
  vertical-align: middle;
}

.news-item__table tbody tr:nth-child(odd) {
  background-color: var(--color-white);
}

.news-item__table tbody tr:nth-child(even) {
  background-color: var(--color-grey-lg-2);
}

.news-item__table-tech-list {
  margin: 0;
  text-align: left;
}

.news-item__table-tech-list p {
  margin: 0;
}

.news-item__table-tech-list p + p {
  margin-top: 1.4em;
}

.news-item__table--specs {
  width: 100%;
  min-width: 0;
}

.news-item__table--specs thead th,
.news-item__table--specs tbody th,
.news-item__table--specs tbody td {
  text-align: left;
}

.news-item__table--specs thead th:first-child,
.news-item__table--specs tbody th {
  width: 50%;
}

.news-item__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item__list {
  margin: 0;
  padding-left: 27px;
  list-style-type: disc;
  list-style-position: outside;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
}

.news-item__list li + li {
  margin-top: 4px;
}

.news-item__link {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-item__link:hover {
  color: var(--color-primary);
}

.news-item__date {
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-black);
}

.news-item__related {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-item__related-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

.news-item__related-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-item__related-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.news-item__related-card:hover,
.news-item__related-card:focus-visible {
  color: var(--color-black);
}

.news-item__related-media {
  overflow: hidden;
  height: 210px;
  border-radius: 15px;
  background-color: var(--color-grey-lg-2);
}

.news-item__related-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.news-item__related-card:hover .news-item__related-image,
.news-item__related-card:focus-visible .news-item__related-image {
  transform: scale(1.05);
}

.news-item__related-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-item__related-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item__related-card-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.news-item__related-card:hover .news-item__related-card-title,
.news-item__related-card:focus-visible .news-item__related-card-title {
  color: var(--color-primary);
}

.news-item__related-card-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.news-item__related-card-date {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-grey-lg);
  margin-top: auto;
}

.news-item__tags {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item__tags-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.4;
  /*text-transform: uppercase;*/
  color: var(--color-black);
}

.news-item__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 5px;
  background-color: var(--color-grey-lg-3);
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  font-size: 10px;
  line-height: 1.4;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-base), color var(--transition-base);
}

/*@media (max-width: 767px) {
  .news-item__table-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: var(--container-padding);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .news-item__table {
    min-width: 608px;
    font-size: 12px;
  }

  .news-item__table thead th,
  .news-item__table tbody th,
  .news-item__table tbody td {
    padding: 12px;
  }

  .news-item__table thead th:first-child,
  .news-item__table tbody th {
    padding-inline: 20px;
    width: auto;
    min-width: 140px;
    max-width: 189px;
  }

  .news-item__table--specs {
    min-width: 0;
  }

  .news-item__table--specs thead th:first-child,
  .news-item__table--specs tbody th {
    min-width: 0;
    max-width: none;
    padding-inline: 12px;
  }

  .news-item__gallery-thumbs {
    gap: 11px;
  }

  .news-item__gallery-thumb {
    !*width: 60px;*!
    !*height: 60px;*!
    max-height: 60px;
    border-radius: 5px;
  }

  .news-item__gallery-thumb-image {
    border-radius: 5px;
  }
}*/

@media (min-width: 768px) {
  .news-item {
    padding-block: 40px 70px;
  }

  .news-item__inner {
    gap: 40px;
  }

  .news-item__head {
    gap: 30px;
  }

  .news-item__title {
    font-size: 30px;
  }

  .news-item__hero {
    height: 320px;
  }

  .news-item__content {
    gap: 40px;
  }

  .news-item__text,
  .news-item__list,
  .news-item__link {
    font-size: 16px;
  }

  /*.news-item__gallery-main {*/
  /*  height: 360px;*/
  /*}*/

  .news-item__gallery-thumb {
    /*width: 96px;*/
    /*height: 96px;*/
    max-height: 96px;
  }

  .news-item__table-title {
    /*font-size: 16px;*/
	font-size: 28px;
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .news-item__table {
    font-size: 16px;
    min-width: 640px;
    width: 100%;
  }

  .news-item__table--specs {
    min-width: 0;
  }

  .news-item__date {
    font-size: 14px;
  }

  .news-item__related {
    gap: 40px;
  }

  .news-item__related-title {
    font-size: 30px;
  }

  .news-item__related-list {
    /*flex-direction: row;*/
    /*gap: 24px;*/
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .news-item__related-list > li {
    /*flex: 1;*/
    min-width: 0;
  }

  .news-item__related-card {
    gap: 24px;
  }

  .news-item__related-content {
    gap: 24px;
  }

  .news-item__related-card-body {
    gap: 12px;
  }

  .news-item__related-card-title,
  .news-item__related-card-text {
    font-size: 16px;
  }

  .news-item__related-card-date {
    font-size: 14px;
  }

  .news-item__tags-title {
    font-size: 38px;
  }

  .news-item__tag {
    padding: 8px 16px;
    font-size: 16px;
  }
  
.news-item__text h1,
.news-item__text h2,
.news-item__text h3,
.news-item__text h4,
.news-item__text h5,
.news-item__text h6 {
  margin-bottom: 24px;
}
}

@media (min-width: 1200px) {
  .news-item {
    padding-block: 50px 100px;
  }

  .news-item__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .news-item__hero {
    height: 400px;
  }

  .news-item__content {
    gap: 48px;
  }

  .news-item__text,
  .news-item__list,
  .news-item__link {
    font-size: 18px;
  }

  /*.news-item__gallery-main {*/
  /*  height: 490px;*/
  /*}*/

  .news-item__gallery-thumb {
    /*width: 109px;*/
    /*height: 109px;*/
    max-height: 109px;
  }

  .news-item__related {
    gap: 48px;
  }

  .news-item__related-title {
    font-size: 38px;
  }
}

/* End */


/* Start:/local/templates/nioteks/css/projects-page.css?17875872202687*/
.projects-page {
  padding-block: 30px 40px;
}

.projects-page__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.projects-page__head {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.projects-page__head .projects-page__title {
  margin-top: 0;
}

.projects-page__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}

.projects-page__filters {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 5px;
}

.projects-page .tab--filter {
  height: 25px;
  min-height: 25px;
  padding: 0 32px;
  font-size: 10px;
  line-height: normal;
  padding: 0 7px;
}

.projects-page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.projects-page__tags {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.projects-page__tags-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-black);
}

.projects-page__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.projects-page__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  font-size: 10px;
  line-height: 1.4;
  color: var(--color-black);
  text-decoration: none;
  background-color: var(--color-grey-lg-3);
  border-radius: 5px;
  white-space: nowrap;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.projects-page__pagination {
  width: 100%;
}

@media (max-width: 767px) {
  .projects-page__pagination .pagination__list li:nth-child(n + 7) {
    display: none;
  }
}

@media (min-width: 768px) {
  .projects-page {
    padding-block: 40px 70px;
  }

  .projects-page__inner {
    gap: 40px;
  }

  .projects-page__head {
    gap: 30px;
  }

  .projects-page__title {
    font-size: 30px;
  }

  .projects-page__body {
    gap: 50px;
  }
  
  .projects-page .tab--filter {
    min-height: 35px;
    height: auto;
    padding: 10px 32px;
    font-size: 16px;
  }

  .projects-page__tags-title {
    font-size: 15px;
  }

  .projects-page__tag {
    padding: 8px 16px;
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .projects-page {
    padding-block: 50px 100px;
  }

  .projects-page__title {
    font-size: 48px;
    line-height: 1.4;
  }

  .projects-page__body {
    gap: 64px;
  }

  .projects-page__tags-title {
    font-size: 16px;
  }
}

/* End */
/* /local/templates/nioteks/css/articles-page.css?17875872203226 */
/* /local/templates/nioteks/css/article-page.css?17875872202318 */
/* /local/templates/nioteks/css/news-item-page.css?178758721917103 */
/* /local/templates/nioteks/css/projects-page.css?17875872202687 */
