<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.page_news .news_inner {
  padding-top: 100px;
}
.panel_contents {
  visibility: hidden;
  height: 0;
}
.panel_contents.current {
  animation: panelFadeIn 0.5s linear forwards;
  height: auto;
}
@keyframes panelFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.news_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.news_inner_flex {
  display: flex;
}
.news_sidebar {
  width: 22%;
}
.news_sidebar ul {
  margin-left: 15px;
}
.news_sidebar li {
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}
.news_tab li span {
  display: inline-block;
  position: relative;
}
.news_tab li span::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #C92B2B;
  position: absolute;
  left: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.news_tab li:hover span::after, .news_tab li.current span::after {
  transform: scaleX(1);
}
.news_tab li::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  left: -15px;
  top: calc(50% - 2px);
}
.news_tab li:hover::before, .news_tab li.current::before {
  background: #C92B2B;
}
.news_sidebar li a {
  color: #1D1D1D;
  text-decoration: none;
}
.news_cont {
  flex: 1;
}
.news_cont .news_col:first-child {
  border-top: 1px solid #BFBFBF;
}
.news_col {
  border-bottom: 1px solid #BFBFBF;
  padding: 35px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.news_col::after {
  content: '';
  display: block;
  width: 110px;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: -1px;
  left: -100px;
  opacity: 0;
  transition: opacity 0.3s linear, left 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.news_col:hover::after {
  opacity: 1;
  left: calc(100% + 120px);
}
.news_col a {
  color: #1D1D1D;
  text-decoration: none;
}
.news_hdr {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.news_hdr_category {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  width: 90px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1D1D1D;
  margin-right: 25px;
}
.news_hdr_date {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #BFBFBF;
}
.news_caption {
  position: relative;
}
.news_caption::before {
  content: '';
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: rgba(29, 29, 29, 0);
  transform: translateX(-20px);
  right: 0;
  top: calc(50% - 16px);
  transition: background 0.2s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.news_caption a {
  display: block;
  position: relative;
}
.news_caption a::before, .news_caption a::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
}
.news_caption a::before {
  height: 1px;
  width: 8px;
  right: 12.5px;
  top: 50%;
  background: #1D1D1D;
}
.news_caption a::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid #1D1D1D;
  border-right: 1px solid #1D1D1D;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: calc(50% - 3px);
}
.news_inner .readmore_right {
  margin-top: 60px;
}
.news_sidebar ul.archive_tab {
  margin-top: 70px;
  margin-left: 0;
  width: 120px;
}
ul.archive_tab li {
  text-align: center;
}
ul.archive_tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 42px;
  border: 1px solid #1D1D1D;
  transition: background 0.3s;
}
@media (hover: hover) {
  .news_col:hover .news_caption::before {
    background: rgba(29, 29, 29, 1);
    transform: translateX(0);
  }
  .news_col:hover .news_caption a::before {
    background: #fff;
  }
  .news_col:hover .news_caption a::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  ul.archive_tab li a:hover {
    background: #1D1D1D;
    color: #fff;
  }
}
@media(max-width: 768px) {
  .page_news .news_inner {
    padding-top: 60px;
  }
  .news_sidebar {
    width: 100%;
    margin: 0 0 25px;
  }
  .news_inner_flex {
    display: block;
  }
  ul.news_tab {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .news_sidebar .news_tab li {
    margin: 0 20px;
    font-size: 16px;
    position: relative;
  }
  .news_sidebar .news_tab li::after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    right: -20px;
    width: 1px;
    height: 13px;
    background: #1D1D1D;
    transform: rotate(20deg);
  }
  .news_sidebar .news_tab li:last-child::after {
    display: none;
  }
  .news_sidebar li:hover::before, .news_sidebar li.current::before {
    display: none;
  }
  .news_sidebar ul.archive_tab {
    display: flex;
    justify-content: center;
    width: 100% !important;
    margin-top: 25px;
  }
  .news_sidebar .archive_tab li {
    margin: 0 5px;
    font-size: 16px;
  }
  ul.archive_tab li a {
    width: 120px;
    height: 34px;
  }
  .news_col {
    padding: 20px 40px 20px 0;
  }
  .news_hdr {
    margin-bottom: 10px;
  }
  .news_hdr_category {
    font-size: 12px;
    width: 80px;
    height: 22px;
    margin-right: 15px;
  }
  .news_caption a::after {
    right: -29px;
  }
  .news_caption a::before {
    right: -27.5px;
  }
  .news_caption::before {
    right: -40px;
  }
  .news_inner .readmore_right {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
}
@media(max-width: 767px) {
  .news_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news_article_hdr {
  margin-bottom: 70px;
}
.news_article_hdr h3 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}
.news_article p {
  line-height: 1.8;
  margin-bottom: 2em;
}
.news_article_nav {
  margin-top: 140px;
  padding: 90px 0 0;
  box-sizing: border-box;
  border-top: 1px solid #BFBFBF;
  position: relative;
}
.news_article_nav::after {
  content: '';
  display: block;
  background: #C92B2B;
  height: 1px;
  width: 360px;
  position: absolute;
  left: 0;
  top: -1px;
}
.news_article_nav ul {
  display: flex;
  justify-content: center;
}
.news_article_nav li {
  list-style: none;
  margin: 0 45px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}
.news_article_nav li.prev::after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  right: -45px;
  width: 1px;
  height: 13px;
  background: #1D1D1D;
  transform: rotate(20deg);
}
.news_article_nav li span {
  display: inline-block;
}
.news_article_nav li span::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #1D1D1D;
  position: absolute;
  left: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.news_article_nav li.next span::after {
  transform-origin: left center;
}
.news_article_nav li a {
  color: #1D1D1D;
  text-decoration: none;
  position: relative;
}
.news_article_nav li a::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1D1D1D;
  border-left: 1px solid #1D1D1D;
  transform: rotate(-45deg);
  position: absolute;
  left: -40px;
  top: calc(50% - 3px);
}
.news_article_nav li a::before {
  content: '';
  display: block;
  height: 1px;
  width: 8px;
  position: absolute;
  left: -41.5px;
  top: 50%;
  background: #1D1D1D;
}
.news_article_nav li.next a::after {
  left: inherit;
  right: -45px;
  border-top: 1px solid #1D1D1D;
  border-right: 1px solid #1D1D1D;
  border-left: none;
  transform: rotate(45deg);
}
.news_article_nav li.next a::before {
  left: inherit;
  right: -44.5px;
}
@media(max-width: 768px) {
  .news_article_date {
    margin-top: 60px;
  }
  .news_article_nav {
    margin-top: 60px;
    padding: 40px 60px 0;
  }
  .news_article_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .news_article_nav ul li {
    width: 50%;
    box-sizing: border-box;
    margin: 0;
  }
  .news_article_nav ul li.prev {
    display: flex;
    justify-content: flex-start;
  }
  .news_article_nav ul li.next {
    display: flex;
    justify-content: flex-end;
  }
  .news_article_nav li.prev::after {
    right: 0;
  }
	
	.news_article_nav::after {
    width: 20%;
}
}
@media(max-width: 767px) {
  .news_article_hdr h3 {
    font-size: 18px;
  }
}
@media (hover: hover) {
  .news_article_nav li:hover span::after {
    transform: scaleX(1);
  }
}</pre></body></html>