@keyframes arrowfade {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  16% {
    opacity: 0;
    transform: translateX(10px) scale(0.9);
  }
  20% {
    opacity: 0;
    transform: translateX(-15px) scale(0.9);
  }
  36% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
.news-section-container {
  position: relative;
  padding: 70px 0;
}
@media (max-width: 992px) {
  .news-section-container {
    padding: 35px 0;
  }
}
.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
.news-section-title {
  color: #282828;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 1200px) {
  .news-section-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.news-section-categories {
  flex: wrap;
  width: 75%;
  justify-content: end;
}
.news-section-categories-mobile {
  position: relative;
  width: 35%;
  padding: 0 30px;
  --swiper-navigation-size: 20px;
}
.news-section-categories-mobile .swiper-button-next {
  right: 0;
}
.news-section-categories-mobile .swiper-button-prev {
  left: 0;
}
.news-section-categories-mobile .swiper-wrapper {
  align-items: center;
}
.news-section-tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #90989F;
  border-radius: 8px;
  padding: 8px 29px;
  min-width: 160px;
  margin-right: 16px;
  color: #171C8F;
  font-size: 20px;
  line-height: 30px;
  transition: 0.3s ease-out;
  cursor: pointer;
}
.news-section-tab-button:last-child {
  margin-right: 0;
}
.news-section-tab-button.active {
  background-color: #171C8F;
  color: #ffffff;
}
.news-section-tab-button:hover {
  background-color: #171C8F;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .news-section-tab-button {
    padding: 5px 22px;
    min-width: 120px;
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .news-section-tab-button {
    padding: 5px 20px;
    font-size: 17px;
    min-width: auto;
  }
}
.news-section-swiper {
  padding-bottom: 50px;
  padding-top: 10px;
}
.news-section-swiper .swiper-wrapper {
  height: auto;
  align-items: stretch;
  margin: auto;
}
.news-section-swiper .swiper-slide {
  height: auto;
}
.news-section-swiper .swiper-pagination {
  bottom: 5px;
}
.news-section-swiper .swiper-pagination-bullet {
  border-radius: 0;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px) !important;
}
.news-section-swiper .swiper-pagination-bullet-active {
  background-color: #171C8F;
}
.news-slide {
  height: 100%;
  width: 100%;
  background-color: #F6F6F6;
  border-left: 6px solid #171C8F;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
@media (max-width: 767px) {
  .news-slide {
    padding: 12px;
    border-left: 5px solid #171C8F;
  }
}
.news-slide-link-wrapper {
  display: flex;
  justify-content: space-between;
}
.news-slide:hover {
  transform: translateY(-10px);
  box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.news-slide:hover .news-link-button img.arrow {
  margin-left: 10px;
  animation: arrowfade 2.5s infinite ease-in-out;
  animation-delay: 0.4s;
}
.news-slide:hover .news-link-button img.hover-arrow {
  display: inline-block;
  opacity: 1;
  animation: arrowfade 2.5s infinite ease-in-out;
  animation-delay: 0.6s;
}
.news-category {
  color: #171C8F;
  font-size: 17px;
  line-height: 28px;
  padding-bottom: 6px;
}
.news-title {
  color: #282828;
  font-size: 20px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .news-title {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.news-date {
  color: #53595F;
  font-size: 17px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .news-date {
    font-size: 15px;
  }
}
.news-link-button {
  background-color: #3BD4AE;
  border-radius: 8px;
  height: 32px;
  width: 32px;
  background-size: 32px 32px;
}
.news-link-button p {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-link-button p img {
  width: 18px;
  height: 18px;
}
.news-link-button p img.arrow {
  transition: margin-left 0.2s ease-out;
}
.news-link-button p img.hover-arrow {
  position: absolute;
  opacity: 0;
  left: 3px;
  transition: opacity 0.2s ease-out;
}
.news-withbg .news-category {
  color: #fff;
}
.news-withbg .news-title {
  color: #fff;
}
.news-withbg .news-date {
  color: #fff;
}
.news-reset-btn {
  min-width: 100px;
  padding: 10px;
}
@media (max-width: 1200px) {
  .news-reset-btn {
    width: 100%;
  }
}

.news-section-categories-swiper .swiper-slide {
  width: auto;
}
.news-section-categories-swiper .swiper-slide .news-filter-button {
  padding: 6px 12px;
}

.news-filter-button {
  display: block;
  padding: 8px;
  border: 1px solid #90989F;
  border-radius: 8px;
  background-color: #FFFFFF;
  text-align: center;
  transition: color 0.3s ease, background-color 0.3s ease;
  outline: none !important;
}
.news-filter-button:hover, .news-filter-button.active {
  background-color: #171C8F;
  color: #fff;
  outline: none !important;
}

@media (max-width: 992px) {
  .news-section-header {
    display: block;
    padding-bottom: 12px;
  }
  .news-section-categories-mobile {
    width: 100%;
    display: block;
    padding: 0;
    margin-left: -20px;
  }
  .news-section-categories-mobile .swiper {
    width: calc(100% + 40px);
  }
  .news-section-categories-mobile .swiper-slide {
    height: auto;
  }
}
.news-section-inner-content {
  padding-bottom: 70px;
}

@media (max-width: 992px) {
  .news-section-inner-content {
    padding-bottom: 35px;
  }
}
.featureNews a {
  color: #222;
}
.featureNews__content {
  padding-right: 50px;
}
.featureNews__img img {
  width: 100%;
}
.featureNews .nav-pills .nav-link.active, .featureNews .nav-pills .show > .nav-link {
  color: #222;
  background-color: transparent;
  border-radius: 0;
}
.featureNews .nav-pills .nav-link {
  border-radius: 0;
  border-top: 1px solid #dcdcdc;
}
.featureNews .nav-pills .nav-link:first-child {
  border-top: 0;
}
.featureNews__link {
  position: relative;
  padding: 24px;
  color: #222;
  background-color: transparent;
  transition: box-shadow 0.3s ease, color 0.3s ease;
}
.featureNews__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 100%;
  background-color: #171C8F;
  transition: width 0.3s ease;
}
.featureNews__link.active, .featureNews__link:hover {
  color: #222;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.1);
}
.featureNews__link.active::before {
  width: 8px;
}
.featureNews__dateWrapper, .featureNews__title {
  display: inline-block;
  vertical-align: middle;
}
.featureNews__dateWrapper {
  width: 100px;
  text-align: center;
  margin-top: -2px;
}
.featureNews__date {
  font-size: 23px;
  font-weight: bold;
}
.featureNews__month {
  font-size: 14px;
  line-height: 20px;
  padding-top: 6px;
}
.featureNews__title {
  width: calc(100% - 100px);
  margin-left: -7px;
  padding-left: 24px;
  font-size: 20px;
  line-height: 30px;
}
.featureNews__titleWrapper {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .featureNews__titleWrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.featureNews .newsCard__container:last-child .newsCard {
  border-bottom: none;
}

@media (max-width: 1399px) {
  .featureNews__content {
    padding-right: 25px;
  }
  .featureNews__title {
    padding-left: 20px;
    font-size: 17px;
    line-height: 26px;
  }
  .featureNews__date {
    font-size: 20px;
  }
  .featureNews__month {
    padding-top: 5px;
  }
  .featureNews__link {
    padding: 15px 16px;
  }
}
/* News Card */
.newsCard {
  position: relative;
  height: 100%;
  width: 100%;
  display: table;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #DCDCDC;
}
.newsCard__container {
  margin-bottom: 20px;
}
.newsCard__img-holder, .newsCard__date-holder, .newsCard__content {
  display: table-cell;
  vertical-align: top;
}
.newsCard__img-holder {
  width: 220px;
}
.newsCard__date-holder {
  width: 100px;
}
.newsCard__date {
  width: 100%;
  height: 100px;
  background-color: #5362B1;
  text-align: center;
  padding: 25px 6px 15px 6px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
.newsCard__month {
  font-weight: normal;
  font-size: 14px;
}
.newsCard__img {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
}
.newsCard__titleWrapper {
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 3) {
  .newsCard__titleWrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.newsCard__title {
  display: block;
}
.newsCard a.newsCard__title {
  display: block;
}
.newsCard a.newsCard__title:hover {
  color: #171C8F;
}
.newsCard__content {
  position: relative;
  padding-left: 23px;
}
.newsCard__content__bottom {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 24px);
  color: #707070;
}
.newsCard--date {
  display: table;
  width: 100%;
}
.newsCard--date .newsCard__date-holder, .newsCard--date .newsCard__content {
  display: table-cell;
  vertical-align: top;
}
.newsCard--date .newsCard__content {
  width: calc(100% - 100px);
  padding-left: 24px;
  padding-bottom: 40px;
}
.newsCard--date .newsCard__date-holder {
  width: 100px;
}
.newsCard--feature {
  display: block;
  padding: 10px 0 0;
}
.newsCard--feature .newsCard {
  padding: 24px 0;
}
.newsCard--feature .newsCard__img-holder, .newsCard--feature .newsCard__content {
  display: block;
}
.newsCard--feature .newsCard__img-holder {
  width: 100%;
  margin-bottom: 10px;
}
.newsCard--feature .newsCard__img {
  padding-top: 70%;
  background-size: cover;
}
.newsCard--feature .newsCard__content {
  position: unset;
  padding-left: 0;
  padding-bottom: 45px;
}
.newsCard--feature .newsCard__content__bottom {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
}

@media (max-width: 767px) {
  .newsCard__titleWrapper {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .newsCard {
    margin-bottom: 0;
  }
  .newsCard__img-holder, .newsCard__content {
    display: block;
    width: 100%;
  }
  .newsCard__img-holder {
    margin-bottom: 10px;
  }
  .newsCard__container {
    margin-bottom: 0;
  }
  .newsCard__content {
    position: unset;
    padding-left: 0;
    padding-bottom: 45px;
  }
  .newsCard__content__bottom {
    width: 100%;
  }
  .newsCard--date {
    display: table;
  }
  .newsCard--date .newsCard__content {
    padding-bottom: 25px;
    padding-left: 15px;
  }
}
.newsDetail {
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid #9B9B9B;
}
.newsDetail__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 15px;
}
.newsDetail__img {
  margin-bottom: 15px;
  max-width: 600px;
}
.newsDetail__date {
  color: #707070;
  margin-bottom: 15px;
}
.newsDetail .textArea a {
  color: #171C8F;
  text-decoration: underline;
}
.newsDetail__nav {
  padding-bottom: 15px;
}
.newsDetail__nav a {
  color: #171C8F;
}
.newsDetail__nav__prev, .newsDetail__nav__next {
  position: relative;
}
.newsDetail__nav__prev:after, .newsDetail__nav__next:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: url("/media/jeijvqjw/icon_arrow_blue.svg") no-repeat center;
  background-size: contain;
}
.newsDetail__nav__prev {
  padding-left: 16px;
}
.newsDetail__nav__prev:after {
  left: 0;
  transform: rotate(180deg);
}
.newsDetail__nav__next {
  padding-right: 16px;
}
.newsDetail__nav__next:after {
  right: 0;
}/*# sourceMappingURL=NewsSection.min.css.map */