#news .hero {
  max-height: 530px;
  justify-content: flex-end;
  padding-bottom: 80px;
}
#news .hero h2 {
  color: #293F80;
}
#news .hero h1 {
  color: #595959;
}
#news .s2 {
  padding: 3.25rem 0 7.5rem 0;
  background: var(--hero-gradient, linear-gradient(302deg, #11213F 5.23%, #295280 83.28%));
}
#news .s2 .intro p {
  font-size: 0.9rem;
  padding-bottom: 1.5rem;
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 5rem;
}
#news .s2 .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
#news .s2 .article {
  display: block;
  padding: 1.5rem 0;
  min-height: 420px;
  max-height: 420px;
  position: relative;
}
#news .s2 .article > div {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#news .s2 .article > div p, #news .s2 .article > div span {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}
#news .s2 .article h3 {
  font-size: 1.55rem;
  line-height: 1.2em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 17px;
}
#news .s2 .article .desc {
  color: #fff;
  line-height: 1.3em;
  margin-bottom: 3.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
#news .s2 .article .btn {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 100%;
  transform: translateX(-50%);
  border-top: solid 2px #4292E8;
  padding-top: 1rem;
  transition: color 0.3s ease;
}
#news .s2 .article .btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: url(/i/arrow-right-wh.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transition: background-image 0.3s ease;
}
#news .s2 .article .btn.watch::after {
  width: 27px;
  height: 27px;
  background: url(/i/watch-btn.svg) no-repeat center/contain;
  top: 45%;
}
#news .s2 .article:first-of-type {
  position: relative;
}
#news .s2 .article:first-of-type::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 470px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  right: -3rem;
}
#news .s2 .article:hover .btn {
  color: #4292E8;
}
#news .s2 .article:hover .btn::after {
  background-image: url(/i/arrow-hover.svg);
}
#news .s2 .article:hover .btn.watch::after {
  background-image: url(/i/play-hover.svg);
}
#news .s3 {
  padding: 5rem 0;
  background: #F3F3F3;
}
#news .s3 .intro {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px rgba(0, 61, 77, 0.2);
  margin-bottom: 5rem;
}
#news .s3 .dd {
  position: absolute;
  right: 0;
  bottom: 0;
}
#news .s3 .dd .dd-toggle {
  background: none;
  border: 0;
  padding: 0 100px 7px 0;
  cursor: pointer;
  min-width: 240px;
  text-align: left;
}
#news .s3 .dd .dd-text {
  font-size: 0.9rem;
  line-height: 1.3em;
  color: #595959;
}
#news .s3 .dd .dd-caret {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
}
#news .s3 .dd .dd-caret img {
  width: 100%;
  height: 100%;
}
#news .s3 .dd .dd-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  color: #595959;
  display: none;
  z-index: 30;
}
#news .s3 .dd .dd-menu li {
  list-style: none;
  font-size: 16px;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}
#news .s3 .dd .dd-menu li:hover {
  color: #4292E8;
}
#news .s3 .dd .dd-menu.open {
  display: block;
}
#news .s3 .dd .dd-toggle[aria-expanded=true] .dd-caret {
  top: 50%;
}
#news .s3 .dd .dd-toggle[aria-expanded=true] .dd-caret img {
  transform: translateY(-50%) scaleY(-1);
}
#news .s3 .slide_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
#news .s3 .article {
  background-color: #fff;
  min-height: 450px;
  max-height: 450px;
  position: relative;
  padding: 2rem;
}
#news .s3 .article > div {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#news .s3 .article > div p, #news .s3 .article > div span {
  font-size: 15px;
  color: #293F80;
  font-weight: 400;
}
#news .s3 .article h3 {
  font-size: 1.55rem;
  line-height: 1.2em;
  font-weight: 400;
  color: #1C2855;
  margin-bottom: 17px;
}
#news .s3 .article .desc {
  color: #595959;
  line-height: 1.3em;
  margin-bottom: 3.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
#news .s3 .article .btn {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  color: #595959;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: calc(100% - 4rem);
  transform: translateX(-50%);
  border-top: solid 2px #293F80;
  padding-top: 1rem;
  transition: color 0.3s ease;
}
#news .s3 .article .btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: url(/i/arrow-right-cl.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
}
#news .s3 .article .btn.watch::after {
  width: 27px;
  height: 27px;
  background: url(/i/watch-btn-cl.svg) no-repeat center/contain;
  top: 45%;
}
#news .s3 .article:hover .btn {
  color: #4292E8;
}
#news .s3 .article:hover .btn::after {
  background-image: url(/i/arrow-right-cl-hover.svg);
}
#news .s3 .article:hover .btn.watch::after {
  background-image: url(/i/play-hover.svg);
}
#news .s3 .fx-list {
  margin-top: 5rem;
  text-align: center;
}
#news .s3 .fx-list > div {
  display: inline-block;
  border-top: solid 2px #293F80;
  padding-top: 2rem;
  min-width: 200px;
}
#news .s3 .fx-list .fx-nav {
  color: #595959;
  margin-right: 20px;
}
#news .s3 .fx-list .fx-nav:last-of-type {
  margin-right: 0;
}
#news .s3 .fx-list .fx-nav.fx-on {
  color: #293F80;
}

@media screen and (max-width: 1200px) {
  #news .s3 .slide_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  #news .s2 .wrap {
    gap: 3rem;
  }
  #news .s2 .article:first-of-type::after {
    right: -1.5rem;
  }
}
@media screen and (max-width: 980px) {
  #news .s2 .article h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  #news .hero h2 br {
    display: none;
  }
  #news .s2 {
    padding-bottom: 5rem;
  }
  #news .s2 .intro {
    margin-bottom: 3rem;
  }
  #news .s2 .intro p {
    margin-bottom: 3rem;
  }
  #news .s2 .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  #news .s2 .article {
    max-height: none;
    min-height: auto;
    padding: 0;
    padding-bottom: 3rem;
  }
  #news .s2 .article .btn {
    bottom: 0;
  }
  #news .s2 .article .btn.watch::after {
    top: 35%;
  }
  #news .s2 .article:first-of-type {
    margin-bottom: 6rem;
  }
  #news .s2 .article:first-of-type::after {
    width: 100%;
    height: 1px;
    right: auto;
    left: 0;
    top: auto;
    transform: none;
    bottom: -3rem;
  }
  #news .s3 .slide_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  #news .s3 .article {
    padding: 2rem 1rem 5rem 1rem;
    max-height: none;
    min-height: auto;
  }
  #news .s3 .article h3 {
    font-size: 1.3rem;
  }
  #news .s3 .article .btn {
    width: calc(100% - 2rem);
  }
  #news .s3 .article .btn.watch::after {
    top: 35%;
  }
  #news .s3 .intro {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 3rem;
  }
  #news .s3 .intro p {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: solid 1px rgba(0, 61, 77, 0.2);
  }
  #news .s3 .dd {
    position: relative;
    max-width: 200px;
  }
  #news .s3 .dd .dd-caret {
    width: 11px;
    height: 11px;
  }
  #news .s3 .dd .dd-toggle {
    min-width: 200px;
  }
}

/*# sourceMappingURL=news.css.map */
