html {
  font-size: 15px;
}

@media (max-width: 992px) {
  html {
    font-size: calc(15px + .2vw);
  }
}

/*Add font ================================*/
/* --------------------------------------*/
.top-container, .feature_bottom {
  display: none;
}

.section_combo {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03);
  width: 100vw;
  padding: 25px 0;
  margin-left: calc(-50vw + 50%);
}

.section_combo .list_item_product .row_item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: auto;
  margin: 0 -7px;
}

.section_combo .list_item_product .row_item .col_item {
  border: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 7px;
}

@media (min-width: 576px) {
  .section_combo .list_item_product .row_item .col_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .section_combo .list_item_product .row_item .col_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) {
  .section_combo .list_item_product .row_item .col_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

.section_combo .list_item_product .row_item .col_item .item {
  border-radius: 6px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 78px;
  padding: 12px 10px;
}

.section_combo .list_item_product .row_item .col_item .item .info .info-title {
  max-height: unset;
}

.section_combo .list_item_product .row_item .col_item .item .info .info-title a {
  font: 600 1rem/1.2 "Montserrat-Regular", sans-serif;
  text-align: center;
  color: #222;
}

.section_combo .list_item_product .row_item .col_item:hover, .section_combo .list_item_product .row_item .col_item:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.section-head {
  margin-bottom: 10px;
  position: relative;
}

.section-head:after {
  content: '';
  position: absolute;
  width: calc(100% - 100px);
  height: 2px;
  right: 0;
  background: var(--color_main);
  top: calc(100% - 2px);
}

@media (max-width: 568px) {
  .section-head:after {
    width: 100%;
  }
}

.section-head .title {
  display: inline-block;
  -webkit-transform: skewX(35deg);
          transform: skewX(35deg);
  background: var(--color_main);
  border-radius: 0 15px 0 15px;
  margin-left: 20px;
  margin-right: 20px;
}

.section-head h2 {
  font: 100 1.6rem/150% var(--h2_font);
  position: relative;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 15px;
  -webkit-transform: skewX(-35deg);
          transform: skewX(-35deg);
}

@media (max-width: 823px) {
  .section-head h2 {
    font-size: 18px;
  }
}

.section-head .all {
  font-size: 0.86667rem;
  color: var(--color_main);
}

@media (max-width: 425px) {
  .section-head .all {
    display: none;
  }
}

.section_group {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 2rem 0 1rem;
}

.section_group .row {
  margin: 0 -5px;
}

@media (min-width: 992px) {
  .section_group .row {
    margin: 0 -13.5px;
  }
}

.section_group .col-pd {
  padding: 0 5px;
}

@media (min-width: 992px) {
  .section_group .col-pd {
    padding: 0 13.5px;
  }
}

.section_group .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section_group .bottom .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.8%;
          flex: 0 0 48.8%;
  max-width: 48.8%;
}

