/*===============================================================a

    section_news

===============================================================*/
.section_news {
  padding-bottom: 5rem;
  margin-top: -3rem;
  /*===============================================================
  news_item
  ===============================================================*/
}
.section_news .news_container {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.section_news .title_block {
  width: 5em;
  text-align: center;
  font-weight: bold;
}
.section_news .news_block {
  width: calc(100% - 6em);
}
@media screen and (max-width: 767px) {
  .section_news {
    padding-bottom: 3rem;
    margin-top: -6rem;
  }
  .section_news .news_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .section_news .title_block {
    width: 100%;
    text-align: left;
  }
  .section_news .news_block {
    width: 100%;
    height: 3.5em;
  }
}
.section_news .news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  color: #000;
}
.section_news .news_item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_news .news_item.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section_news .news_item:hover {
  color: #333;
}
.section_news .news_item .date {
  width: 10em;
}
.section_news .news_item .txt {
  width: calc(100% - 10em);
}
.section_news .news_item .txt .icon {
  padding-left: 0.3em;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section_news .news_item {
    position: relative;
  }
  .section_news .news_item:hover {
    color: #333;
  }
  .section_news .news_item .date {
    position: absolute;
    top: -1.35rem;
    right: 0;
    text-align: right;
  }
  .section_news .news_item .txt {
    width: 100%;
    margin-top: 0.5em;
  }
}
/*# sourceMappingURL=news.css.map */