.newsList {
  position: relative;
  padding: 100px 0;
}
.newsList .container_frame {
  position: relative;
  z-index: 2;
}
.newsList .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.newsList .--top .title_news {
  font-size: 42px;
  color: var(--color-primary);
  font-family: var(--font-title);
  letter-spacing: -1.26px;
}
.newsList .--top .search {
  background: rgb(239, 239, 239);
  border-radius: 50px;
  padding: 0 20px;
  height: 52px;
  width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsList .--top .search input {
  background: transparent;
  border: none;
  flex: 1;
}
.newsList .--top .search input:focus {
  outline: none;
}
.newsList .--top .search input::-moz-placeholder {
  color: rgb(137, 137, 137);
}
.newsList .--top .search input::placeholder {
  color: rgb(137, 137, 137);
}
.newsList .--top .search i {
  color: rgb(137, 137, 137);
}
.newsList .pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: auto;
  pointer-events: none;
}
.newsList .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
  margin-bottom: 32px;
}
.newsList .nav-tabs .nav-link {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border-radius: 50px;
  height: 46px;
  justify-content: center;
  border: 1px solid rgb(220, 220, 220);
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.newsList .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.newsList .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.newsList .list_news {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.newsList .list_news .item_news .--top {
  justify-content: flex-start;
}
.newsList .pagination {
  gap: 8px;
  justify-content: center;
}
.newsList .pagination .page-item .page-link {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  cursor: pointer;
}
.newsList .pagination .page-item .page-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.newsList .pagination .page-item.active .page-link {
  background: var(--color-secondary);
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .newsList .--top .title_news {
    font-size: 38px;
  }
  .newsList .--top .search {
    height: 44px;
    width: 290px;
  }
  .newsList .list_news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .newsList {
    padding: 40px 0;
  }
  .newsList .--top {
    flex-flow: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .newsList .--top .title_news {
    font-size: 28px;
  }
  .newsList .--top .search {
    height: 44px;
  }
  .newsList .nav-tabs {
    justify-content: center;
    flex-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  .newsList .nav-tabs .nav-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: unset;
    background: transparent;
    color: var(--color-black);
    border: none;
    position: relative;
  }
  .newsList .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--color-black);
  }
  .newsList .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
  }
  .newsList .list_news {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .newsList .list_news .item_news .--top {
    flex-flow: row;
  }
}/*# sourceMappingURL=emagazine.css.map */