.section_group .item {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

.section_group .item:hover > a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_group .item:hover .info h3 {
  color: var(--color_hv);
}

@media (min-width: 992px) {
  .section_group .item {
    margin-bottom: 27px;
  }
}

.section_group .item .none {
  display: none;
}

@media (max-width: 425px) {
  .section_group .item .none {
    display: block;
  }
}

.section_group .item .not_none {
  display: block;
}

@media (max-width: 425px) {
  .section_group .item .not_none {
    display: none;
  }
}

.section_group .item img {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_group .item .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  text-align: center;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 425px) {
  .section_group .item .info {
    text-align: left;
    padding: 8px 5px;
  }
}

.section_group .item .info h3 {
  font: 600 1.46667rem/150% var(--h3_font);
  color: var(--color_main);
}

.section_group .item .info h3 img {
  margin-right: 10px;
  -webkit-transition: .5s all;
  transition: .5s all;
}

@media (max-width: 823px) {
  .section_group .item .info h3 {
    font-size: 1.06667rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media (max-width: 568px) {
  .section_group .item .info h3 {
    font-size: 0.93333rem;
  }
}

.section_group .item .info .short {
  font-size: 14px;
  color: #595959;
}

@media (max-width: 823px) {
  .section_group .item .info .short {
    max-height: 3rem;
    overflow: hidden;
  }
}

@media (max-width: 568px) {
  .section_group .item .info .short {
    display: none;
  }
}

.section_focus {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #ffffff url(../../images/bg_focus.png) repeat-x top left;
  padding: 2rem 0;
}

.section_focus .container {
  position: relative;
}

.section_focus .title h2 {
  font: 400 1.66667rem/150% var(--pro_font);
  color: #ffffff;
  text-transform: uppercase;
}

.section_focus .slide-control {
  width: 100%;
}

.section_focus .slide-control .btn-arrow {
  z-index: 9;
  font-size: 1rem;
  color: #ffffff;
  opacity: 1;
  position: absolute;
  top: 50%;
  cursor: pointer;
  background: var(--color_main);
  width: 33px;
  height: 33px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}

.section_focus .slide-control .btn-arrow.btn-next {
  right: 0px;
  -webkit-box-shadow: -1px 1px 5px #aaaaaa;
          box-shadow: -1px 1px 5px #aaaaaa;
}

.section_focus .slide-control .btn-arrow.btn-prev {
  left: 0px;
  -webkit-box-shadow: 1px 1px 5px #aaaaaa;
          box-shadow: 1px 1px 5px #aaaaaa;
}

.section_focus .slide-control .btn-arrow:focus, .section_focus .slide-control .section_focus .box_content .slide-control .btn-arrow:hover {
  opacity: 1;
}

.section_focus .box_content {
  margin: 0 -9px;
}

.section_product {
  background: #ffffff;
  margin-bottom: 1.3rem;
  -webkit-box-shadow: 0 0 5px #bbbbbb;
          box-shadow: 0 0 5px #bbbbbb;
}

.section_product > div {
  width: 100%;
}

.section_product .tab-menu {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
}

@media (max-width: 568px) {
  .section_product .tab-menu {
    position: relative;
    margin-top: 1rem;
    max-width: 100%;
    overflow: auto;
  }
}

.section_product .tab-menu .nav-item .nav-link {
  font-size: 1rem;
  color: #0871b2;
  border: 0;
  border-radius: 25px;
  padding: 0 10px;
  cursor: pointer;
}

.section_product .tab-menu .nav-item .nav-link.active {
  color: var(--color_hv);
  position: relative;
}

.section_product .tab-menu .nav-item .nav-link.active:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-width: 0px 9px 9px 9px;
  border-style: solid;
  border-color: transparent transparent var(--color_main) transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 823px) {
  .section_product .tab-menu .nav-item .nav-link.active:before {
    height: 9px;
  }
}

@media (max-width: 568px) {
  .section_product .tab-menu .nav-item .nav-link.active:before {
    display: none;
  }
}

.section_product .list_item_product .row_item .slick-list {
  padding: 10px;
}

@media (min-width: 568px) {
  .section_product .list_item_product .row_item .slick-list {
    padding: 1rem;
  }
}

.section-banner .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.section-banner .list_item .banner_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 1.3rem;
}

@media (min-width: 768px) {
  .section-banner .list_item .banner_item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100%/3 - 12px);
            flex: 1 1 calc(100%/3 - 12px);
  }
  .section-banner .list_item .banner_item img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 568px) {
  .section-banner .list_item .banner_item img {
    width: 100%;
  }
}

.section_news_video {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section_news_video #news_home, .section_news_video #video_home {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 0 5px #bbbbbb;
          box-shadow: 0 0 5px #bbbbbb;
}

@media (max-width: 823px) {
  .section_news_video #news_home, .section_news_video #video_home {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.section_news_video #news_home .title_big, .section_news_video #video_home .title_big {
  font: 100 1.6rem/150% var(--h2_font);
  text-transform: uppercase;
  color: var(--color_main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 2rem;
}

.section_news_video #news_home .title_big:after, .section_news_video #video_home .title_big:after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 1px;
  background: var(--color_main);
  top: 100%;
}

.section_news_video #news_home .title_big svg, .section_news_video #video_home .title_big svg {
  margin-right: 5px;
}

.section_news_video #news_home h3, .section_news_video #video_home h3 {
  max-height: 3.2rem;
  overflow: hidden;
}

@media (min-width: 650px) {
  .section_news_video #news_home .list_item_news .row_item .col_item_first .img, .section_news_video #video_home .list_item_news .row_item .col_item_first .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}

.section_news_video #news_home .list_item_news .row_item .view_more, .section_news_video #video_home .list_item_news .row_item .view_more {
  margin: 2rem 0;
  text-align: center;
  position: relative;
}

.section_news_video #news_home .list_item_news .row_item .view_more a, .section_news_video #video_home .list_item_news .row_item .view_more a {
  background: #ffffff;
  padding: 5px 5rem;
  position: relative;
  z-index: 9;
  border-radius: 25px;
  border: 1px solid #d9d9d9;
  color: var(--color_main);
}

.section_news_video #news_home .list_item_news .row_item .view_more:after, .section_news_video #video_home .list_item_news .row_item .view_more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item, .section_news_video #video_home .list_item_video .row_item .col_item_first .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .img, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .img {
  padding: 0;
  position: relative;
}

