.filter-container {
  position: absolute;
  bottom: 0;
  right: 13.5vw;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 346px;
  height: 90px;
  border-bottom: 5px solid #000;
  padding: 0 16px;
  cursor: pointer; }
  .filter-wrapper.active .option-group {
    opacity: 1;
    pointer-events: initial; }
  .filter-wrapper .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    padding: 0 16px; }
    .filter-wrapper .option-group {
      position: absolute;
      top: calc(100% + 5px);
      left: 0;
      right: 0;
      max-height: 392px;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .filter-wrapper .option + .option {
      border-top: 1px solid #f6f6f6; }
    @media (hover: hover) {
      .filter-wrapper .option:hover {
        color: #000;
        background-color: #dddddd; } }

.filter-title {
  width: 100%; }
  .filter-title::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 70%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid #000;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent; }

@media (max-width: 1023.98px) {
  .filter-container {
    right: 0;
    left: 0;
    -webkit-transform: translateY(calc(100% + 64px));
    -ms-transform: translateY(calc(100% + 64px));
    transform: translateY(calc(100% + 64px)); }
  .filter-wrapper {
    padding: initial;
    width: calc(100% - 20vw);
    height: 70px;
    border-width: 3px;
    margin: 0 10vw; }
    .filter-wrapper::before {
      content: "";
      display: block;
      position: absolute;
      right: 8px;
      top: 56%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 6px solid #000;
      border-right: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 6px solid transparent; } }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 0 8px; }

.section-news {
  padding-top: 214px;
  padding-bottom: 200px; }
  .section-news__header {
    margin-bottom: 60px; }
    .section-news__header .category {
      padding-bottom: 12px; }
      .section-news__header .category::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 44px;
        height: 2px;
        background-color: #000; }
  @media (max-width: 1023.98px) {
    .section-news {
      padding-top: 190px;
      padding-bottom: 90px; }
      .section-news__header {
        margin-bottom: 34px; }
        .section-news__header .category {
          padding-bottom: 6px; }
          .section-news__header .category::before {
            width: 28px; } }

.news {
  width: 33.333333%;
  padding: 0 2.60417vw;
  float: left; }
  .news:nth-child(3n + 2) {
    margin-top: 6.25vw; }
  .news:nth-child(3n) {
    margin-top: 12.5vw; }
  .news .img {
    margin-bottom: 30px; }
    .news .img-inner {
      padding-top: 100%; }
      .news .img-inner::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        -webkit-transition: 1s;
        -o-transition: 1s;
        transition: 1s; }
    .news .img img {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
    .news .img .hover {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border: 0.625vw solid #df003a;
      -webkit-transform: translate(12.5%, -17.5%);
      -ms-transform: translate(12.5%, -17.5%);
      transform: translate(12.5%, -17.5%);
      padding: 1.04167vw;
      opacity: 0;
      pointer-events: none;
      -webkit-transition: 1s;
      -o-transition: 1s;
      transition: 1s; }
  .news .category {
    margin-bottom: 6px; }
    .news .category-wrapper {
      margin-bottom: 1.66667vw;
      padding-bottom: 1.25vw;
      border-bottom: 1px solid #e5e5e5; }
  .news-row {
    margin: 0 -2.60417vw; }
    .news-row::after {
      content: "";
      display: block;
      clear: both;
      height: 0; }
  .news-wrapper {
    padding: 0 13.5vw; }
  @media (hover: hover) {
    .news:hover .img-inner::after {
      opacity: 1; }
    .news:hover .img .hover {
      opacity: 1;
      pointer-events: initial; } }
  @media (max-width: 1023.98px) {
    .news {
      width: 100%;
      float: initial;
      padding: initial; }
      .news:nth-child(3n + 2) {
        margin-top: initial; }
      .news:nth-child(3n) {
        margin-top: initial; }
      .news:nth-child(n + 2) {
        margin-top: 60px; }
      .news .img {
        margin-bottom: 20px; }
      .news .category-wrapper {
        padding-bottom: 12px;
        margin-bottom: 15px; }
      .news-row {
        margin: initial; }
      .news-wrapper {
        padding: 0 10vw; } }