@media (min-width: 650px) {
  .section_news_video #news_home .list_item_video .row_item .col_item_first .item .img, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52%;
            flex: 0 0 52%;
    max-width: 52%;
  }
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .img a, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .img a {
  display: block;
  width: 100%;
  padding-top: 74%;
  position: relative;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .img a img, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .img a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 4px;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .img:after, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .img:after {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #ffffff;
  pointer-events: none;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info {
  padding-top: 1rem;
  padding-left: 15px;
}

@media (min-width: 650px) {
  .section_news_video #news_home .list_item_video .row_item .col_item_first .item .info, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    max-width: 48%;
  }
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info h3, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info h3 {
  line-height: 1;
  padding-bottom: 5px;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info h3 a, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info h3 a {
  font: 300 1.06667rem/150% var(--h3_font);
  display: block;
  color: #f30808;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info .date, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info .date {
  font-size: 0.86667rem;
  color: #7b7b7b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: .5rem;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info .date svg, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info .date svg {
  margin-right: 5px;
}

.section_news_video #news_home .list_item_video .row_item .col_item_first .item .info .short, .section_news_video #video_home .list_item_video .row_item .col_item_first .item .info .short {
  font: 400 0.93333rem/150% "Montserrat-Regular", sans-serif;
  color: #161616;
}

.section_news_video #news_home .list_item_video .row_item .col_item .item, .section_news_video #video_home .list_item_video .row_item .col_item .item {
  border: 1px solid #e4e4e4;
  margin: 0 3px;
  border-radius: 5px;
}

.section_news_video #news_home .list_item_video .row_item .col_item .item > a, .section_news_video #video_home .list_item_video .row_item .col_item .item > a {
  position: relative;
  display: block;
}

.section_news_video #news_home .list_item_video .row_item .col_item .item > a:after, .section_news_video #video_home .list_item_video .row_item .col_item .item > a:after {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #ffffff;
}

.section_news_video #news_home .list_item_video .row_item .col_item .item .info, .section_news_video #video_home .list_item_video .row_item .col_item .item .info {
  padding: .5rem;
}

.section_news_video #news_home .list_item_video .row_item .view_more, .section_news_video #video_home .list_item_video .row_item .view_more {
  margin: 2rem 0;
  text-align: center;
  position: relative;
}

.section_news_video #news_home .list_item_video .row_item .view_more a, .section_news_video #video_home .list_item_video .row_item .view_more a {
  background: #ffffff;
  padding: 5px 5rem;
  position: relative;
  z-index: 9;
  border-radius: 25px;
  border: 1px solid #d9d9d9;
  color: var(--color_main);
}

.section_news_video #news_home .list_item_video .row_item .view_more:after, .section_news_video #video_home .list_item_video .row_item .view_more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

@media (max-width: 823px) {
  .section_news_video #news_home {
    margin-top: 2rem;
  }
}

.section_about {
  text-align: center;
  padding: 1rem 0;
}

@media (min-width: 992px) {
  .section_about {
    padding: 3rem 0;
  }
}

.section_about h3 {
  font: 100 1.06667rem/150% var(--pro_font);
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.section_about h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 4rem;
  background: var(--color_main);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section_about h3:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 12rem;
  background: var(--color_main);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 992px) {
  .section_about h3 {
    font-size: 1.66667rem;
    color: #000000;
  }
}

@media (min-width: 992px) {
  .section_about .content {
    max-width: 82%;
    margin: auto;
  }
}

.section_about .more {
  padding: .4rem 3rem;
  margin-top: 1.5rem;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#02a14e), color-stop(#03a551), color-stop(#07af57), color-stop(#0bbc5f), color-stop(#0fc566), color-stop(#11cc6a), to(#12cf6c));
  background-image: linear-gradient(to right, #02a14e, #03a551, #07af57, #0bbc5f, #0fc566, #11cc6a, #12cf6c);
}

.section_about .more i {
  margin-left: 5px;
}

.section_project, .section_news {
  margin-bottom: 1rem;
}

.section_project .row, .section_news .row {
  margin: 0 -13.5px;
}

.section_project .col-pd, .section_news .col-pd {
  padding: 0 13.5px;
}

.section_project .box_header, .section_news .box_header {
  text-align: center;
  position: relative;
}

.section_project .box_header .title, .section_news .box_header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color_main);
  margin-bottom: 1rem;
}

.section_project .box_header .title h2, .section_news .box_header .title h2 {
  font: 500 1.33333rem/150% var(--h3_font);
  text-transform: capitalize;
}

@media (min-width: 992px) {
  .section_project .box_header .title h2, .section_news .box_header .title h2 {
    font-size: 1.66667rem;
  }
}

.section_project .box_header .title a:hover, .section_news .box_header .title a:hover {
  color: var(--color_hv);
}

.section_project .list_item_news .row_item .col_item_first .item:hover .info h3 a, .section_news .list_item_news .row_item .col_item_first .item:hover .info h3 a {
  color: var(--color_hv);
}

.section_project .list_item_news .row_item .col_item .item, .section_news .list_item_news .row_item .col_item .item {
  border: 1px solid #eaeaea;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 16px;
}

.section_project .list_item_news .row_item .col_item .item:last-child, .section_news .list_item_news .row_item .col_item .item:last-child {
  margin-bottom: 0;
}

.section_project .list_item_news .row_item .col_item .item:hover, .section_news .list_item_news .row_item .col_item .item:hover {
  border: 1px solid var(--color_main);
}

.section_project .list_item_news .row_item .col_item .item:hover a, .section_news .list_item_news .row_item .col_item .item:hover a {
  color: #08ff6bf7;
}

.section_project .list_item_news .row_item .col_item .item:hover a img, .section_news .list_item_news .row_item .col_item .item:hover a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_project .list_item_news .row_item .col_item .item:hover a:after, .section_news .list_item_news .row_item .col_item .item:hover a:after {
  -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
          transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
}

.section_project .list_item_news .row_item .col_item .item:hover .info .title a, .section_news .list_item_news .row_item .col_item .item:hover .info .title a {
  color: var(--color_hv);
}

@media (max-width: 823px) {
  .section_project .list_item_news .row_item .col_item .item, .section_news .list_item_news .row_item .col_item .item {
    padding: 10px;
  }
}

.section_project .list_item_news .row_item .col_item .item > a, .section_news .list_item_news .row_item .col_item .item > a {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

@media (max-width: 823px) {
  .section_project .list_item_news .row_item .col_item .item > a, .section_news .list_item_news .row_item .col_item .item > a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    max-width: 48%;
  }
}

.section_project .list_item_news .row_item .col_item .item > a:after, .section_news .list_item_news .row_item .col_item .item > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  transition: transform 1s,-webkit-transform 1s;
  -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
}

.section_project .list_item_news .row_item .col_item .item img, .section_news .list_item_news .row_item .col_item .item img {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_project .list_item_news .row_item .col_item .item .info, .section_news .list_item_news .row_item .col_item .item .info {
  margin-left: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 823px) {
  .section_project .list_item_news .row_item .col_item .item .info, .section_news .list_item_news .row_item .col_item .item .info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    max-width: 48%;
    margin-left: 2%;
  }
}

@media (max-width: 568px) {
  .section_project .list_item_news .row_item .col_item .item .info, .section_news .list_item_news .row_item .col_item .item .info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.section_project .list_item_news .row_item .col_item .item .info .title, .section_news .list_item_news .row_item .col_item .item .info .title {
  font: 600 1.2rem/150% var(--h3_font);
  width: 100%;
}

@media (max-width: 823px) {
  .section_project .list_item_news .row_item .col_item .item .info .title, .section_news .list_item_news .row_item .col_item .item .info .title {
    font-size: 1.06667rem;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media (max-width: 568px) {
  .section_project .list_item_news .row_item .col_item .item .info .title, .section_news .list_item_news .row_item .col_item .item .info .title {
    margin-top: .5rem;
  }
}

.section_project .list_item_news .row_item .col_item .item .info .date, .section_news .list_item_news .row_item .col_item .item .info .date {
  font: 100 1.33333rem/150% var(--h2_font);
  background: #ffffff;
  color: #060606;
  text-align: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  margin-right: 1rem;
  padding: 1rem 1rem;
  max-height: 50%;
}

.section_project .list_item_news .row_item .col_item .item .info .date span, .section_news .list_item_news .row_item .col_item .item .info .date span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.section_project .list_item_news .row_item .col_item .item .info .date span:first-child, .section_news .list_item_news .row_item .col_item .item .info .date span:first-child {
  border-bottom: 1px solid #e2e2e2;
}

.section_project .list_item_news .row_item .col_item .item .info .more, .section_news .list_item_news .row_item .col_item .item .info .more {
  font: 100 1rem/150% "Montserrat-Regular", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  padding: 0;
  margin: 0;
  color: #000000;
  border-bottom: 1px solid;
}

.section_news_group1 {
  margin: 3rem 0;
}

.section_news_group1 .row {
  margin: 0 -13.5px;
}

.section_news_group1 .col-pd {
  padding: 0 13.5px;
}

.section_news_group1 .list_item {
  margin: 0 -15px;
}

.section_news_group1 .list_item .row_item .item {
  position: relative;
  overflow: hidden;
}

.section_news_group1 .list_item .row_item .item:hover .info .title {
  color: var(--color_hv);
}

.section_news_group1 .list_item .row_item .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_news_group1 .list_item .row_item .item img {
  -webkit-transition: .5s all;
  transition: .5s all;
}

.section_news_group1 .list_item .row_item .item .info {
  position: absolute;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 0;
}

.section_news_group1 .list_item .row_item .item .info .title {
  font: 600 1.46667rem/150% var(--h3_font);
  color: var(--color_main);
}

.section_news_group1 .list_item .row_item .item .info .short {
  color: var(--color_text);
}
/*# sourceMappingURL=home.css.map */